').text(mfp.st.tClose).html();
+ // Only allow default markup (do not interpret user-supplied HTML).
+ if (
+ mfp.st.closeMarkup &&
+ mfp.st.closeMarkup === $.magnificPopup.defaults.closeMarkup
+ ) {
+ mfp.currTemplate.closeBtn = $(
+ mfp.st.closeMarkup.replace('%title%', safeTitle)
+ );
+ } else {
+ // If custom markup is supplied, document risk and escape output
+ // WARNING: Custom closeMarkup must be trusted and properly sanitized
+ mfp.currTemplate.closeBtn = $(
+ $('
').text(mfp.st.closeMarkup.replace('%title%', safeTitle)).html()
+ );
+ }
_currPopupType = type;
}
return mfp.currTemplate.closeBtn;
@@ -353,7 +371,7 @@
$('html').css(windowStyles);
// add everything to DOM
- mfp.bgOverlay.add(mfp.wrap).prependTo( mfp.st.prependTo || $(document.body) );
+ mfp.bgOverlay.add(mfp.wrap).prependTo( mfp.st.prependTo ? $(document).find(mfp.st.prependTo) : $(document.body) );
// Save last focused element
mfp._lastFocusedEl = document.activeElement;
@@ -505,8 +523,9 @@
// allows to modify markup
_mfpTrigger('FirstMarkupParse', markup);
- if(markup) {
- mfp.currTemplate[type] = $(markup);
+ if (markup) {
+ const safeMarkup = DOMPurify.sanitize(markup);
+ mfp.currTemplate[type] = $(safeMarkup);
} else {
// if there is no markup found we just define that template is parsed
mfp.currTemplate[type] = true;
@@ -906,9 +925,18 @@
+ /**
+ * Initialize Magnific Popup on a jQuery element.
+ *
+ * WARNING: Some options, such as `closeMarkup`, are evaluated and inserted into the DOM as HTML.
+ * Do NOT set these options from untrusted sources. Never allow user-provided data to influence
+ * these options, or you risk cross-site scripting (XSS) vulnerabilities.
+ *
+ * @param {object|string} options Configuration options or API method name.
+ */
$.fn.magnificPopup = function(options) {
- _checkInstance();
+ _checkInstance();
var jqEl = $(this);
// We call some API method of first param is a string
@@ -936,6 +964,19 @@
} else {
// clone options obj
+ // SECURITY WARNING: Ensure closeMarkup is not set from untrusted sources!
+ if (
+ typeof options.closeMarkup === 'string' &&
+ /
+
+
\ No newline at end of file
diff --git a/assets/uploads/cloud-gov-logo.webp b/assets/uploads/cloud-gov-logo.webp
new file mode 100644
index 000000000..9051b7a6a
Binary files /dev/null and b/assets/uploads/cloud-gov-logo.webp differ
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 000000000..1142c7f14
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,15 @@
+version: '3'
+services:
+ node:
+ image: node:12
+ working_dir: /app
+ volumes:
+ - .:/app:delegated
+ ruby:
+ build: .
+ working_dir: /app
+ ports:
+ - "4000:4000"
+ volumes:
+ - .:/app:delegated
+ command: bundle exec jekyll serve --host 0.0.0.0
\ No newline at end of file
diff --git a/index.html b/index.html
index 926c92fdb..809e1a64f 100755
--- a/index.html
+++ b/index.html
@@ -1,7 +1,7 @@
---
permalink: /
layout: wide
-title:
+title: Enterprise Shared Services for Federal Agencies | Homepage
---
{% comment %}
@@ -22,4 +22,4 @@
{% include homepage_icons.html %}
{% include centralized-mission.html %}
{% include news-and-update.html %}
-{% include c-suite.html %}
+{% include pm/evidence-based-pm.html %}
diff --git a/json_generation/HCM_2025/Employee Performance Management Business Capabilities List.xlsx b/json_generation/HCM_2025/Employee Performance Management Business Capabilities List.xlsx
new file mode 100644
index 000000000..e00e6044e
Binary files /dev/null and b/json_generation/HCM_2025/Employee Performance Management Business Capabilities List.xlsx differ
diff --git a/json_generation/HCM_2025/Human Capital Analytics & Employee Records Service Measures.xlsx b/json_generation/HCM_2025/Human Capital Analytics & Employee Records Service Measures.xlsx
new file mode 100644
index 000000000..7eed8fa4b
Binary files /dev/null and b/json_generation/HCM_2025/Human Capital Analytics & Employee Records Service Measures.xlsx differ
diff --git a/json_generation/HCM_2025/Human Capital Evaluations Service Measures.xlsx b/json_generation/HCM_2025/Human Capital Evaluations Service Measures.xlsx
new file mode 100644
index 000000000..c7e8f11ae
Binary files /dev/null and b/json_generation/HCM_2025/Human Capital Evaluations Service Measures.xlsx differ
diff --git a/json_generation/HCM_2025/Personnel Action Request (PAR) Processing Business Capabilities List.xlsx b/json_generation/HCM_2025/Personnel Action Request (PAR) Processing Business Capabilities List.xlsx
new file mode 100644
index 000000000..7c7e35aaa
Binary files /dev/null and b/json_generation/HCM_2025/Personnel Action Request (PAR) Processing Business Capabilities List.xlsx differ
diff --git a/json_generation/HCM_2025/Personnel Action Request (PAR) Processing Business Lifecycle.xlsx b/json_generation/HCM_2025/Personnel Action Request (PAR) Processing Business Lifecycle.xlsx
new file mode 100644
index 000000000..ba5211efd
Binary files /dev/null and b/json_generation/HCM_2025/Personnel Action Request (PAR) Processing Business Lifecycle.xlsx differ
diff --git a/json_generation/HCM_2025/Personnel Action Request (PAR) Processing Service Measures.xlsx b/json_generation/HCM_2025/Personnel Action Request (PAR) Processing Service Measures.xlsx
new file mode 100644
index 000000000..63900dc3e
Binary files /dev/null and b/json_generation/HCM_2025/Personnel Action Request (PAR) Processing Service Measures.xlsx differ
diff --git a/json_generation/HCM_2025/Personnel Action Request (PAR) Processing Standard Data Elements.xlsx b/json_generation/HCM_2025/Personnel Action Request (PAR) Processing Standard Data Elements.xlsx
new file mode 100644
index 000000000..5ff46127a
Binary files /dev/null and b/json_generation/HCM_2025/Personnel Action Request (PAR) Processing Standard Data Elements.xlsx differ
diff --git a/json_generation/__pycache__/extract.cpython-312.pyc b/json_generation/__pycache__/extract.cpython-312.pyc
new file mode 100644
index 000000000..d6b2b45c9
Binary files /dev/null and b/json_generation/__pycache__/extract.cpython-312.pyc differ
diff --git a/json_generation/__pycache__/finance_mgmt.cpython-312.pyc b/json_generation/__pycache__/finance_mgmt.cpython-312.pyc
new file mode 100644
index 000000000..56500cc1b
Binary files /dev/null and b/json_generation/__pycache__/finance_mgmt.cpython-312.pyc differ
diff --git a/json_generation/cap.json b/json_generation/cap.json
new file mode 100644
index 000000000..12535360d
--- /dev/null
+++ b/json_generation/cap.json
@@ -0,0 +1,1506 @@
+[
+ {
+ "Capability ID": "HCM.A4-1.010.010",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.010 Employee Performance Management System Development",
+ "Input/Output/Process": "I",
+ "Business Capability Statement": "Define a timeline for establishing, approving, and signing performance plans.",
+ "Authoritative Reference": "5 CFR \u00a7 430.204"
+ },
+ {
+ "Capability ID": "HCM.A4-1.010.020",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.010 Employee Performance Management System Development",
+ "Input/Output/Process": "I",
+ "Business Capability Statement": "Establish a minimum Appraisal Period.",
+ "Authoritative Reference": "5 CFR \u00a7 430.204"
+ },
+ {
+ "Capability ID": "HCM.A4-1.010.030",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.010 Employee Performance Management System Development",
+ "Input/Output/Process": "I",
+ "Business Capability Statement": "Support the development of employee performance plans in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-1.010.040",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.010 Employee Performance Management System Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to create standardized or employee specific performance elements, standards and/or expectations.",
+ "Authoritative Reference": "5 CFR \u00a7 430.205"
+ },
+ {
+ "Capability ID": "HCM.A4-1.010.050",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.010 Employee Performance Management System Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to establish a minimum and maximum number of performance elements.",
+ "Authoritative Reference": "5 CFR \u00a7 430.204"
+ },
+ {
+ "Capability ID": "HCM.A4-1.010.060",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.010 Employee Performance Management System Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to include performance elements that are critical, noncritical, and/or additional elements in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 CFR \u00a7 430.204"
+ },
+ {
+ "Capability ID": "HCM.A4-1.010.070",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.010 Employee Performance Management System Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide ability to establish performance elements and standards to be incorporated into the summary rating calculation (weighted and/or unweighted).",
+ "Authoritative Reference": "5 CFR \u00a7 430.208"
+ },
+ {
+ "Capability ID": "HCM.A4-1.010.080",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.010 Employee Performance Management System Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to establish the methodology (consistent with applicable laws, rules, regulations, policies, and guidelines) that will be used to derive a rating of record.",
+ "Authoritative Reference": "5 CFR \u00a7 430.204"
+ },
+ {
+ "Capability ID": "HCM.A4-1.010.090",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.010 Employee Performance Management System Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Evaluate performance appraisal systems and programs in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 CFR \u00a7 430.209"
+ },
+ {
+ "Capability ID": "HCM.A4-1.010.100",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.010 Employee Performance Management System Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to support the application for certification of the senior professional (SL/ST) appraisal system(s) in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 4312"
+ },
+ {
+ "Capability ID": "HCM.A4-1.010.110",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.010 Employee Performance Management System Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish the mechanism to capture, document and communicate employee unacceptable (e.g., less than Fully Successful) performance in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 U.S. Code \u00a7\u202f4303"
+ },
+ {
+ "Capability ID": "HCM.A4-1.010.120",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.010 Employee Performance Management System Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to measure performance against identified elements, standards and/or expectations.",
+ "Authoritative Reference": "\n5 U.S. Code \u00a7\u202f4302"
+ },
+ {
+ "Capability ID": "HCM.A4-1.010.130",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.010 Employee Performance Management System Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to use performance ratings to determine performance award and pay eligibility.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-1.010.140",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.010 Employee Performance Management System Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Support the submission of performance appraisal systems and programs documentation to OPM.",
+ "Authoritative Reference": "5 CFR \u00a7 430.209"
+ },
+ {
+ "Capability ID": "HCM.A4-1.010.150",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.010 Employee Performance Management System Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Track and manage records in accordance with NARA\u2019s General Records Schedule or an agency-specific records schedule",
+ "Authoritative Reference": "36 CFR \u00a7 1220.30"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.010",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish a mechanism to create, modify, or view performance plans at any time throughout the performance cycle.",
+ "Authoritative Reference": "5 CFR \u00a7 430.209"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.020",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Support the development of employee performance plans in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.030",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to create standardized or employee specific performance elements, standards and/or expectations.",
+ "Authoritative Reference": "5 CFR \u00a7 430.205"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.040",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to define strategic organizational goal alignment with individual elements and standards.",
+ "Authoritative Reference": "5 CFR \u00a7 430.102"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.050",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to establish a minimum and maximum number of performance elements.",
+ "Authoritative Reference": "5 CFR \u00a7 430.204"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.060",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to include performance elements that are critical, noncritical, and/or additional elements in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 CFR \u00a7 430.204"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.070",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide ability to establish performance elements and standards to be incorporated into the summary rating calculation (weighted and/or unweighted).",
+ "Authoritative Reference": "5 CFR \u00a7 430.208"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.080",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to establish the methodology (consistent with applicable laws, rules, regulations, policies, and guidelines) that will be used to derive a rating of record.",
+ "Authoritative Reference": "5 CFR \u00a7 430.204"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.090",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to enable multiple approval processes (Emp/Supv, Emp/Supv/2nd Level Supv, and Supv only) for the performance plan.",
+ "Authoritative Reference": "5 CFR \u00a7 430.206"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.100",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to change the rating official.",
+ "Authoritative Reference": "No authoritative source identified"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.110",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Evaluate performance appraisal systems and programs in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 CFR \u00a7 430.209"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.120",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Ensure the Employee is provided with information about the Performance Plan review process.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.130",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to link position description to performance plan.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.140",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to access a library of established performance elements other than elements focused on specific results.",
+ "Authoritative Reference": "No authoritative source identified"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.150",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to align competencies with performance management.",
+ "Authoritative Reference": "5 CFR \u00a7 250.205"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.160",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to align individual development plans (IDP) with annual performance plans.",
+ "Authoritative Reference": "5 CFR \u00a7 250.204"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.170",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for rating official to assign and rate technical and non-technical competencies.",
+ "Authoritative Reference": "No authoritative source identified"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.180",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to support the application for certification of the senior professional (SL/ST) appraisal system(s) in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 4312"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.190",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for the rating/reviewing official and HR Practitioner to view cycle progress by organization, office, and employee in accordance with applicable laws, rules, policies, and guidelines.",
+ "Authoritative Reference": "5 CFR \u00a7 293.404 "
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.200",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to provide measurable, quantifiable and timely data elements to report progress on performance objectives.",
+ "Authoritative Reference": "5 CFR \u00a7 430.208"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.210",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish the mechanism to capture, document and communicate employee unacceptable (e.g., less than Fully Successful) performance in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 U.S. Code \u00a7\u202f4303"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.220",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for employee to request feedback any time during the performance appraisal period.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.230",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for managers and employees to provide, track and maintain feedback, and/or accomplishments during Progress Reviews.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.240",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to enable multiple approval processes (Emp/Supv, Emp/Supv/2nd Level Supv, and Supv only) for summary rating.",
+ "Authoritative Reference": "5 CFR \u00a7 430.206"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.250",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Ensure rating of record is based only on the evaluation of actual job performance against the established elements, standards and/or expectations, for the designated appraisal period.",
+ "Authoritative Reference": "5 CFR \u00a7 430.208"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.260",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to measure performance against identified elements, standards and/or expectations.",
+ "Authoritative Reference": "\n5 U.S. Code \u00a7\u202f4302"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.270",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to not rate an element.",
+ "Authoritative Reference": "5 CFR \u00a7 430.208"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.280",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to support the administration of Centralized Review Panel for Senior-Level (SL) and Scientific or Professional (ST) in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 CFR \u00a7 430.311"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.290",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish mechanism for Rating or Reviewing Official and/or designees to provide written narrative(s) to support individual element ratings and/or summary rating.",
+ "Authoritative Reference": "5 CFR \u00a7 430.204"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.300",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to capture employee and Rating and Reviewing Officials feedback on a performance appraisal.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.310",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for a rating official and/or designee to complete and submit a performance review, against the established elements, standards and/or expectations.",
+ "Authoritative Reference": "5 CFR \u00a7 430.204"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.320",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for the Rating Official to confirm that he/she conducted an appraisal discussion with the employee and issued a final rating of record.",
+ "Authoritative Reference": "5 CFR \u00a7 430.206"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.330",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish a formal and informal process for reconsideration of the rating of record.",
+ "Authoritative Reference": "5 CFR \u00a7 430.208"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.340",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish a mechanism to provide off-cycle progress reviews to support personnel decisions such as WGI approval/disapproval or adverse performance-based actions associated with unacceptable performance.",
+ "Authoritative Reference": "5 U.S. Code \u00a7\u202f4303"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.350",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to use performance ratings to determine performance award and pay eligibility.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.360",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Support the submission of performance appraisal systems and programs documentation to OPM.",
+ "Authoritative Reference": "5 CFR \u00a7 430.209"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.370",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide data support for senior professional (SL/ST) performance management appraisal system(s) certification in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 4312"
+ },
+ {
+ "Capability ID": "HCM.A4-1.020.380",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.020 Employee Performance Management Program Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Track and manage records in accordance with NARA\u2019s General Records Schedule or an agency-specific records schedule",
+ "Authoritative Reference": "36 CFR \u00a7 1220.30"
+ },
+ {
+ "Capability ID": "HCM.A4-1.030.010",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.030 Employee Performance Management Program Evaluation",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Evaluate performance appraisal systems and programs in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 CFR \u00a7 430.209"
+ },
+ {
+ "Capability ID": "HCM.A4-1.030.020",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.030 Employee Performance Management Program Evaluation",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to measure performance against identified elements, standards and/or expectations.",
+ "Authoritative Reference": "\n5 U.S. Code \u00a7\u202f4302"
+ },
+ {
+ "Capability ID": "HCM.A4-1.030.030",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.030 Employee Performance Management Program Evaluation",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to report on awards (monetary and non-monetary) and ratings to make data driven decisions and to evaluate the efficiency and effectiveness of performance and award programs.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-1.030.040",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.030 Employee Performance Management Program Evaluation",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish the mechanism to provide consistent and transparent government-wide reporting of EPM system performance data.",
+ "Authoritative Reference": "5 CFR \u00a7 293.402"
+ },
+ {
+ "Capability ID": "HCM.A4-1.030.050",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.030 Employee Performance Management Program Evaluation",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish the mechanism to report performance management activities to EHRI.",
+ "Authoritative Reference": "5 CFR \u00a7 293.402"
+ },
+ {
+ "Capability ID": "HCM.A4-1.030.060",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.030 Employee Performance Management Program Evaluation",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Track and manage records in accordance with NARA\u2019s General Records Schedule or an agency-specific records schedule",
+ "Authoritative Reference": "36 CFR \u00a7 1220.30"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.010",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish a mechanism to create, modify, or view performance plans at any time throughout the performance cycle.",
+ "Authoritative Reference": "5 CFR \u00a7 430.209"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.020",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Support the development of employee performance plans in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.030",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "O",
+ "Business Capability Statement": "Provide guidance and assistance to rating officials during the performance management process in accordance with applicable laws, regulations, and policies.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 4314"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.040",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to create standardized or employee specific performance elements, standards and/or expectations.",
+ "Authoritative Reference": "5 CFR \u00a7 430.205"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.050",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to define strategic organizational goal alignment with individual elements and standards.",
+ "Authoritative Reference": "5 CFR \u00a7 430.102"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.060",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to update employee\u2019s title, organization, series, grade, and goals on a Performance Plan.",
+ "Authoritative Reference": "No authoritative source identified"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.070",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for Rating Officials and employees to acknowledge issue and receipt of all performance documents when creating a new plan.",
+ "Authoritative Reference": "CFR \u00a7 430.204"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.080",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to enable multiple approval processes (Emp/Supv, Emp/Supv/2nd Level Supv, and Supv only) for the performance plan.",
+ "Authoritative Reference": "5 CFR \u00a7 430.206"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.090",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to change the rating official.",
+ "Authoritative Reference": "No authoritative source identified"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.100",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "O",
+ "Business Capability Statement": "Ensure the Employee is provided with information about the Performance Plan review process.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.110",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to link position description to performance plan.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.120",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to access a library of established performance elements other than elements focused on specific results.",
+ "Authoritative Reference": "No authoritative source identified"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.130",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to align competencies with performance management.",
+ "Authoritative Reference": "5 CFR \u00a7 250.205"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.140",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to align individual development plans (IDP) with annual performance plans.",
+ "Authoritative Reference": "5 CFR \u00a7 250.204"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.150",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for rating official to assign and rate technical and non-technical competencies.",
+ "Authoritative Reference": "No authoritative source identified"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.160",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for the rating/reviewing official and HR Practitioner to view cycle progress by organization, office, and employee in accordance with applicable laws, rules, policies, and guidelines.",
+ "Authoritative Reference": "5 CFR \u00a7 293.404"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.170",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to provide measurable, quantifiable and timely data elements to report progress on performance objectives.",
+ "Authoritative Reference": "5 CFR \u00a7 430.208"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.180",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Ensure that changes to the performance plan are documented and communicated to the employee.",
+ "Authoritative Reference": "5 CFR \u00a7 430.209"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.190",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish a mechanism for employee acknowledgement of changes or modifications to established performance plans.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.200",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for Rating Official to view Accomplishments submitted by the employee throughout the appraisal period.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.210",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish the mechanism to capture, document and communicate employee unacceptable (e.g., less than Fully Successful) performance in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 U.S. Code \u00a7\u202f4303"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.220",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for Rating Officials and employees to acknowledge issue and receipt of performance documents during progress reviews.",
+ "Authoritative Reference": "CFR \u00a7 430.204"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.230",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to support one or more progress reviews during an appraisal cycle in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 CFR \u00a7 430.207"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.240",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "O",
+ "Business Capability Statement": "Provide supporting documents to justify withholding or denying, or granting afterwards, a Within Grade Increase, in accordance with applicable laws, rules, regulations, policies and guidelines. ",
+ "Authoritative Reference": "5 U.S. Code \u00a7\u202f4303"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.250",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for the Rating Official to view the submitted Self-Assessment throughout the appraisal period.",
+ "Authoritative Reference": "5 CFR \u00a7 432.104"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.260",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for employee to request feedback any time during the performance appraisal period.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.270",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to track supervisor's Coaching or Mentoring Tasks / Reminders / To Dos, to support engagement with staff and accountability for engaging employees.",
+ "Authoritative Reference": "5 CFR \u00a7 250.203"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.280",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for managers and employees to provide, track and maintain feedback, and/or accomplishments during Progress Reviews.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.290",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to enable multiple approval processes (Emp/Supv, Emp/Supv/2nd Level Supv, and Supv only) for summary rating.",
+ "Authoritative Reference": "5 CFR \u00a7 430.206"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.300",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Ensure rating of record is based only on the evaluation of actual job performance against the established elements, standards and/or expectations, for the designated appraisal period.",
+ "Authoritative Reference": "5 CFR \u00a7 430.208"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.310",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to measure performance against identified elements, standards and/or expectations.",
+ "Authoritative Reference": "\n5 U.S. Code \u00a7\u202f4302"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.320",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to not rate an element.",
+ "Authoritative Reference": "5 CFR \u00a7 430.208"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.330",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to support the administration of Centralized Review Panel for Senior-Level (SL) and Scientific or Professional (ST) in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 CFR \u00a7 430.311"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.340",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish mechanism for Rating or Reviewing Official and/or designees to provide written narrative(s) to support individual element ratings and/or summary rating.",
+ "Authoritative Reference": "5 CFR \u00a7 430.204"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.350",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to capture employee and Rating and Reviewing Officials feedback on a performance appraisal.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.360",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for a rating official and/or designee to complete and submit a performance review, against the established elements, standards and/or expectations.",
+ "Authoritative Reference": "5 CFR \u00a7 430.204"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.370",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for Rating Officials and employees to acknowledge issue and receipt of performance documents during performance appraisal.",
+ "Authoritative Reference": "CFR \u00a7 430.204"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.380",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for the Rating Official to confirm that he/she conducted an appraisal discussion with the employee and issued a final rating of record.",
+ "Authoritative Reference": "5 CFR \u00a7 430.206"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.390",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Ensure that the performance appraisal is documented, signed by the rating official, and communicated to the employee.",
+ "Authoritative Reference": "5 CFR \u00a7 430.209"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.400",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish a mechanism to monitor the completion of performance plans, performance reviews, and performance appraisals.",
+ "Authoritative Reference": "5 CFR \u00a7 430.206"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.410",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish a formal and informal process for reconsideration of the rating of record.",
+ "Authoritative Reference": "5 CFR \u00a7 430.208"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.420",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to remove performance appraisals for plans that are null and void.",
+ "Authoritative Reference": "5 CFR \u00a7 293.404"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.430",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish a mechanism to provide off-cycle progress reviews to support personnel decisions such as WGI approval/disapproval or adverse performance-based actions associated with unacceptable performance.",
+ "Authoritative Reference": "5 U.S. Code \u00a7\u202f4303"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.440",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide capability for managers to view employee comments while completing appraisal.",
+ "Authoritative Reference": "5 CFR \u00a7 430.209"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.450",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for the employee to submit a Self-Assessment for consideration during performance reviews.",
+ "Authoritative Reference": "5 CFR \u00a7 432.104"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.460",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish a mechanism to capture previous rating official feedback.",
+ "Authoritative Reference": "5 CFR \u00a7 293.404"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.470",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to submit supporting documentation to recommend a Quality Step Increase, in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 CFR \u00a7 531.507"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.480",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish a mechanism to formally record the rating of record.",
+ "Authoritative Reference": "5 CFR \u00a7 430.208"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.490",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Identify and record employees who were not rated and why a rating was not given. ",
+ "Authoritative Reference": "No authoritative source identified"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.500",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for managers and HR practitioners to select competencies from a competency library.",
+ "Authoritative Reference": "No authoritative source identified"
+ },
+ {
+ "Capability ID": "HCM.A4-1.040.510",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.040 Employee Performance Management Cycle Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Track and manage records in accordance with NARA\u2019s General Records Schedule or an agency-specific records schedule",
+ "Authoritative Reference": "36 CFR \u00a7 1220.30"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.010",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish a mechanism to create, modify, or view performance plans at any time throughout the performance cycle.",
+ "Authoritative Reference": "5 CFR \u00a7 430.209"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.020",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to update employee\u2019s title, organization, series, grade, and goals on a Performance Plan.",
+ "Authoritative Reference": "No authoritative source identified"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.030",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for Rating Officials and employees to acknowledge issue and receipt of all performance documents when creating a new plan.",
+ "Authoritative Reference": "CFR \u00a7 430.204"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.040",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to access a library of established performance elements other than elements focused on specific results.",
+ "Authoritative Reference": "No authoritative source identified"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.050",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for the rating/reviewing official and HR Practitioner to view cycle progress by organization, office, and employee in accordance with applicable laws, rules, policies, and guidelines.",
+ "Authoritative Reference": "5 CFR \u00a7 293.404"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.060",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to provide measurable, quantifiable and timely data elements to report progress on performance objectives.",
+ "Authoritative Reference": "5 CFR \u00a7 430.208"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.070",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Ensure that changes to the performance plan are documented and communicated to the employee.",
+ "Authoritative Reference": "5 CFR \u00a7 430.209"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.080",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish a mechanism for employee acknowledgement of changes or modifications to established performance plans.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.090",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for Rating Official to view Accomplishments submitted by the employee throughout the appraisal period.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.100",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish the mechanism to capture, document and communicate employee unacceptable (e.g., less than Fully Successful) performance in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 U.S. Code \u00a7\u202f4303"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.110",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for Rating Officials and employees to acknowledge issue and receipt of performance documents during progress reviews.",
+ "Authoritative Reference": "CFR \u00a7 430.204"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.120",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "O",
+ "Business Capability Statement": "Provide supporting documents to justify withholding or denying, or granting afterwards, a Within Grade Increase, in accordance with applicable laws, rules, regulations, policies and guidelines. ",
+ "Authoritative Reference": "5 U.S. Code \u00a7\u202f4303"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.130",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to submit documents supporting personnel actions informed by performance, excluding WGIs and QSIs.",
+ "Authoritative Reference": "5 CFR \u00a7 293.403"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.140",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for the Rating Official to view the submitted Self-Assessment throughout the appraisal period.",
+ "Authoritative Reference": "5 CFR \u00a7 432.104"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.150",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to track supervisor's Coaching or Mentoring Tasks / Reminders / To Dos, to support engagement with staff and accountability for engaging employees.",
+ "Authoritative Reference": "5 CFR \u00a7 250.203"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.160",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for managers and employees to provide, track and maintain feedback, and/or accomplishments during Progress Reviews.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.170",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to support the administration of Centralized Review Panel for Senior-Level (SL) and Scientific or Professional (ST) in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 CFR \u00a7 430.311"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.180",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish mechanism for Rating or Reviewing Official and/or designees to provide written narrative(s) to support individual element ratings and/or summary rating.",
+ "Authoritative Reference": "5 CFR \u00a7 430.204"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.190",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to capture employee and Rating and Reviewing Officials feedback on a performance appraisal.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.200",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for a rating official and/or designee to complete and submit a performance review, against the established elements, standards and/or expectations.",
+ "Authoritative Reference": "5 CFR \u00a7 430.204"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.210",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for Rating Officials and employees to acknowledge issue and receipt of performance documents during performance appraisal.",
+ "Authoritative Reference": "CFR \u00a7 430.204"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.220",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for the Rating Official to confirm that he/she conducted an appraisal discussion with the employee and issued a final rating of record.",
+ "Authoritative Reference": "5 CFR \u00a7 430.206"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.230",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Ensure that the performance appraisal is documented, signed by the rating official, and communicated to the employee.",
+ "Authoritative Reference": "5 CFR \u00a7 430.209"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.240",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish a mechanism to monitor the completion of performance plans, performance reviews, and performance appraisals.",
+ "Authoritative Reference": "5 CFR \u00a7 430.206"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.250",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to access, retain, and purge current and prior year(s) employee performance records in accordance with applicable laws, rules, regulations, policies and guidelines (e.g., ratings).",
+ "Authoritative Reference": "5 CFR \u00a7 293.404"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.260",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to remove performance appraisals for plans that are null and void.",
+ "Authoritative Reference": "5 CFR \u00a7 293.404"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.270",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide capability for managers to view employee comments while completing appraisal.",
+ "Authoritative Reference": "5 CFR \u00a7 430.209"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.280",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for the employee to submit a Self-Assessment for consideration during performance reviews.",
+ "Authoritative Reference": "5 CFR \u00a7 432.104"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.290",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish a mechanism to capture previous rating official feedback.",
+ "Authoritative Reference": "5 CFR \u00a7 293.404"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.300",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to report on awards (monetary and non-monetary) and ratings to make data driven decisions and to evaluate the efficiency and effectiveness of performance and award programs.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.310",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to submit supporting documentation to recommend a Quality Step Increase, in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 CFR \u00a7 531.507"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.320",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to create, track, maintain, and access records related to performance management system(s) and program(s) in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 CFR \u00a7 293.402"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.330",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish a mechanism to formally record the rating of record.",
+ "Authoritative Reference": "6 CFR \u00a7 430.208"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.340",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Ensure rating and reviewing officials and HR practitioners are able to pull reports throughout the various rating cycle(s), including the rating of record.",
+ "Authoritative Reference": "5 CFR \u00a7 293.402"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.350",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish the mechanism to provide consistent and transparent government-wide reporting of EPM system performance data.",
+ "Authoritative Reference": "5 CFR \u00a7 293.402"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.360",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide data support for senior professional (SL/ST) performance management appraisal system(s) certification in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 4312"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.370",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Identify and record employees who were not rated and why a rating was not given. ",
+ "Authoritative Reference": "No authoritative source identified"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.380",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish the mechanism to report performance management activities to EHRI.",
+ "Authoritative Reference": "5 CFR \u00a7 293.402"
+ },
+ {
+ "Capability ID": "HCM.A4-1.050.390",
+ "Function": "HCM.A4-1 Employee Performance Management",
+ "Activity Name": "HCM.A4-1.050 Employee Performance Management Data Capture, Transfer, and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Track and manage records in accordance with NARA\u2019s General Records Schedule or an agency-specific records schedule",
+ "Authoritative Reference": "36 CFR \u00a7 1220.30"
+ },
+ {
+ "Capability ID": "HCM.A4-2.010.010",
+ "Function": "HCM.A4-2 Recognition Management",
+ "Activity Name": "HCM.A4-2.010 Recognition Programs Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish criteria for performance awards.",
+ "Authoritative Reference": "5 CFR \u00a7 430.204"
+ },
+ {
+ "Capability ID": "HCM.A4-2.010.020",
+ "Function": "HCM.A4-2 Recognition Management",
+ "Activity Name": "HCM.A4-2.010 Recognition Programs Development",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to support the administration of monetary and non-monetary awards.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 4505a"
+ },
+ {
+ "Capability ID": "HCM.A4-2.020.010",
+ "Function": "HCM.A4-2 Recognition Management",
+ "Activity Name": "HCM.A4-2.020 Recognition Programs Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to use performance ratings to determine performance award and pay eligibility.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-2.020.020",
+ "Function": "HCM.A4-2 Recognition Management",
+ "Activity Name": "HCM.A4-2.020 Recognition Programs Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to support the administration of monetary and non-monetary awards.",
+ "Authoritative Reference": "5 U.S. Code\u00a0\u00a7\u202f4505a"
+ },
+ {
+ "Capability ID": "HCM.A4-2.020.030",
+ "Function": "HCM.A4-2 Recognition Management",
+ "Activity Name": "HCM.A4-2.020 Recognition Programs Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to submit supporting documentation to recommend a Quality Step Increase, in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 CFR \u00a7 531.507"
+ },
+ {
+ "Capability ID": "HCM.A4-2.020.040",
+ "Function": "HCM.A4-2 Recognition Management",
+ "Activity Name": "HCM.A4-2.020 Recognition Programs Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to monitor and report monetary awards given to employees to ensure compliance with OPM guidelines.",
+ "Authoritative Reference": "5 U.S. Code\u00a0\u00a7\u202f4304"
+ },
+ {
+ "Capability ID": "HCM.A4-2.020.050",
+ "Function": "HCM.A4-2 Recognition Management",
+ "Activity Name": "HCM.A4-2.020 Recognition Programs Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability for managers, HR practitioners, and/or designees to access employee's monetary and non-monetary award history.",
+ "Authoritative Reference": "5 CFR \u00a7 293.402"
+ },
+ {
+ "Capability ID": "HCM.A4-2.020.060",
+ "Function": "HCM.A4-2 Recognition Management",
+ "Activity Name": "HCM.A4-2.020 Recognition Programs Administration",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Track and manage records in accordance with NARA\u2019s General Records Schedule or an agency-specific records schedule",
+ "Authoritative Reference": "36 CFR \u00a7 1220.30"
+ },
+ {
+ "Capability ID": "HCM.A4-2.030.010",
+ "Function": "HCM.A4-2 Recognition Management",
+ "Activity Name": "HCM.A4-2.030 Recognition Programs Evaluation",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to report on awards (monetary and non-monetary) and ratings to make data driven decisions and to evaluate the efficiency and effectiveness of performance and award programs.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-2.030.020",
+ "Function": "HCM.A4-2 Recognition Management",
+ "Activity Name": "HCM.A4-2.030 Recognition Programs Evaluation",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to monitor and report monetary awards given to employees to ensure compliance with OPM guidelines.",
+ "Authoritative Reference": "5 U.S. Code\u00a0\u00a7\u202f4304"
+ },
+ {
+ "Capability ID": "HCM.A4-2.030.030",
+ "Function": "HCM.A4-2 Recognition Management",
+ "Activity Name": "HCM.A4-2.030 Recognition Programs Evaluation",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Track and manage records in accordance with NARA\u2019s General Records Schedule or an agency-specific records schedule",
+ "Authoritative Reference": "36 CFR \u00a7 1220.30"
+ },
+ {
+ "Capability ID": "HCM.A4-2.040.010",
+ "Function": "HCM.A4-2 Recognition Management",
+ "Activity Name": "HCM.A4-2.040 Recognition Programs Data Capture, Transfer and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to use performance ratings to determine performance award and pay eligibility.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-2.040.020",
+ "Function": "HCM.A4-2 Recognition Management",
+ "Activity Name": "HCM.A4-2.040 Recognition Programs Data Capture, Transfer and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to report on awards (monetary and non-monetary) and ratings to make data driven decisions and to evaluate the efficiency and effectiveness of performance and award programs.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 5406"
+ },
+ {
+ "Capability ID": "HCM.A4-2.040.030",
+ "Function": "HCM.A4-2 Recognition Management",
+ "Activity Name": "HCM.A4-2.040 Recognition Programs Data Capture, Transfer and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide the ability to submit supporting documentation to recommend a Quality Step Increase, in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 CFR \u00a7 531.507"
+ },
+ {
+ "Capability ID": "HCM.A4-2.040.040",
+ "Function": "HCM.A4-2 Recognition Management",
+ "Activity Name": "HCM.A4-2.040 Recognition Programs Data Capture, Transfer and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Establish a mechanism to formally record the rating of record.",
+ "Authoritative Reference": "7 CFR \u00a7 430.208"
+ },
+ {
+ "Capability ID": "HCM.A4-2.040.050",
+ "Function": "HCM.A4-2 Recognition Management",
+ "Activity Name": "HCM.A4-2.040 Recognition Programs Data Capture, Transfer and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Support the submission of performance appraisal systems and programs documentation to OPM.",
+ "Authoritative Reference": "5 CFR \u00a7 430.209"
+ },
+ {
+ "Capability ID": "HCM.A4-2.040.060",
+ "Function": "HCM.A4-2 Recognition Management",
+ "Activity Name": "HCM.A4-2.040 Recognition Programs Data Capture, Transfer and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Provide data support for senior professional (SL/ST) performance management appraisal system(s) certification in accordance with applicable laws, rules, regulations, policies and guidelines.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 4312"
+ },
+ {
+ "Capability ID": "HCM.A4-2.040.070",
+ "Function": "HCM.A4-2 Recognition Management",
+ "Activity Name": "HCM.A4-2.040 Recognition Programs Data Capture, Transfer and Reporting",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Track and manage records in accordance with NARA\u2019s General Records Schedule or an agency-specific records schedule",
+ "Authoritative Reference": "36 CFR \u00a7 1220.30"
+ },
+ {
+ "Capability ID": "HCM.A4-3.010.010",
+ "Function": "HCM.A4-3 Performance Appraisal System Certification for SES and SL/ST",
+ "Activity Name": "HCM.A4-3.010 SES and/or SL/ST PA System Review or Adoption",
+ "Input/Output/Process": "I",
+ "Business Capability Statement": "Designate an Oversight Official and provide the Official's name and position title to OPM.",
+ "Authoritative Reference": "5 U.S. Code \u00a7 4312"
+ },
+ {
+ "Capability ID": "HCM.A4-3.010.020",
+ "Function": "HCM.A4-3 Performance Appraisal System Certification for SES and SL/ST",
+ "Activity Name": "HCM.A4-3.010 SES and/or SL/ST PA System Review or Adoption",
+ "Input/Output/Process": "O",
+ "Business Capability Statement": "If Basic SES and SL/ST (Certification 2.0) process: adopt the Basic SES and/or SL/ST PA System that complies with existing applicable statute and regulations.",
+ "Authoritative Reference": "5 CFR \u00a7 1330.403"
+ },
+ {
+ "Capability ID": "HCM.A4-3.010.030",
+ "Function": "HCM.A4-3 Performance Appraisal System Certification for SES and SL/ST",
+ "Activity Name": "HCM.A4-3.010 SES and/or SL/ST PA System Review or Adoption",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "If Performance Appraisal Assessment Tool (PAAT) process: design an agency-specific SES and/or SL/ST PA system that complies with existing applicable statute and regulations. ",
+ "Authoritative Reference": "5 CFR \u00a7 1330.404"
+ },
+ {
+ "Capability ID": "HCM.A4-3.020.010",
+ "Function": "HCM.A4-3 Performance Appraisal System Certification for SES and SL/ST",
+ "Activity Name": "HCM.A4-3.020 SES and/or SL/ST PA System Implementation and Application",
+ "Input/Output/Process": "O",
+ "Business Capability Statement": "If Basic SES and SL/ST (Certification 2.0) process: implement Basic SES and/or SL/ST PA System, showing meaningful distinctions in senior employee performance ratings and awards.",
+ "Authoritative Reference": "5 CFR \u00a7 1330.405"
+ },
+ {
+ "Capability ID": "HCM.A4-3.020.020",
+ "Function": "HCM.A4-3 Performance Appraisal System Certification for SES and SL/ST",
+ "Activity Name": "HCM.A4-3.020 SES and/or SL/ST PA System Implementation and Application",
+ "Input/Output/Process": "O",
+ "Business Capability Statement": "If Agency-designed system (Performance Appraisal Assessment Tool (PAAT) process): apply agency-specific SES and/or SL/ST performance appraisal system to show meaningful distinctions in performance ratings, pay adjustments, and awards.",
+ "Authoritative Reference": "5 CFR \u00a7 1330.405"
+ },
+ {
+ "Capability ID": "HCM.A4-3.020.030",
+ "Function": "HCM.A4-3 Performance Appraisal System Certification for SES and SL/ST",
+ "Activity Name": "HCM.A4-3.020 SES and/or SL/ST PA System Implementation and Application",
+ "Input/Output/Process": "I",
+ "Business Capability Statement": "Develop an agency-specific SES and/or SL/ST pay policy and submit with initial certification request.",
+ "Authoritative Reference": "5 CFR \u00a7 1330.405"
+ },
+ {
+ "Capability ID": "HCM.A4-3.020.040",
+ "Function": "HCM.A4-3 Performance Appraisal System Certification for SES and SL/ST",
+ "Activity Name": "HCM.A4-3.020 SES and/or SL/ST PA System Implementation and Application",
+ "Input/Output/Process": "O",
+ "Business Capability Statement": "Submit an updated agency-specific SES and/or SL/ST pay policy if/when the policy is amended.",
+ "Authoritative Reference": "5 CFR \u00a7 1330.405"
+ },
+ {
+ "Capability ID": "HCM.A4-3.020.050",
+ "Function": "HCM.A4-3 Performance Appraisal System Certification for SES and SL/ST",
+ "Activity Name": "HCM.A4-3.020 SES and/or SL/ST PA System Implementation and Application",
+ "Input/Output/Process": "O",
+ "Business Capability Statement": "Share results of organizational assessments with senior employees and appropriate rating and reviewing officials. ",
+ "Authoritative Reference": "5 CFR \u00a7 1330.405"
+ },
+ {
+ "Capability ID": "HCM.A4-3.020.060",
+ "Function": "HCM.A4-3 Performance Appraisal System Certification for SES and SL/ST",
+ "Activity Name": "HCM.A4-3.020 SES and/or SL/ST PA System Implementation and Application",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Track and manage records in accordance with NARA\u2019s General Records Schedule or an agency-specific records schedule",
+ "Authoritative Reference": "36 CFR \u00a7 1220.30"
+ },
+ {
+ "Capability ID": "HCM.A4-3.030.010",
+ "Function": "HCM.A4-3 Performance Appraisal System Certification for SES and SL/ST",
+ "Activity Name": "HCM.A4-3.030 SES and/or SL/ST PA System Certification Process Management",
+ "Input/Output/Process": "I",
+ "Business Capability Statement": "Develop an agency-specific SES and/or SL/ST pay policy and submit with initial certification request.",
+ "Authoritative Reference": "5 CFR \u00a7 1330.405"
+ },
+ {
+ "Capability ID": "HCM.A4-3.030.020",
+ "Function": "HCM.A4-3 Performance Appraisal System Certification for SES and SL/ST",
+ "Activity Name": "HCM.A4-3.030 SES and/or SL/ST PA System Certification Process Management",
+ "Input/Output/Process": "O",
+ "Business Capability Statement": "Submit an updated agency-specific SES and/or SL/ST pay policy if/when the policy is amended.",
+ "Authoritative Reference": "5 CFR \u00a7 1330.405"
+ },
+ {
+ "Capability ID": "HCM.A4-3.030.030",
+ "Function": "HCM.A4-3 Performance Appraisal System Certification for SES and SL/ST",
+ "Activity Name": "HCM.A4-3.030 SES and/or SL/ST PA System Certification Process Management",
+ "Input/Output/Process": "O",
+ "Business Capability Statement": "Share results of organizational assessments with senior employees and appropriate rating and reviewing officials. ",
+ "Authoritative Reference": "5 CFR \u00a7 1330.405"
+ },
+ {
+ "Capability ID": "HCM.A4-3.030.040",
+ "Function": "HCM.A4-3 Performance Appraisal System Certification for SES and SL/ST",
+ "Activity Name": "HCM.A4-3.030 SES and/or SL/ST PA System Certification Process Management",
+ "Input/Output/Process": "O",
+ "Business Capability Statement": "Respond to annual OPM Data Call with completed Data Call template providing ratings, pay, and awards data for senior employees. ",
+ "Authoritative Reference": "5 CFR \u00a7 1330.405"
+ },
+ {
+ "Capability ID": "HCM.A4-3.030.050",
+ "Function": "HCM.A4-3 Performance Appraisal System Certification for SES and SL/ST",
+ "Activity Name": "HCM.A4-3.030 SES and/or SL/ST PA System Certification Process Management",
+ "Input/Output/Process": "P/O",
+ "Business Capability Statement": "Complete and submit Ratings Distribution Justification Template(s).",
+ "Authoritative Reference": "5 CFR \u00a7 1330.405"
+ },
+ {
+ "Capability ID": "HCM.A4-3.030.060",
+ "Function": "HCM.A4-3 Performance Appraisal System Certification for SES and SL/ST",
+ "Activity Name": "HCM.A4-3.030 SES and/or SL/ST PA System Certification Process Management",
+ "Input/Output/Process": "P/O",
+ "Business Capability Statement": "Submit an Organizational Assessment and Guidelines Document that includes organizational performance results and guidelines for using those results when assigning individual ratings.",
+ "Authoritative Reference": "5 CFR \u00a7 1330.404"
+ },
+ {
+ "Capability ID": "HCM.A4-3.030.070",
+ "Function": "HCM.A4-3 Performance Appraisal System Certification for SES and SL/ST",
+ "Activity Name": "HCM.A4-3.030 SES and/or SL/ST PA System Certification Process Management",
+ "Input/Output/Process": "O",
+ "Business Capability Statement": "Submit Certification Request Packages via the SES and SL/ST MAX Portal.",
+ "Authoritative Reference": "5 CFR \u00a7 1330.404"
+ },
+ {
+ "Capability ID": "HCM.A4-3.030.080",
+ "Function": "HCM.A4-3 Performance Appraisal System Certification for SES and SL/ST",
+ "Activity Name": "HCM.A4-3.030 SES and/or SL/ST PA System Certification Process Management",
+ "Input/Output/Process": "O",
+ "Business Capability Statement": "Submit letter from the Agency Head, Oversight Official, or designee to OPM requesting certification with appropriate agency self-verification and documentation (as needed).",
+ "Authoritative Reference": "5 CFR \u00a7 1330.404"
+ },
+ {
+ "Capability ID": "HCM.A4-3.030.090",
+ "Function": "HCM.A4-3 Performance Appraisal System Certification for SES and SL/ST",
+ "Activity Name": "HCM.A4-3.030 SES and/or SL/ST PA System Certification Process Management",
+ "Input/Output/Process": "O",
+ "Business Capability Statement": "If Basic SES and SL/ST (Certification 2.0) process: submit documents required to meet certification criteria and provide a complete certification request to OPM for review three months prior to the certification expiration date to avoid a gap in certification.",
+ "Authoritative Reference": "5 CFR \u00a7 1330.404"
+ },
+ {
+ "Capability ID": "HCM.A4-3.030.100",
+ "Function": "HCM.A4-3 Performance Appraisal System Certification for SES and SL/ST",
+ "Activity Name": "HCM.A4-3.030 SES and/or SL/ST PA System Certification Process Management",
+ "Input/Output/Process": "O",
+ "Business Capability Statement": "If Performance Appraisal Assessment Tool (PAAT) process: submit documentation demonstrating the PA system complies with the required certification criteria, including a representative sample of SES and/or SL/ST Performance Plans, evidence of training, communication of system application results, and communication of guidelines for using organizational assessment results demonstrating compliance with existing applicable regulations.",
+ "Authoritative Reference": "5 CFR \u00a7 1330.403"
+ },
+ {
+ "Capability ID": "HCM.A4-3.030.110",
+ "Function": "HCM.A4-3 Performance Appraisal System Certification for SES and SL/ST",
+ "Activity Name": "HCM.A4-3.030 SES and/or SL/ST PA System Certification Process Management",
+ "Input/Output/Process": "P/O",
+ "Business Capability Statement": "If Performance Appraisal Assessment Tool (PAAT) process: complete the PAAT in accordance with existing regulations and provide a complete certification request to OPM six months before the end of the certification period. ",
+ "Authoritative Reference": "5 CFR \u00a7 1330.403"
+ },
+ {
+ "Capability ID": "HCM.A4-3.030.120",
+ "Function": "HCM.A4-3 Performance Appraisal System Certification for SES and SL/ST",
+ "Activity Name": "HCM.A4-3.030 SES and/or SL/ST PA System Certification Process Management",
+ "Input/Output/Process": "P",
+ "Business Capability Statement": "Track and manage records in accordance with NARA\u2019s General Records Schedule or an agency-specific records schedule",
+ "Authoritative Reference": "36 CFR \u00a7 1220.30"
+ }
+]
\ No newline at end of file
diff --git a/json_generation/data.json b/json_generation/data.json
new file mode 100644
index 000000000..0c0b78226
--- /dev/null
+++ b/json_generation/data.json
@@ -0,0 +1,408 @@
+[
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.010 Human Capital Evaluation Program Planning",
+ "Service Measure ID": "HCM.A10-1.010.M01",
+ "Service Measure Name": "Formal HC Evaluation Program Policy Adherence",
+ "Service Measure Description": "Measures the extent to which the service provider adhered to a comprehensive, formally documented HC evaluation program policy.",
+ "Service Measurement Source": "Agency",
+ "Service Measure Target": "Agency Determined; Recommended: At Least 4",
+ "Service Measurement Frequency": "Agency Determined",
+ "Service Measure Type ": "Compliance",
+ "Service Measure Rationale": "5 CFR \u00a7 250.203\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "To what extent do you agree with the following statement: The service provider and/or agency accountability office acted in accordance with the formally documented CHCO-approved HC evaluation program policy. \n5-Point Agreement Scale: \n5 = Strongly Agree; 4 = Agree; 3 = Neither Agree nor Disagree; 2= Disagree; 1 = Strongly Disagree"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.010 Human Capital Evaluation Program Planning",
+ "Service Measure ID": "HCM.A10-1.010.M02",
+ "Service Measure Name": "Formal HC Evaluation Program Policy",
+ "Service Measure Description": "Measures the extent to which the service provider produced (or updated) a draft of a comprehensive, formally documented HC evaluation program policy and/or evaluation system.",
+ "Service Measurement Source": "Agency",
+ "Service Measure Target": "Agency Determined; Recommended: At Least 4",
+ "Service Measurement Frequency": "Agency Determined",
+ "Service Measure Type ": "Effectiveness (Goals, Mission Benefits)",
+ "Service Measure Rationale": "5 CFR \u00a7 250.203\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "To what extent do you agree with the following statement: The service provider and/or agency accountability office developed a comprehensive draft or components of a draft of the formally documented HC evaluation program policy. \n5-Point Agreement Scale: \n5 = Strongly Agree; 4 = Agree; 3 = Neither Agree nor Disagree; 2= Disagree; 1 = Strongly Disagree"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.010 Human Capital Evaluation Program Planning",
+ "Service Measure ID": "HCM.A10-1.010.M03",
+ "Service Measure Name": "HC Evaluation Program Maturity Observation",
+ "Service Measure Description": "Measures the maturity level of the HC evaluation program formal documentation.",
+ "Service Measurement Source": "Agency",
+ "Service Measure Target": "Agency Determined; Recommended: At Least 4",
+ "Service Measurement Frequency": "Agency Determined",
+ "Service Measure Type ": "Effectiveness (Goals, Mission Benefits)",
+ "Service Measure Rationale": "5 CFR \u00a7 250.203\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "To what extent do you agree with the following statement: The current HC evaluation program policy and/or system documentation fully explains how the program operates. \n5-Point Agreement Scale: \n5 = Strongly Agree; 4 = Agree; 3 = Neither Agree nor Disagree; 2= Disagree; 1 = Strongly Disagree"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.010 Human Capital Evaluation Program Planning",
+ "Service Measure ID": "HCM.A10-1.010.M04",
+ "Service Measure Name": "HC Evaluation Program Metric Planning",
+ "Service Measure Description": "Measures the extent to which the service provider produces HC evaluation program strategy and planning documents that define evaluation measures and metrics, including how they will be acquired, tracked, and reviewed to determine program success. ",
+ "Service Measurement Source": "Agency",
+ "Service Measure Target": "Agency Determined; Recommended: At Least 4",
+ "Service Measurement Frequency": "Agency Determined",
+ "Service Measure Type ": "Effectiveness (Goals, Mission Benefits)",
+ "Service Measure Rationale": "5 USC \u00a7 1103(c)(1)\n5 CFR \u00a7 250.208",
+ "Service Measurement Formula Combined with formatting": "To what extent do you agree with the following statement: The most recent HC evaluation program strategy and planning documents define evaluation measures and metrics, including how they will be acquired, tracked, and reviewed to determine program success. \n5-Point Agreement Scale: \n5 = Strongly Agree; 4 = Agree; 3 = Neither Agree nor Disagree; 2= Disagree; 1 = Strongly Disagree"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.010 Human Capital Evaluation Program Planning",
+ "Service Measure ID": "HCM.A10-1.010.M05",
+ "Service Measure Name": "HC Evaluation Program Stakeholder Input Opportunity",
+ "Service Measure Description": "Measures the extent to which the service provider provides the various organizational stakeholders with opportunities to provide input in the HC evaluation program strategic direction and planning process.",
+ "Service Measurement Source": "Agency",
+ "Service Measure Target": "Agency Determined; Recommended: At Least 2",
+ "Service Measurement Frequency": "Agency Determined",
+ "Service Measure Type ": "Effectiveness (Goals, Mission Benefits)",
+ "Service Measure Rationale": "5 CFR \u00a7 250.203\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "To what extent do you agree with the following statement: The service provider and/or agency accountability office provided organizational stakeholders (may include functional managers, executive leadership, supervisors, etc.) with opportunities to provide input in the most recent HC evaluation program strategic direction and planning process. \n5-Point Agreement Scale: \n5 = Strongly Agree; 4 = Agree; 3 = Neither Agree nor Disagree; 2= Disagree; 1 = Strongly Disagree"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.010 Human Capital Evaluation Program Planning",
+ "Service Measure ID": "HCM.A10-1.010.M06",
+ "Service Measure Name": "HC Evaluation Program Communications Planning",
+ "Service Measure Description": "Measures the extent to which the service provider produced an effective communications plan to disseminate HC evaluation program goals, plans, and results.",
+ "Service Measurement Source": "Agency",
+ "Service Measure Target": "Agency Determined; Recommended: At Least 4",
+ "Service Measurement Frequency": "Annually\nAs Needed",
+ "Service Measure Type ": "Effectiveness (Goals, Mission Benefits)",
+ "Service Measure Rationale": "5 CFR \u00a7 250.203\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "To what extent do you agree with the following statement: The service provider and/or agency accountability office produced an effective communications plan to disseminate HC evaluation program goals, plans, and results. \n5-Point Agreement Scale: \n5 = Strongly Agree; 4 = Agree; 3 = Neither Agree nor Disagree; 2= Disagree; 1 = Strongly Disagree"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.010 Human Capital Evaluation Program Planning",
+ "Service Measure ID": "HCM.A10-1.010.M07",
+ "Service Measure Name": "Business Requirement Compliance",
+ "Service Measure Description": "Measures whether the service provider met the applicable published federal business/service requirements for this service.",
+ "Service Measurement Source": "Agency ",
+ "Service Measure Target": "Yes",
+ "Service Measurement Frequency": "Annually",
+ "Service Measure Type ": "Compliance",
+ "Service Measure Rationale": "5 CFR \u00a7 250.203\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "Has the service provider and/or agency accountability office met the applicable published federal business/service requirements for this service? \nYes/No"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.020 Human Capital Evaluation Program Analysis",
+ "Service Measure ID": "HCM.A10-1.020.M01",
+ "Service Measure Name": "HC Evaluation Program Monitoring",
+ "Service Measure Description": "Measures whether the service provider maintains an active HC evaluation program monitoring mechanism.",
+ "Service Measurement Source": "Agency",
+ "Service Measure Target": "Yes or N/A",
+ "Service Measurement Frequency": "Annually",
+ "Service Measure Type ": "Effectiveness (Goals, Mission Benefits)",
+ "Service Measure Rationale": "5 CFR \u00a7 250.203\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "Does the service provider and/or agency accountability office maintain an active HC evaluation program monitoring mechanism to validate whether measures, milestones, and evaluation activities (e.g., trend analysis, Independent audits) provide an accurate reflection of HC program status? Yes/No/Not Applicable"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.020 Human Capital Evaluation Program Analysis",
+ "Service Measure ID": "HCM.A10-1.020.M02",
+ "Service Measure Name": "HC Evaluation Program Communicating Results",
+ "Service Measure Description": "Measures whether the service provider communicates results to organizational stakeholders.",
+ "Service Measurement Source": "Agency",
+ "Service Measure Target": "Agency Determined; Recommended: At Least 4",
+ "Service Measurement Frequency": "Annually",
+ "Service Measure Type ": "Effectiveness (Goals, Mission Benefits)",
+ "Service Measure Rationale": "5 CFR \u00a7 250.203\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "To what extent has the service provider and/or agency accountability office communicated HC evaluation program results to organizational stakeholders (functional managers, executive leadership, supervisors, etc.) in the past fiscal year? \n5-Point Frequency Scale:\n5 = To a Very Large Extent; 4 = To a Large Extent; 3 = To a Moderate Extent; 2 = To a Small Extent; 1 = To a Very Small Extent"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.020 Human Capital Evaluation Program Analysis",
+ "Service Measure ID": "HCM.A10-1.020.M03",
+ "Service Measure Name": "HC Evaluation Program Internal Audits",
+ "Service Measure Description": "Measures the extent to which the service provider conducts internal audits on aspects of its program.",
+ "Service Measurement Source": "Agency",
+ "Service Measure Target": "Agency Determined; Recommended: At Least 4",
+ "Service Measurement Frequency": "Annually",
+ "Service Measure Type ": "Effectiveness (Goals, Mission Benefits)",
+ "Service Measure Rationale": "5 CFR \u00a7 250.202\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "To what extent do you agree with the following statement: In the past fiscal year, the service provider and/or agency accountability office conducted internal audits of its HC evaluation program operations. \n5-Point Agreement Scale: \n5 = Strongly Agree; 4 = Agree; 3 = Neither Agree nor Disagree; 2= Disagree; 1 = Strongly Disagree"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.020 Human Capital Evaluation Program Analysis",
+ "Service Measure ID": "HCM.A10-1.020.M04",
+ "Service Measure Name": "HC Evaluation Program Data Validation",
+ "Service Measure Description": "Measures the extent to which the service provider conducts data validation on critical program datasets.",
+ "Service Measurement Source": "Agency",
+ "Service Measure Target": "Agency Determined; Recommended: At Least 4",
+ "Service Measurement Frequency": "Annually",
+ "Service Measure Type ": "Efficiency (Timeliness, Accuracy)",
+ "Service Measure Rationale": "5 CFR \u00a7 250.202\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "To what extent do you agree with the following statement: In the past fiscal year, the service provider and/or agency accountability office conducted data validation on critical HC evaluation program datasets. \n5-Point Agreement Scale: \n5 = Strongly Agree; 4 = Agree; 3 = Neither Agree nor Disagree; 2= Disagree; 1 = Strongly Disagree"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.020 Human Capital Evaluation Program Analysis",
+ "Service Measure ID": "HCM.A10-1.020.M05",
+ "Service Measure Name": "Business Requirement Compliance",
+ "Service Measure Description": "Measures whether the service provider met the applicable published federal business/service requirements for this service.",
+ "Service Measurement Source": "Agency ",
+ "Service Measure Target": "Yes",
+ "Service Measurement Frequency": "Annually",
+ "Service Measure Type ": "Compliance",
+ "Service Measure Rationale": "5 CFR \u00a7 250.202\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "Has the service provider and/or agency accountability office met the applicable published federal business/service requirements for this service? \nYes/No/Not Applicable"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.030 Human Capital Evaluation Program Action Planning & Improvement",
+ "Service Measure ID": "HCM.A10-1.030.M01",
+ "Service Measure Name": "HC Evaluation Usable Recommendations",
+ "Service Measure Description": "Measures the extent to which the service provider provides understandable and usable HC evaluation program recommendations for improvement.",
+ "Service Measurement Source": "Agency",
+ "Service Measure Target": "Agency Determined; Recommended: At Least 4",
+ "Service Measurement Frequency": "Annually",
+ "Service Measure Type ": "Efficiency (Timeliness, Accuracy)",
+ "Service Measure Rationale": "5 CFR \u00a7 250.203\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "To what extent do you agree with the following statement: The service provider and/or agency accountability office presented HC evaluation program recommendations for improvement that are understandable and usable \n5-Point Agreement Scale: \n5 = Strongly Agree; 4 = Agree; 3 = Neither Agree nor Disagree; 2= Disagree; 1 = Strongly Disagree"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.030 Human Capital Evaluation Program Action Planning & Improvement",
+ "Service Measure ID": "HCM.A10-1.030.M02",
+ "Service Measure Name": "HC Evaluation Lessons Learned",
+ "Service Measure Description": "Measures the extent to which the service provider conducts lessons learned review or related processes to inform action planning items.",
+ "Service Measurement Source": "Agency",
+ "Service Measure Target": "Agency Determined; Recommended: At Least 4",
+ "Service Measurement Frequency": "Annually",
+ "Service Measure Type ": "Effectiveness (Goals, Mission Benefits)",
+ "Service Measure Rationale": "5 CFR \u00a7 250.203\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "To what extent do you agree with the following statement: The service provider and/or agency accountability officer conducted effective lessons learned reviews or other similar processes to identify important action planning items. \n5-Point Agreement Scale: \n5 = Strongly Agree; 4 = Agree; 3 = Neither Agree nor Disagree; 2= Disagree; 1 = Strongly Disagree"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.030 Human Capital Evaluation Program Action Planning & Improvement",
+ "Service Measure ID": "HCM.A10-1.030.M03",
+ "Service Measure Name": "HC Evaluation Program Analysis Relation to Recommendations",
+ "Service Measure Description": "Measures the extent to which the service provider's HC evaluation program improvement recommendations match findings gleaned from analysis findings.",
+ "Service Measurement Source": "Agency",
+ "Service Measure Target": "Agency Determined; Recommended: At Least 4",
+ "Service Measurement Frequency": "Annually",
+ "Service Measure Type ": "Efficiency (Timeliness, Accuracy)",
+ "Service Measure Rationale": "5 CFR \u00a7 250.202\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "To what extent has the service provider and/or agency accountability office HC evaluation program recommendations align with HC evaluation program analysis findings presented? \n5-Point Frequency Scale:\n5 = To a Very Large Extent; 4 = To a Large Extent; 3 = To a Moderate Extent; 2 = To a Small Extent; 1 = To a Very Small Extent"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.030 Human Capital Evaluation Program Action Planning & Improvement",
+ "Service Measure ID": "HCM.A10-1.030.M04",
+ "Service Measure Name": "HC Evaluation Program Enacted Recommendations",
+ "Service Measure Description": "Measures the extent to which the service provider enacts HC evaluation program improvements.",
+ "Service Measurement Source": "Agency",
+ "Service Measure Target": "Agency Determined; Recommended: At Least 4",
+ "Service Measurement Frequency": "Annually",
+ "Service Measure Type ": "Efficiency (Timeliness, Accuracy)",
+ "Service Measure Rationale": "5 CFR \u00a7 250.203\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "To what extent has the service provider and/or agency accountability office enacted HC evaluation program improvements? \n5-Point Frequency Scale:\n5 = To a Very Large Extent; 4 = To a Large Extent; 3 = To a Moderate Extent; 2 = To a Small Extent; 1 = To a Very Small Extent"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.030 Human Capital Evaluation Program Action Planning & Improvement",
+ "Service Measure ID": "HCM.A10-1.030.M05",
+ "Service Measure Name": "Business Requirement Compliance",
+ "Service Measure Description": "Measures whether the service provider met the applicable published federal business/service requirements for this service.",
+ "Service Measurement Source": "Agency ",
+ "Service Measure Target": "Yes",
+ "Service Measurement Frequency": "Annually",
+ "Service Measure Type ": "Compliance",
+ "Service Measure Rationale": "5 CFR \u00a7 250.203\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "Has the service provider and/or agency accountability office met the applicable published federal business/service requirements for this service? \nYes/No/Not Applicable"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.040 Human Capital Evaluation Planning",
+ "Service Measure ID": "HCM.A10-1.040.M01",
+ "Service Measure Name": "HC Evaluation Analysis Planning",
+ "Service Measure Description": "Measures the extent to which the service provider produces a HC evaluation analysis plan that summarizes the specific evaluations the agency plans to undertake.\n",
+ "Service Measurement Source": "Agency",
+ "Service Measure Target": "Agency Determined; Recommended: At Least 4",
+ "Service Measurement Frequency": "Agency Determined; Recommended: After each HC Evaluation",
+ "Service Measure Type ": "Effectiveness (Goals, Mission Benefits)",
+ "Service Measure Rationale": "5 CFR \u00a7 250.202\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "To what extent do you agree with the following statement: For the most recent HC evaluation, the service provider and/or agency evaluation team produced a HC analysis evaluation plan that summarizes the specific evaluation(s) of focus, including the research question(s), analysis methods, constraints, evaluation data sources, and analysis quality control processes. \n5-Point Agreement Scale: \n5 = Strongly Agree; 4 = Agree; 3 = Neither Agree nor Disagree; 2= Disagree; 1 = Strongly Disagree"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.040 Human Capital Evaluation Planning",
+ "Service Measure ID": "HCM.A10-1.040.M02",
+ "Service Measure Name": "Evidence-based HC Program Decision-making",
+ "Service Measure Description": "Measures the extent to which the service provider produces or maintains an effective evidence-building plan to identify key questions to improve program outcomes and develop appropriate policies and regulations to support mission accomplishment.",
+ "Service Measurement Source": "Agency",
+ "Service Measure Target": "Agency Determined; Recommended: At Least 4",
+ "Service Measurement Frequency": "Agency Determined; Recommended: After each HC Evaluation",
+ "Service Measure Type ": "Effectiveness (Goals, Mission Benefits)",
+ "Service Measure Rationale": "5 CFR \u00a7 250.203\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "For the most recent HC evaluation, to what extent has the service provider and/or agency evaluation team developed or maintained a program evidence-building plan to identify, prioritize, and establish strategies to develop and/or gather evidence to answer important short- and long-term strategic and operational program questions? \n5-Point Frequency Scale:\n5 = To a Very Large Extent; 4 = To a Large Extent; 3 = To a Moderate Extent; 2 = To a Small Extent; 1 = To a Very Small Extent"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.040 Human Capital Evaluation Planning",
+ "Service Measure ID": "HCM.A10-1.040.M03",
+ "Service Measure Name": "HC Evaluation Stakeholder Input Inclusion",
+ "Service Measure Description": "Measures the extent to which the service provider incorporates relevant agency and oversight stakeholder data inputs into the HC evaluation plan.",
+ "Service Measurement Source": "Agency",
+ "Service Measure Target": "Agency Determined; Recommended: At Least 4",
+ "Service Measurement Frequency": "Agency Determined; Recommended: After each HC Evaluation",
+ "Service Measure Type ": "Effectiveness (Goals, Mission Benefits)",
+ "Service Measure Rationale": "5 CFR \u00a7 250.203\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "To what extent do you agree with the following statement: For the most recent HC evaluation, the service provider and/or agency evaluation team incorporated relevant agency and oversight stakeholder data inputs (i.e., agency Human Capital Operating Plan (HCOP); HRStat; Independent Audit Program (IAP); Human Capital Reviews (HCR), etc.) into the HC evaluation plan. \n5-Point Agreement Scale: \n5 = Strongly Agree; 4 = Agree; 3 = Neither Agree nor Disagree; 2= Disagree; 1 = Strongly Disagree"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.040 Human Capital Evaluation Planning",
+ "Service Measure ID": "HCM.A10-1.040.M04",
+ "Service Measure Name": "Business Requirement Compliance",
+ "Service Measure Description": "Measures whether the service provider met the applicable published federal business/service requirements for this service.",
+ "Service Measurement Source": "Agency ",
+ "Service Measure Target": "Yes",
+ "Service Measurement Frequency": "Annually",
+ "Service Measure Type ": "Compliance",
+ "Service Measure Rationale": "5 CFR \u00a7 250.203\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "Has the service provider and/or agency evaluation team met the applicable published federal business/service requirements for this service? \nYes/No/Not Applicable"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.040 Human Capital Evaluation Planning",
+ "Service Measure ID": "HCM.A10-1.040.M05",
+ "Service Measure Name": "HC Evaluation Communications Effectiveness",
+ "Service Measure Description": "Measures the extent to which the service provider consistently shared effective transparent, contextual, comprehensible, and actionable evaluation findings to the organizational stakeholders.",
+ "Service Measurement Source": "Agency",
+ "Service Measure Target": "Agency Determined; Recommended: At Least 4",
+ "Service Measurement Frequency": "Agency Determined; Recommended: After each HC Evaluation",
+ "Service Measure Type ": "Effectiveness (Goals, Mission Benefits)",
+ "Service Measure Rationale": "5 CFR \u00a7 250.203\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "To what extent do you agree with the following statement: For the most recent HC evaluation, the service provider and/or agency evaluation team consistently produced organizational stakeholder communications that were transparent, contextual, comprehensible, and actionable. (See definitions below)\n\n\u2022 Transparent communications (i.e., service provider developed unambiguous communications and shared all findings, even when counter to expectations or goals)\n\u2022 Contextual communications (i.e., service provider included the strategic and operational context for findings in communications)\n\u2022 Comprehensible communications (i.e., service provider produced tables, graphs, charts, or other visualizations to facilitate stakeholder review)\n\u2022 Actionable communications (i.e., service provider developed guidance and/or stakeholder recommendations to aid decision-making) \n\n5-Point Agreement Scale: \n5 = Strongly Agree; 4 = Agree; 3 = Neither Agree nor Disagree; 2= Disagree; 1 = Strongly Disagree"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.040 Human Capital Evaluation Planning",
+ "Service Measure ID": "HCM.A10-1.040.M06",
+ "Service Measure Name": "Business Requirement Compliance",
+ "Service Measure Description": "Measures whether the service provider met the applicable published federal business/service requirements for this service.",
+ "Service Measurement Source": "Agency ",
+ "Service Measure Target": "Yes",
+ "Service Measurement Frequency": "Annually",
+ "Service Measure Type ": "Compliance",
+ "Service Measure Rationale": "5 CFR \u00a7 250.203\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "Has the service provider and/or agency evaluation team met the applicable published federal business/service requirements for this service? \nYes/No/Not Applicable"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.050 Human Capital Implementation & Evaluation",
+ "Service Measure ID": "HCM.A10-1.050.M01",
+ "Service Measure Name": "HC Evaluation Impact Assessment",
+ "Service Measure Description": "Measures the extent to which the service provider conducts an assesses the impact of program policies and initiatives.",
+ "Service Measurement Source": "Agency",
+ "Service Measure Target": "Agency Determined; Recommended: At Least 4",
+ "Service Measurement Frequency": "Agency Determined; Recommended: After each HC Evaluation",
+ "Service Measure Type ": "Effectiveness (Goals, Mission Benefits)",
+ "Service Measure Rationale": "5 CFR \u00a7 250.203\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "To what extent do you agree with the following statement: For the most recent HC evaluation, the service provider and/or agency evaluation team assesses the impact of program policies and strategic initiatives. \n5-Point Agreement Scale: \n5 = Strongly Agree; 4 = Agree; 3 = Neither Agree nor Disagree; 2= Disagree; 1 = Strongly Disagree"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.050 Human Capital Implementation & Evaluation",
+ "Service Measure ID": "HCM.A10-1.050.M02",
+ "Service Measure Name": "HC Evaluation Evidence Gathering",
+ "Service Measure Description": "Measures the extent to which the service provider collects or generates HC evaluation data across each of the four independent components of evidence.",
+ "Service Measurement Source": "Agency",
+ "Service Measure Target": "Agency Determined; Recommended: At Least 4",
+ "Service Measurement Frequency": "Agency Determined; Recommended: After each HC Evaluation",
+ "Service Measure Type ": "Efficiency (Timeliness, Accuracy)",
+ "Service Measure Rationale": "5 CFR \u00a7 250.203\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "For the most recent HC evaluation, to what extent has the service provider and/or agency evaluation team appropriately used evaluation data and information across each of the four sources of evidence (as applicable) listed below?\n\n\u2022 Foundational Fact Finding: foundational research and analysis, relevant indicators, descriptive statistics, and basic/exploratory research results\n\u2022 Policy Analysis: program-specific data to generate and inform program policy\n\u2022 Program Evaluation: program and agency policies, procedures, and guidance\n\u2022 Performance Measurement: ongoing, systematic tracking of data relevant to program policy and strategic initiative data \n\n5-Point Frequency Scale:\n5 = To a Very Large Extent; 4 = To a Large Extent; 3 = To a Moderate Extent; 2 = To a Small Extent; 1 = To a Very Small Extent"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.050 Human Capital Implementation & Evaluation",
+ "Service Measure ID": "HCM.A10-1.050.M03",
+ "Service Measure Name": "Employee Engagement Program Continuous Improvement",
+ "Service Measure Description": "Measures whether the employee engagement program planning and/or strategic direction documents have been regularly updated to reflect changes, shifts, or program evaluation results.",
+ "Service Measurement Source": "Agency ",
+ "Service Measure Target": "Yes or N/A",
+ "Service Measurement Frequency": "At Least Annually",
+ "Service Measure Type ": "Effectiveness (Goals, Mission Benefits)",
+ "Service Measure Rationale": "5 CFR \u00a7 250.303\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "Has the employee engagement program regularly (i.e., at least once in the past fiscal year) revised or updated employee engagement planning and/or strategic direction documents (on the basis of evidence) to reflect changes, shifts, or program evaluation results? \nYes/No/Not Applicable"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.050 Human Capital Implementation & Evaluation",
+ "Service Measure ID": "HCM.A10-1.050.M04",
+ "Service Measure Name": "HC Evaluation Data Analysis Quality Control",
+ "Service Measure Description": "Measures the extent to which the service provider conducts appropriate HC evaluation data analysis quality control.",
+ "Service Measurement Source": "Agency",
+ "Service Measure Target": "Agency Determined; Recommended: At Least 4",
+ "Service Measurement Frequency": "Agency Determined; Recommended: After each HC Evaluation",
+ "Service Measure Type ": "Efficiency (Timeliness, Accuracy)",
+ "Service Measure Rationale": "5 CFR \u00a7 250.203\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "For the most recent HC evaluation, to what extent has the service provider and/or agency evaluation team conducted appropriate data analysis quality control processes (conducted an evaluation reanalysis, cross-validated findings, etc.)? \n5-Point Frequency Scale:\n5 = To a Very Large Extent; 4 = To a Large Extent; 3 = To a Moderate Extent; 2 = To a Small Extent; 1 = To a Very Small Extent"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.050 Human Capital Implementation & Evaluation",
+ "Service Measure ID": "HCM.A10-1.050.M05",
+ "Service Measure Name": "Employee Engagement Program Communication\nEffectiveness",
+ "Service Measure Description": "Measures the extent to which the employee engagement program produces and distributes communications (ad-hoc as well as planned) aligned with leading practices.",
+ "Service Measurement Source": "Employee Engagement Program Reporting Archive/Email",
+ "Service Measure Target": "Agency Determined; Recommended: At Least 80% (i.e., at least 4 responses selected out of total 5 possible responses)",
+ "Service Measurement Frequency": "Annually",
+ "Service Measure Type ": "Efficiency (Timeliness, Accuracy)",
+ "Service Measure Rationale": "5 CFR \u00a7 250.303\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "Which of the following describe the employee engagement program communications (ad-hoc as well as planned)? Select all that apply.\n\n\u2022 Communications format and content were consistently customized for target audience relevance;\n\u2022 Communications were consistently distributed in alignment with employee engagement planning document timeframes (do not select if no specific timeframes listed in employee engagement planning documents);\n\u2022 Communications were free from significant data/information errors that required a follow-up correction communication;\n\u2022 Communications consistently contextualized status data/information (using narratives, outlining upcoming milestones, etc.);\n\u2022 Communications consistently included employee engagement program contact information for possible target audience support \n\nCalculation: \n100 * (sum of # of response options selected) / 5 (i.e., the number of total response options)\n"
+ },
+ {
+ "HCBRM Domain ": "A10",
+ "Service Function ID and Name": "HCM.A10-1 Human Capital Programmatic Evaluation",
+ "Service Activity ID and Name": "HCM.A10-1.050 Human Capital Implementation & Evaluation",
+ "Service Measure ID": "HCM.A10-1.050.M06",
+ "Service Measure Name": "Business Requirement Compliance",
+ "Service Measure Description": "Measures whether the employee engagement program has met all the applicable published federal business/service requirements for this service.",
+ "Service Measurement Source": "Agency ",
+ "Service Measure Target": "Yes",
+ "Service Measurement Frequency": "Annually",
+ "Service Measure Type ": "Compliance",
+ "Service Measure Rationale": "5 CFR \u00a7 250.302\nOPM Policy - Human Capital Framework Evaluation",
+ "Service Measurement Formula Combined with formatting": "Has the employee engagement program met the applicable published federal business/service requirements for this service? \nYes/No"
+ }
+]
\ No newline at end of file
diff --git a/json_generation/extract.py b/json_generation/extract.py
new file mode 100644
index 000000000..0b178700f
--- /dev/null
+++ b/json_generation/extract.py
@@ -0,0 +1,145 @@
+import json
+import os
+import pandas as pd
+import math
+from pandasql import sqldf
+
+"""def biz_life(df):
+ unique_func_names = df[' Function ID'].unique()
+ all_func_jsons = []
+ for name in unique_func_names:
+ filt_df = df[df[' Function ID'] == name]
+ res = filt_df[[' Activity ID', ' Activity Name', 'Activity Description']].to_dict(orient='records')
+ if not filt_df.empty:
+ id = filt_df[' Function ID'].iloc[0]
+ heading = '{}'.format(id).lower().replace('.','-')
+ for entry in res:
+ entry['Identifier'] = entry.pop(' Activity ID', None)
+ entry['Activity'] = entry.pop(' Activity Name', None)
+ entry['Description'] = entry.pop('Activity Description', None)
+ all_func_jsons.append({
+ "type":heading,
+ "data":res
+ })
+ final_json = {"Business_Lifecycle": all_func_jsons}
+ json_res = json.dumps(final_json,indent=4)
+ return json_res
+"""
+
+def biz_life(df):
+ df.columns = [col.replace('\n','').strip() for col in df.columns]
+ df.columns = df.columns.str.strip()
+ id_name = df['ServiceFunctionID and Name'].unique()
+ obj = []
+ for i in id_name:
+ i = i[:8].replace('HCM.','hcm-')
+ temp = {
+ "type": i,
+ "data": []
+ }
+ obj.append(temp)
+ _hashmap = {item["type"]: idx for idx, item in enumerate(obj)}
+ for i in range(len(df['ServiceFunctionID and Name'])):
+ category = df['ServiceFunctionID and Name'][i][:8].replace('HCM.','hcm-')
+ index = _hashmap.get(category, None)
+ desc = df["ServiceActivityDescription"][i].replace('*', '\n•')
+ temp = {
+ "Identifier" : df["ServiceActivityID"][i],
+ "Activity": df["ServiceActivityName"][i],
+ "Description": desc
+ }
+ obj[index]["data"].append(temp)
+ obj = json.dumps(obj,indent=4)
+ return obj
+
+ #print(obj2)
+ #print('new columns : \n{}, of type'.format(df.columns))
+
+
+def parse_biz_life(df):
+ lis = (df['Activity ID and Name'].to_list())
+ ids = []
+ acts = []
+ for i in range(len(lis)):
+ temp = lis[i]
+ id = temp[0:temp.rindex('0')+1]
+ activity = temp[temp.rindex('0')+2:]
+ ids.append(id)
+ acts.append(activity)
+ descs = (df['Activity Description'].to_list())
+ fin = []
+ for i in range(len(ids)):
+ temp = {
+ "Identifier": ids[i],
+ "Activity": acts[i],
+ "Description": descs[i]
+ }
+ fin.append(temp)
+ json_res = json.dumps(fin,indent=4)
+ return json_res
+
+
+def capabilities(df):
+ df.columns = [col.replace('\n','').strip() for col in df.columns]
+ df.columns = df.columns.str.strip()
+ ids = df['Capability ID'].unique()
+ obj = []
+ for i in range(len(ids)):
+ temp = {
+ "Capability ID": df['Capability ID'][i],
+ "Function": df['ServiceFunctionID and Name'][i],
+ "Activity Name": df['ServiceActivityID and Name'][i],
+ "Input/Output/Process": df['(I)nput, (P)rocess, (O)utput'][i],
+ "Business Capability Statement": df['Business Capability Statement'][i],
+ "Authoritative Reference": df['Authoritative Source 1'][i],
+ }
+ obj.append(temp)
+ obj = json.dumps(obj,indent=4)
+ return obj
+
+def business_capabilities(df):
+ df.columns = [col.replace('\n', ' ').strip() for col in df.columns]
+ df = df.map(lambda x: str(x).strip() if pd.notna(x) else "")
+ unique_capability_id = df['Capability ID'].unique()
+ all_func_jsons = []
+ print('{} total capability IDs'.format(len(unique_capability_id)))
+ for id in unique_capability_id:
+ filt_df = df[df['Capability ID'] == id]
+ res = filt_df[['Activity Name', '(I)input (P)process (O)output',
+ 'Business Capability Statement',
+ 'Authoritative Reference', 'Function Name']].to_dict(orient='records')
+ if not filt_df.empty:
+ for entry in res:
+ entry = {key: str(value).replace('\n', ' ').strip() if value is not None else "" for key, value in entry.items()}
+ if (id.lower() == 'adjusted' or id.lower()== 'new'):
+ continue
+ entry['Capability ID'] = id.strip()
+ entry['Function'] = entry.pop('Function Name', '')
+ entry['Activity Name'] = entry.pop('Activity Name', '')
+ entry['Input/Output/Process'] = entry.pop('(I)input (P)process (O)output', '')
+ entry['Business Capability Statement'] = entry.pop('Business Capability Statement', '')
+ entry['Authoritative Reference'] = entry.pop('Authoritative Reference', '')
+ all_func_jsons.append(entry)
+
+ final_json = all_func_jsons
+ json_res = json.dumps(final_json, indent=4)
+ print('now, because of the filter, we have {} entries'.format(len(final_json)))
+ return json_res
+
+def standard_data_elements(df):
+ json_out = df.to_json(orient='records')
+ json_obj = json.loads(json_out)
+ for record in json_obj:
+ for key,value in record.items():
+ if value is None:
+ record[key] = ""
+ pretty_json = json.dumps(json_obj,indent=4)
+ return pretty_json
+
+
+
+def save_file(json_output, file_name):
+ if (os.path.exists(file_name)):
+ os.remove(file_name)
+ with open(file_name,'w') as json_file:
+ json_file.write(json_output)
\ No newline at end of file
diff --git a/json_generation/life.json b/json_generation/life.json
new file mode 100644
index 000000000..e86148a91
--- /dev/null
+++ b/json_generation/life.json
@@ -0,0 +1,22 @@
+[
+ {
+ "type": "hcm-X1-1",
+ "data": [
+ {
+ "Identifier": "HCM.X1.010",
+ "Activity": "HCM.X1.010 Personnel Action Request (SF52) ",
+ "Description": "Initiating of any personnel action by the Requesting Office (RO) that is intended to create or modify an employee's record. The Personnel Action Request includes initiating, routing and approving through the agency's designated route controls and approval prior to processing the action (e.g. budget, classification, etc.).\n\nService Outcomes include but are not limited to:\n\n\u2022 Providing a streamlined PAR workflow\n\n\u2022 Personnel Action SF50 is generated to the eOPF/OPF\n\n\u2022 Outcomes will be action applied based on processing system (e.g., match, mismatch or suspense inquiry system (SINQ) errors, etc.)\n\n\u2022 Fully executed and legally sufficient SF52 Request for Personnel Action"
+ },
+ {
+ "Identifier": "HCM.X1.020",
+ "Activity": "HCM.X1.020 Personnel Action Processing ",
+ "Description": "Coding, adjudicating (quality review), and approval from the Servicing Personnel Office (SPO) to include inputting of request and supporting documentation into an HR system, that are intended to create or modify an employee's record.\n\nService Outcomes include but are not limited to:\n\n\u2022 Gives final approval of action to create the SF50\n\n\u2022 Fully approved, executed and legally compliant SF50\n\n\u2022 Accurate and timely compensation (or employee records) based on the SF50"
+ },
+ {
+ "Identifier": "HCM.X1.030",
+ "Activity": "HCM.X1.030 Personnel Action Administration",
+ "Description": "Maintaining and managing personnel action request records and supporting documentation in accordance with the Guide to Processing Personnel Actions (GPPA). Updating Official Personnel Folder with fully executed, legally sufficient, and approved SF50s, in accordance with the Guide to Personnel Recordkeeping (GPR). Generating and/or requesting managerial and organizational status reports and notifications.\n\nService Outcomes Include but are not limited to:\n\n\u2022 Creating the employees official federal service of record.\n\n\u2022 Timely and accurate documentation and reporting of PAR Processing Activity. \n\n\u2022 SF50s are automatically generated upon the successful processing of an action."
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/json_generation/main.py b/json_generation/main.py
new file mode 100644
index 000000000..ecbee71f2
--- /dev/null
+++ b/json_generation/main.py
@@ -0,0 +1,18 @@
+import pandas as pd
+from extract import biz_life, capabilities,save_file, parse_biz_life, business_capabilities, standard_data_elements
+
+def main():
+ data = 'HCM_2025/Employee Performance Management Business Capabilities List.xlsx'
+ sheet1 = 'Business Capabilities List'
+ df = pd.read_excel(data, sheet_name=sheet1)
+ print(df.columns.to_list())
+ json_out = capabilities(df)
+ #print('Check for {} entries'.format(len(json_out)))
+ file_name = 'cap.json'
+ file = open(file_name,'w')
+ file.write(json_out)
+ file.close()
+ print('Printed content out to {}'.format(file_name))
+
+if __name__ == '__main__':
+ main()
\ No newline at end of file
diff --git a/json_generation/test.json b/json_generation/test.json
new file mode 100644
index 000000000..98f93502d
--- /dev/null
+++ b/json_generation/test.json
@@ -0,0 +1,15480 @@
+[
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AccountEffectiveDate",
+ "Definition":"Indicates the date when the Treasury Account Symbol (TAS) and Business Event Type Code (BETC) became available for use.",
+ "Activity Reference":"FFM.110.010 Treasury Reporting;\r\nFFM.110.040 Financial Performance and Operational Reporting",
+ "Business Capability Reference":"FFMSR 2.3.2.1;\r\nFFMSR 2.3.2.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AccountingPeriod",
+ "Definition":"The fiscal period that the financial transaction is reflected in the general ledger accounts and reported on financial reports. Accounting period includes a four digit fiscal year and two digit fiscal month. In addition to the standard fiscal months of 01-12, the two digit fiscal month may include months 13-15 which represent adjustment periods. ",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance\r\nFFM.090.010 General Ledger Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.1.1.1",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"Program Activity Group Information",
+ "Business Information Exchange (BIE)":"FFM-GTAS BIE",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":202201,
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"USASpending.gov: Reporting_Period\r\n\r\nNOTE: The reporting year portion of Reporting_Period is derived from the last two digits of the four digit fiscal year within the AccountingPeriod. The reporting period portion is derived from the month after the AccountingPeriod (adjustment accounting periods 13, 14, and 15 are reported as period 12). "
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AccountingReportingStatus",
+ "Definition":"Represents the metadata associated with GWA reporting status.",
+ "Activity Reference":"FFM.110.010 Treasury Reporting;\r\nFFM.110.040 Financial Performance and Operational Reporting",
+ "Business Capability Reference":"FFMSR 2.3.2.1;\r\nFFMSR 2.3.2.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AccountSymbolName",
+ "Definition":"The full name of the Treasury Account Symbol (TAS).",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.1.1.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(59) OMB Circular A-11, Preparation, Submission and Execution of the Budget, Part 4, Instructions on Budget Execution, Section 150, Administrative Control of Funds",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AccrualAdjustmentAmount",
+ "Definition":"For accrual-basis accounting, the amount applied to an accrual accumulated in a prior period in order to provide more accurate and timely information for planning and control of operations and understanding of net position and cost of operations.",
+ "Activity Reference":"FFM.090.030 Accrual and Liability Processing",
+ "Business Capability Reference":"FFMSR 1.1.5.5",
+ "Authoritative and Other Reference(s)":"(100) SFFAS 7: Accounting for Revenue and Other Financing Sources and Concepts for Reconciling Budgetary and Financial Accounting",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"ACQ",
+ "Data Element Label":"AdditionalPenaltyPaymentAmount",
+ "Definition":"Amount of additional penalties owed to the vendor under the Prompt Payment Act if the late payment interest was not paid by the due date and the vendor submits a written demand for the additional penalty.",
+ "Activity Reference":"FFM.030.070 Payment Processing – Commercial Payments",
+ "Business Capability Reference":"FFMSR 2.2.2.1",
+ "Authoritative and Other Reference(s)":"Definition compiled from:\r\n(5) 31 U.S.C. 39 – Prompt Payment;\r\n(7) 5 CFR 1315, Prompt Payment: 1315.2 Definitions, 1315.7 Discounts, 1315.9 Required documentation, 1315.10 Late payment interest penalties, 1315.11 Additional penalties, and 1315.5 Accelerated payment methods",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AddressTypeCode",
+ "Definition":"The code that identifies the type of address, e.g., shipping or billing.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry; \r\n(54) FAR 4.11, System for Award Management (SAM);\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"FFM Transaction Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Billing;\r\nMailing;\r\nPhysical;\r\nShipping\r\n",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: AddressCategoryCodeSimpleType"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AdjustmentBusinessEventType",
+ "Definition":"The Business Event Type Code designated for adjustment accounting entries.",
+ "Activity Reference":"FFM.060.030 Public Receivable Credit Memo and Adjustment Processing;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.090.030 Accrual and Liability Processing;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.050 Internal Control/Compliance Reviews\r\n",
+ "Business Capability Reference":"FFMSR 1.1.5.4;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AdjustmentsToUnobligatedBalanceBroughtForward_CPE",
+ "Definition":"Changes to unpaid obligations that occurred in a prior fiscal year and that were not recorded in the unpaid obligations as of October 1 of the current fiscal year. \r\n\r\n",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: AdjustmentsToUnobligatedBalanceBroughtForward_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AdjustmentTypeCode",
+ "Definition":"The code identifying the type of change to a previous transaction.",
+ "Activity Reference":"FFM.060.030 Public Receivable Credit Memo and Adjustment Processing;\r\nFFM.060.040 Public Receipt Processing;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.090.030 Accrual and Liability Processing;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity",
+ "Business Capability Reference":"FFMSR 1.1.4.1;\r\nFFMSR 1.1.5.5;\r\nFFMSR 2.2.4.1;\r\nFFMSR 2.2.5.1;\r\n",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"A - Reclassified/Adjusted Amounts - must footnote (+ or -);\r\nB - Adjustments Due to Sale of Assets (+ or -);\r\nC - Consolidations (+ or -);\r\nD - Foreclosure Adjustments (+ or -);\r\nE - Written-Off Debts Reinstated for Collection (+)\r\n\r\nNOTE: Agencies may provide additional adjustment types, but they must be reported using one of these five values.",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AdvanceAmount",
+ "Definition":"This is the amount of the Advance for a specific transaction.",
+ "Activity Reference":"FFM.030.030 Payment Processing - Intragovernmental Payments;\r\nFFM.030.050 Payment Processing - Travel TDY and Local Payments;\r\nFFM.030.060 Payment Processing - Travel PCS Payments;\r\nFFM.030.070 Payment Processing - Commercial Payments;\r\nFFM.030.080 Payment Processing - Grant payments;\r\nFFM.030.100 Payment Processing - Other Payments (Foreign and Miscellaneous Payments);\r\nFFM.030.110 Payment Disbursement;\r\nFFM.030.120 Payment Confirmation;\r\nFFM.060.040 Public Receipt Processing;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.2.1;\r\nFFMSR 2.2.2.3;\r\nFFMSR 2.2.2.4;\r\nFFMSR 2.2.2.5;\r\nFFMSR 2.2.5.5",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AgencyBillName",
+ "Definition":"The name an agency assigns to an agency bill or invoice.",
+ "Activity Reference":"FFM.060.020 Public Receivable Setup and Billing Invoicing",
+ "Business Capability Reference":"FFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AgencyDebtIdentifier",
+ "Definition":"Contains the identification or account number assigned by the Creditor Agency to a debt within the agency's internal accounts receivable system. The debt ID is a unique identifier used to reference the debt and track the status of the account.",
+ "Activity Reference":"FFM.060.010 Payer Set-Up and Maintenance;\r\nFFM.060.040 Public Receipt Processing;\r\nFFM.070.010 Delinquent Debt Collection;\r\nFFM.070.020 Delinquent Debt Write-off and Closeout;\r\nFFM.070.030 Delinquent Debt Reporting;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity",
+ "Business Capability Reference":"FFMSR 2.2.4.1;\r\nFFMSR 2.2.5.1;\r\nFFMSR 2.2.5.7;\r\nFFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AgencyDebtorIdentifier",
+ "Definition":"A unique identifier created by a Creditor Agency used to reference a specific debtor.",
+ "Activity Reference":"FFM.060.010 Payer Set-Up and Maintenance;\r\nFFM.070.020 Delinquent Debt Write-off and Closeout;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AgencyFundCode",
+ "Definition":"A code designated by the agency to a fund. It is a shorthand code entered on transactions that enables the derivation of the account identification codes required for reporting externally to Treasury (the TAS) and OMB (the budget account) as well as the derivation of USSGL account attributes. It can be used for segregating funds that have multiple apportionment categories, or that have both discretionary and mandatory authority. ",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(8) Common Government-wide Accounting Classification Structure",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information\r\n\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Agency Defined",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AgencyIdentifier",
+ "Definition":"The Treasury Account Symbol (TAS) component that identifies the department, agency or establishment of the U.S. Government that is responsible for the TAS. Agency Identifier is also used apart from the TAS to identify a major department or independent agency of the Federal government.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov;\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information;\r\nTreasury Account Symbol (TAS) Information;\r\nProgram Activity Group Information;\r\nIntragovernmental Organization Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nFFM-DATA Act Files BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"NNN",
+ "Min Length":3,
+ "Max Length":3,
+ "Example Value":"097",
+ "Domain Values":"(129) Treasury Bureau of Fiscal Service Shared Accounting Module (SAM) Service: Treasury Account Symbol (TAS-BETC)\r\n\r\nhttps://www.fiscal.treasury.gov/sam/ ",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: AgencyIdentifier;\r\n\r\nG-Invoicing: Agency Identifier;\r\n\r\nUSASpending.gov: AGENCY_IDENTIFIER_CODE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AgencyLocationCode",
+ "Definition":"The identifier for an accounting office within an agency that reports disbursements and collections to Treasury.",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance;\r\nFFM.030.030 Payment Processing - Intragovernmental Payments;\r\nFFM.030.040 Payment Processing - Payroll Payments;\r\nFFM.030.050 Payment Processing - Travel TDY and Local Payments;\r\nFFM.030.060 Payment Processing - Travel PCS Payments;\r\nFFM.030.070 Payment Processing - Commercial Payments;\r\nFFM.030.080 Payment Processing - Grant Payments;\r\nFFM.030.090 Payment Processing - Loan Payments;\r\nFFM.030.100 Payment Processing - Other Payments;\r\nFFM.030.110 Payment Disbursement;\r\nFFM.030.120 Payment Confirmation;\r\nFFM.060.010 Payer Setup and Maintenance;\r\nFFM.060.040 Public Receipt Processing;\r\nFFM.060.080 Intragovernmental Receivable Settlement;\r\nFFM.100.030 Reconciliation with Treasury;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 1.3.1.2;\r\nFFMSR 2.2.1.1;\r\nFFMSR 2.2.1.2;\r\nFFMSR 2.2.2.3;\r\nFFMSR 2.2.4.1;\r\nFFMSR 2.2.5.5;\r\nFFMSR 2.3.1.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Organization Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(129) Treasury Bureau of Fiscal Service Shared Accounting Module (SAM) Service: Treasury Account Symbol (TAS-BETC)\r\n\r\nhttps://www.fiscal.treasury.gov/sam/ ",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Agency Location Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AgencyRefundAdjustmentAmount",
+ "Definition":"The amount the agency reports to TOP to indicate an adjustment to an offset.",
+ "Activity Reference":"FFM.060.040 Public Receipt Processing;\r\nFFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AgencyRefundReversalAmount",
+ "Definition":"The amount the agency reports to TOP to indicate reversal adjustment to an offset.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection;\r\nFFM.090.030 Accrual and Liability Processing ",
+ "Business Capability Reference":"FFMSR 1.1.5.5;\r\nFFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AgencySubObjectClass",
+ "Definition":"According to OMB Circular A-11, Section 83, \"Object classes are categories in a classification system that presents obligations by the items or services purchased by the Federal Government.\" The Budget Object Class (BOC) Information Data Group consists of four components that combine to create a 7-digit BOC. The Agency Sub-Object Class component of the BOC consists of the last three characters of the 7-digit BOC, and values are Agency-defined. Note: Some government-wide functional area standards leads are developing proposals to standardize Agency Sub-Object Class values and expand the maximum length to four characters to support consistent reporting and transparency. As these proposed standards develop, agencies may be required to use new standardized values as the Agency Sub-Object Class.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(17) OMB Circular A-11, Preparation, Submission and Execution of the Budget, Part 4, Instructions on Budget Execution",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information;\r\nBudget Object Class (BOC) Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":3,
+ "Max Length":3,
+ "Example Value":"",
+ "Domain Values":"Functional Area or Agency Defined",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AgencyTransactionIdentifier",
+ "Definition":"The identifier an agency provides for a transaction.",
+ "Activity Reference":"FFM.100.010 Reconciliation of General Ledger and Subledgers",
+ "Business Capability Reference":"FFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"FFM Transaction Information;\r\nIntragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Agency Transaction Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AgentBank",
+ "Definition":"The bank information associated with the agent or depositary that received and processed the financial data.",
+ "Activity Reference":"FFM.030.130 Payment Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AgentBankName",
+ "Definition":"The name of the agent or depositary.",
+ "Activity Reference":"FFM.030.130 Payment Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AllocationTransferAgencyIdentifier",
+ "Definition":"The Treasury Account Symbol (TAS) component that identifies the agency receiving funds through an allocation transfer.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov;\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information;\r\nTreasury Account Symbol (TAS) Information;\r\nProgram Activity Group Information;\r\nIntragovernmental Organization Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nFFM-DATA Act Files BIE;\r\nFFM-GTAS BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"020",
+ "Domain Values":"(129) Treasury Bureau of Fiscal Service Shared Accounting Module (SAM) Service: Treasury Account Symbol (TAS-BETC)\r\n\r\nhttps://www.fiscal.treasury.gov/sam/ ",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: AllocationTransferAgencyIdentifier;\r\n\r\nG-Invoicing: Allocation Transfer Agency Identifier;\r\n\r\nUSASpending.gov: ALLOCATION_TRANSFER_AGENCY_IDENTIFIER_CODE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AnticipatedIndicator",
+ "Definition":"Indicates that the transaction is expected or anticipated to occur in the current fiscal year.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance\r\nFFM.090.010 General Ledger Set-up and Maintenance;\r\n ",
+ "Business Capability Reference":"FFMSR 1.1.1.1\r\n",
+ "Authoritative and Other Reference(s)":"(27) TFM, Volume I, Supplement: United States Standard General Ledger (USSGL), Section IV, USSGL Account Attributes, Account Attribute Definition Report ",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"N - No;\r\nY - Yes",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ApportionmentCategoryB_ProgramCode",
+ "Definition":"The code representing the category A/B and B program used on the SF 132 apportionment schedule. Apportionment Category B Program Code is a four digit number that represents a line on the apportionment schedule. The category B program code is required if the apportionment category is A/B or B. Category B programs are subject to the Anti\u0002Deficiency Act.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(27) TFM, Volume I, Supplement: United States Standard General Ledger (USSGL), Section IV, USSGL Account Attributes, Account Attribute Definition Report ",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nFFM-GTAS BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ApportionmentCategoryCode",
+ "Definition":"Identifies OMB apportionments by quarters (Category A) or by other specified time periods, programs, activities, projects, objects, or combinations of these (Category B), or are not subject to apportionment (Category E).",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(17) OMB Circular A-11, Preparation, Submission, and Execution of the Budget;\r\n(27) TFM, Volume I, Supplement: United States Standard General Ledger (USSGL), Section IV, USSGL Account Attributes, Account Attribute Definition Report ",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nFFM-GTAS BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"A - Category A - Quarterly Apportionments;\r\nB - Category B - Apportionments other than quarterly;\r\nC - Category C - Only for multi-year/no-year accounts;\r\nE - Exempt from Apportionment",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AppropriationFlagCode",
+ "Definition":"Indicates if the TAS appropriation is definite or indefinite.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.1.1.1\r\n",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Definite;\r\nIndefinite",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ATB_AvailabilityTypeCode",
+ "Definition":"Identifies no-year accounts (X), clearing/suspense accounts (F), Treasury central summary general ledger accounts (A), and merged-surplus accounts (M). This data element adds a 'C' data type required for adjusted trial balance (ATB) reporting of canceled TAS assets.",
+ "Activity Reference":"FFM.090.040 Period End Closing;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity",
+ "Business Capability Reference":"FFMSR 1.1.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"A - Treasury Central Summary General Ledger Accounts;\r\nC - Canceled;\r\nF - Clearing/Suspense Accounts;\r\nM - Merged-Surplus Accounts;\r\nX - No-Year Accounts",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ATB_TreasuryAccountSymbol",
+ "Definition":"The Treasury Account Symbol is an identification code assigned by Treasury, in collaboration with OMB and the owner agency, to an individual appropriation, receipt, or other fund account. (These accounts are defined in I TFM 2-1500.) This data container adds a 'C' availability type code required for adjusted trial balance (ATB) reporting.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance\r\n",
+ "Business Capability Reference":"FFMSR 2.1.1.1\r\n",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AuthorityDurationCode",
+ "Definition":"Indicates whether a TAS is an annual year account (A), multiyear account (M), receipt account (R), clearing/suspense account (F), no-year account (X), or canceled account (C).",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance\r\n",
+ "Business Capability Reference":"FFMSR 2.1.1.1\r\n",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"A - Annual Year Account;\r\nC - Canceled Account;\r\nF - Clearing/Suspense Account;\r\nM - Multi-year Account;\r\nX - No-year Account",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AuthorityTypeCode",
+ "Definition":"Distinguishes among the types of budgetary resources, where it is not possible to do so by the USSGL Account Number Code. For example, the USSGL rescission accounts (USSGL accounts 4392 and 4393) do not distinguish between rescissions of appropriations or contract authority.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance\r\n",
+ "Business Capability Reference":"FFMSR 2.1.1.1\r\n",
+ "Authoritative and Other Reference(s)":"(27) TFM, Volume I, Supplement: United States Standard General Ledger (USSGL), Section IV, USSGL Account Attributes, Account Attribute Definition Report ",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-GTAS BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"B - Borrowing Authority;\r\nC - Contract Authority;\r\nD - Advance Appropriation;\r\nE - Appropriation (Advance Funding) available in Prior Year;\r\nF - Appropriation (Advance Funding) available from Subsequent Year;\r\nP - Appropriation (excluding Advance Funding);\r\nR - Reappropriation;\r\nS - Spending Authority from Offsetting Collections;\r\nX - Transfer of Borrowing Authority Converted to Cash",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AvailabilityTimeIndicator",
+ "Definition":"Indicates whether a budgetary resource is available for new obligations in the current period, or in a subsequent period within the current fiscal year or after being reapportioned in a future fiscal year.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance\r\n",
+ "Business Capability Reference":"FFMSR 2.1.1.1\r\n",
+ "Authoritative and Other Reference(s)":"(27) TFM, Volume I, Supplement: United States Standard General Ledger (USSGL), Section IV, USSGL Account Attributes, Account Attribute Definition Report ",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-GTAS BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"A - Available in current period;\r\nS - Available in subsequent period",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"AvailabilityTypeCode",
+ "Definition":"The Treasury Account Symbol (TAS) component that identifies no-year accounts (X), clearing/suspense accounts (F), Treasury central summary general ledger accounts (A), and merged-surplus accounts (M).",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(17) OMB Circular A-11, Preparation, Submission, and Execution of the Budget\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information;\r\nTreasury Account Symbol (TAS) Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nFFM-DATA Act Files BIE;\r\nFFM-GTAS BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"X",
+ "Domain Values":"A - Treasury central summary general ledger accunts;\r\nF - Clearing/suspense accounts;\r\nM - Merged-surplus accounts;\r\nX - No-year accounts\r\n",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: AvailabilityTypeCode"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BalanceOfDebtEligibleForReferralToTreasuryForCollectionAmount",
+ "Definition":"Balance of debt eligible for referral to Treasury for collection. ",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Bank2Identifier",
+ "Definition":"A code established by international standard (ISO 9362). It provides an identifier for institutions within the financial services industry to facilitate automated processing of telecommunication messages in banking and related financial transaction environments. \r\n\r\nNOTE: ISO refers to this as the Business Identifier Code or BIC. ",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information;\r\nBanking Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"(42) SWIFT.com - Developer APIs\r\n\r\nUse SWIFT API because they are the ISO registration authority: https://developer.swift.com/apis ",
+ "Related Data Element Reference(s)":"Common: BankIdentifier;\r\n\r\nISO 9362: Business Identifier Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Bank2Name",
+ "Definition":"The name of the financial institution.",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information;\r\nBanking Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"(42) SWIFT.com - Developer APIs;\r\n(43) LexisNexis Risk Solutions, Official ABA Registrar\r\n\r\nIf validating using the SWIFT code, use SWIFT API because they are the ISO registration authority: https://developer.swift.com/apis \r\n\r\nIf validating using the Routing Transit Number, use LexisNexis Risk Solutions because they are ABA's Official Routing Number registrar: https://risk.lexisnexis.com/insights-resources/article/official-aba-registrar",
+ "Related Data Element Reference(s)":"Common: BankName;\r\n\r\nGSA SAM: FINANCIAL INSTITUTE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Bank3Identifier",
+ "Definition":"A code established by international standard (ISO 9362). It provides an identifier for institutions within the financial services industry to facilitate automated processing of telecommunication messages in banking and related financial transaction environments. \r\n\r\nNOTE: ISO refers to this as the Business Identifier Code or BIC. ",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information;\r\nBanking Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"(42) SWIFT.com - Developer APIs\r\n\r\nUse SWIFT API because they are the ISO registration authority: https://developer.swift.com/apis ",
+ "Related Data Element Reference(s)":"Common: BankIdentifier;\r\n\r\nISO 9362: Business Identifier Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Bank3Name",
+ "Definition":"The name of the financial institution.",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information;\r\nBanking Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"(42) SWIFT.com - Developer APIs;\r\n(43) LexisNexis Risk Solutions, Official ABA Registrar\r\n\r\nIf validating using the SWIFT code, use SWIFT API because they are the ISO registration authority: https://developer.swift.com/apis \r\n\r\nIf validating using the Routing Transit Number, use LexisNexis Risk Solutions because they are ABA's Official Routing Number registrar: https://risk.lexisnexis.com/insights-resources/article/official-aba-registrar",
+ "Related Data Element Reference(s)":"Common: BankName;\r\n\r\nGSA SAM: FINANCIAL INSTITUTE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BankAccount2TypeCode",
+ "Definition":"The code that identifies the type of account associated with the transaction, such as checking or savings.",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information;\r\nBanking Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Checking;\r\nSavings",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: BankAccountTypeCode;\r\n\r\nGSA SAM: ACCOUNT TYPE\r\n\r\n"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BankAccount3TypeCode",
+ "Definition":"The code that identifies the type of account associated with the transaction, such as checking or savings.",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information;\r\nBanking Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Checking;\r\nSavings",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: BankAccountTypeCode;\r\n\r\nGSA SAM: ACCOUNT TYPE\r\n\r\n"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BankAccountTypeCode",
+ "Definition":"The code that identifies the type of account associated with the transaction, such as checking or savings.",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information;\r\nBanking Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Checking;\r\nSavings",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: BankAccountTypeCode;\r\n\r\nGSA SAM: ACCOUNT TYPE\r\n\r\n"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BankIdentifier",
+ "Definition":"A code established by international standard (ISO 9362). It provides an identifier for institutions within the financial services industry to facilitate automated processing of telecommunication messages in banking and related financial transaction environments. \r\n\r\nNOTE: ISO refers to this as the Business Identifier Code or BIC. ",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information;\r\nBanking Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"(42) SWIFT.com - Developer APIs\r\n\r\nUse SWIFT API because they are the ISO registration authority: https://developer.swift.com/apis ",
+ "Related Data Element Reference(s)":"Common: BankIdentifier;\r\n\r\nISO 9362: Business Identifier Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BankName",
+ "Definition":"The name of the financial institution.",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information;\r\nBanking Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"(42) SWIFT.com - Developer APIs;\r\n(43) LexisNexis Risk Solutions, Official ABA Registrar\r\n\r\nIf validating using the SWIFT code, use SWIFT API because they are the ISO registration authority: https://developer.swift.com/apis \r\n\r\nIf validating using the Routing Transit Number, use LexisNexis Risk Solutions because they are ABA's Official Routing Number registrar: https://risk.lexisnexis.com/insights-resources/article/official-aba-registrar",
+ "Related Data Element Reference(s)":"Common: BankName;\r\n\r\nGSA SAM: FINANCIAL INSTITUTE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BEA_CategoryIndicator",
+ "Definition":"Indicates whether the Budget Enforcement Act (BEA) category is mandatory or discretionary.",
+ "Activity Reference":"FFM.010.010 Budget Set Up and Maintenance\r\nFFM.090.010 General Ledger Set-up and Maintenance;\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3;\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(27) TFM, Volume I, Supplement: United States Standard General Ledger (USSGL), Section IV, USSGL Account Attributes, Account Attribute Definition Report; \r\n(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-GTAS BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"D - Discretionary;\r\nM - Mandatory",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BeginEndIndicator",
+ "Definition":"Indicates whether the balance of an USSGL account/attribute combination is at the start of the fiscal year or at the end of a period.",
+ "Activity Reference":"FFM.090.010 General Ledger Set-up and Maintenance;",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.1.2\r\n",
+ "Authoritative and Other Reference(s)":"(27) TFM, Volume I, Supplement: United States Standard General Ledger (USSGL), Section IV, USSGL Account Attributes, Account Attribute Definition Report ",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-GTAS BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"B - Beginning Balance;\r\nE - Ending Balance",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BeginningPeriodOfAvailability",
+ "Definition":"In annual and multi-year funds, the beginning period of availability identifies the first year of availability under law that an appropriation account may incur new obligations.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(17) OMB Circular A-11, Preparation, Submission, and Execution of the Budget\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information;\r\nTreasury Account Symbol (TAS) Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nFFM-DATA Act Files BIE;\r\nFFM-GTAS BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":4,
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: BeginningPeriodOfAvailability"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BillAccountNumber",
+ "Definition":"The account number that links the instance of a bill to a user. Account numbers control which bills a user can view, update, and pay.",
+ "Activity Reference":"FFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"FFMSR 1.1.5.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BillDate",
+ "Definition":"The date a bill instance is created for an Agency cash flow.",
+ "Activity Reference":"FFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"FFMSR 1.1.5.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BillingInvoiceStatus",
+ "Definition":"This indicates the status of the Billing Invoice. Example would be 'At Cross Servicing' which indicates the Billing Invoice has been referred to CSNG for collections.",
+ "Activity Reference":"FFM.060.020 Public Receivable Receipt Processing",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"A - At Agency;\r\nB - At Third Party;\r\nC - Asset Sales;\r\nD - Collections by Treasury through Offset and Cross-Servicing;\r\nE - Collections by Sale After Foreclosure;\r\nF - Collections by Department of Justice;\r\nG - Other",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BorrowingAuthorityAmountTotal_CPE",
+ "Definition":"Borrowing authority is a type of budget authority that permits obligations and outlays to be financed by borrowing. \r\n\r\n\r\n",
+ "Activity Reference":"FFM.010.030 Budgetary Reporting",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: BorrowingAuthorityAmountTotal_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BorrowingAuthorityFromPublicCode",
+ "Definition":"Indicates whether the TAS has the authority to borrow from the public. Borrowing authority from the public is a form of budget authority provided in law that authorizes obligations and outlays to be financed by borrowing from the Public.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance\r\n",
+ "Business Capability Reference":"FFMSR 2.1.1.1",
+ "Authoritative and Other Reference(s)":"(27) TFM, Volume I, Supplement: United States Standard General Ledger (USSGL), Section IV, USSGL Account Attributes, Account Attribute Definition Report; \r\n(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry\r\n",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"D - Definite;\r\nI - Indefinite;\r\nM - Mixed;\r\nN - Null",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BorrowingAuthorityFromTreasuryCode",
+ "Definition":"Indicates whether the TAS has the authority to borrow from Treasury. Borrowing authority from Treasury is a form of budget authority provided in law that authorizes obligations and outlays to be financed by borrowing from the Treasury.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance\r\n",
+ "Business Capability Reference":"FFMSR 2.1.1.1",
+ "Authoritative and Other Reference(s)":"(27) TFM, Volume I, Supplement: United States Standard General Ledger (USSGL), Section IV, USSGL Account Attributes, Account Attribute Definition Report; \r\n(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"D - Definite;\r\nI - Indefinite;\r\nM - Mixed;\r\nN - Null",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BorrowingSourceCode",
+ "Definition":"Indicates whether borrowing took place from the public, Treasury, or a Federal financing bank.",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control;\r\nFFM.090.010 General Ledger Set-up and Maintenance;\r\nFFM.090.030 Accrual and Liability Processing;\r\nFFM.090.040 Period End Closing;\r\nFFM.100.010 Reconciliation of General Ledger and Sub-ledgers;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.030 Cash Forecasting and Reporting\r\n ",
+ "Business Capability Reference":"FFMSR 1.1.1.3;\r\nFFMSR 1.1.2.1;\r\nFFMSR 1.1.5.4;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.1.2.3;\r\nFFMSR 2.2.2.6;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(27) TFM, Volume I, Supplement: United States Standard General Ledger (USSGL), Section IV, USSGL Account Attributes, Account Attribute Definition Report; ",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-GTAS BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"F - Federal Financing Bank;\r\nP - Public;\r\nT - Treasury",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BudgetAccountCode",
+ "Definition":"A budget account generally covers an organized set of activities, programs, or services directed toward a common purpose or goal. Used in conjunction with the Agency Identifier and the Budget Bureau Code, uniquely represents a budget account, which is an administrative or functional subdivision of an agency and sometimes a budget bureau. This is generally the same code as the Main Account code shown as part of the TAS unless it represents a consolidated account (more than one TAS).",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control;\r\nFFM.100.030 Reconciliation with Treasury;\r\nFFM.110.010 Treasury Reporting\r\n",
+ "Business Capability Reference":"FFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.1.1.3;\r\nFFMSR 2.3.1.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BudgetAgencyCode",
+ "Definition":"Identifies a department, agency or establishment of the U.S. Government that is responsible for the budget account.",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control;\r\nFFM.100.030 Reconciliation with Treasury;\r\nFFM.110.010 Treasury Reporting",
+ "Business Capability Reference":"FFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.1.1.3;\r\nFFMSR 2.3.1.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BudgetAllotmentAmount",
+ "Definition":"A subdivision of an apportionment that is made by the head of an agency.",
+ "Activity Reference":"FFM.010.010 Budget Set-Up and Maintenance \r\n",
+ "Business Capability Reference":"FFMSR 2.1.1.1",
+ "Authoritative and Other Reference(s)":"(19) OMB Circular A-11, Appendix H, Checklist for Fund Control Regulations, Section 4: Definitions, Terminology, and Concepts",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BudgetaryImpactIndicator",
+ "Definition":"Indicates whether financing resources and non-exchange revenue have an impact on the budget.",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control;\r\nFFM.040.020 Revenue Reporting;\r\nFFM.060.040 Public Credit Memo and Adjustment Processing;\r\nFFM.090.010 General Ledger Set-up and Maintenance;\r\nFFM.090.030 Accrual and Liability Processing;\r\nFFM.090.040 Period End Closing;\r\nFFM.110.030 Cash Forecasting and Reporting\r\n ",
+ "Business Capability Reference":"FFMSR 1.1.1.3;\r\nFFMSR 1.1.2.1;\r\nFFMSR 1.1.5.4;\r\nFFMSR 1.1.5.5;\r\nFFMSR 2.1.2.3;\r\nFFMSR 2.2.2.6",
+ "Authoritative and Other Reference(s)":"(27) TFM, Volume I, Supplement: United States Standard General Ledger (USSGL), Section IV, USSGL Account Attributes, Account Attribute Definition Report",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-GTAS BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"D - Budgetary Impact;\r\nE - Non-Budgetary Impact",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BudgetaryProprietaryCode",
+ "Definition":"Indicates if a USSGL account is reported on a budgetary, proprietary statement or both. For example, USSGL account 161000 Investments in U.S. Treasury Securities Issued by the Bureau of the Fiscal Service is reported on the Balance Sheet and the Schedule P. USSGL account 161000 domain value will be A.",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control;\r\nFFM.090.010 General Ledger Set-up and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.090.030 Accrual and Liability Processing;\r\nFFM.090.040 Period End Closing;\r\nFFM.100.010 Reconciliation of General Ledger and Sub-ledgers;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity;\r\nFFM.100.030 Reconciliation with Treasury;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.030 Cash Forecasting and Reporting\r\n ",
+ "Business Capability Reference":"FFMSR 1.1.1.2;\r\nFFMSR 1.1.1.3;\r\nFFMSR 1.1.2.1;\r\nFFMSR 1.1.5.4;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.1.2.3;\r\nFFMSR 2.2.2.6;\r\nFFMSR 2.3.1.1;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(27) TFM, Volume I, Supplement: United States Standard General Ledger (USSGL), Section IV, USSGL Account Attributes, Account Attribute Definition Report",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"A - Both Budgetary and Proprietary;\r\nB - Budgetary;\r\nP - Proprietary",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BudgetAuthorityAppropriatedAmount_CPE",
+ "Definition":"Appropriation means a provision of law (not necessarily in an appropriations act) authorizing the expenditure of funds for a given purpose. Usually, but not always, an appropriation provides budget authority.",
+ "Activity Reference":"FFM.010.030 Budgetary Reporting",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: BudgetAuthorityAppropriatedAmount_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BudgetAuthorityUnobligatedBalanceBroughtForward_FYB",
+ "Definition":"For unexpired accounts: Amount of unobligated balance of appropriations or other budgetary resources carried forward from the preceding year and available for obligation without new action by Congress. For expired accounts: Amount of expired unobligated balances available for upward adjustments of obligations. ",
+ "Activity Reference":"FFM.010.030 Budgetary Reporting",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: BudgetAuthorityUnobligatedBalanceBroughtForward_FYB"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BudgetBureauCode",
+ "Definition":"The Office of Management and Budget code that identifies a major sub-organization of the agency, sometimes called an administration, service, or agency. (Not all agencies have bureaus.)",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.040 Financial Performance and Operational Reporting",
+ "Business Capability Reference":"FFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.3.1.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BudgetFiscalYear",
+ "Definition":"The fiscal year associated with the funding that is committed, obligated, or expended.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(8) Common Government-wide Accounting Classification Structure; \r\n(59) OMB Circular A-11, Preparation, Submission and Execution of the Budget, Part 4, Instructions on Budget Execution, Section 150, Administrative Control of Funds.",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nFFM-GTAS BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"NNNN",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":2020,
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BudgetMainAccountCode",
+ "Definition":"Generally covers an organized set of activities, programs, or services directed toward a common purpose or goal. Used in conjunction with the Agency Identifier and the Budget Bureau code, uniquely represents a budget account, which is an administrative or functional subdivision of an agency and sometimes a budget bureau.",
+ "Activity Reference":"FFM.010.010 Budget Set-Up and Maintenance ;\r\nFFM.100.030 Reconciliation with Treasury;\r\nFFM.110.010 Treasury Reporting",
+ "Business Capability Reference":"FFMSR 2.1.1.1;\r\nFFMSR 2.3.1.1",
+ "Authoritative and Other Reference(s)":"(19) OMB Circular A-11, Appendix H, Checklist for Fund Control Regulations, Section 4: Definitions, Terminology, and Concepts;\r\n(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BudgetSubAllotmentAmount",
+ "Definition":"A subdivision of an allotment.",
+ "Activity Reference":"FFM.010.010 Budget Set-Up and Maintenance \r\n",
+ "Business Capability Reference":"FFMSR 2.1.1.1",
+ "Authoritative and Other Reference(s)":"(19) OMB Circular A-11, Appendix H, Checklist for Fund Control Regulations, Section 4: Definitions, Terminology, and Concepts",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BudgetSubfunctionIdentifier",
+ "Definition":"OMB assigns each expenditure and offsetting receipt account a three-digit code that corresponds to the account's sub-functional classification (e.g., national defense, income security, agriculture). Annually, OMB consults with CBO and other relevant budget and appropriation committee staff members regarding functional and sub-functional classification. This process, which is required by statute, typically occurs from October through December.",
+ "Activity Reference":"FFM.010.010 Budget Set-Up and Maintenance \r\n",
+ "Business Capability Reference":"FFMSR 2.1.1.1",
+ "Authoritative and Other Reference(s)":"(19) OMB Circular A-11, Appendix H, Checklist for Fund Control Regulations, Section 4: Definitions, Terminology, and Concepts;\r\n(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BusinessEventTypeCode",
+ "Definition":"The type of activity (gross disbursement, offsetting collection, investment in Treasury securities, etc.) and the effect of a transaction on the Fund Balance With Treasury (FBWT). BETC is used in combination with the Treasury Account Symbol (TAS) to classify transactions reported to Treasury through all Governmentwide Accounting (GWA-compliant) Financial Management Systems.",
+ "Activity Reference":"FFM.090.030 Accrual and Liability Processing;\r\nFFM.090.040 Period End Closing;\r\nFFM.100.010 Reconciliation of General Ledger and Sub-ledgers;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity;\r\nFFM.100.030 Reconciliation with Treasury;\r\nFFM.110.010 Treasury Reporting",
+ "Business Capability Reference":"FFMSR 1.1.2.1;\r\nFFMSR 1.1.4.1;\r\nFFMSR 1.1.4.3;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.3.1.1;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(130) Treasury Bureau of Fiscal Service, BETC Guidance\r\n\r\n https://www.fiscal.treasury.gov/files/cars/betc-guidance.xlsx ",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BusinessEventTypeName",
+ "Definition":"The name associated with a Business Event Type Code value.",
+ "Activity Reference":"FFM.110.010 Treasury Reporting",
+ "Business Capability Reference":"FFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BusinessEventTypeRecord",
+ "Definition":"One to many BETCs corresponding to a particular TAS.",
+ "Activity Reference":"FFM.110.010 Treasury Reporting;\r\n",
+ "Business Capability Reference":"FFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BusinessTransaction",
+ "Definition":"The container for items associated with a business transactions. Equivalent to a remittance, which is a paper document that is directly matched to a financial transaction(s). It can be a paper coupon, invoice, bill, or form. A single remittance can be multiple pages. Electronically received information is not a remittance.",
+ "Activity Reference":"FFM.030.020 Obligation Management; \r\nFFM.060.040 Public Receipt Processing",
+ "Business Capability Reference":"FFMSR 2.2.5.1 ",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BusinessTransactionTypeCode",
+ "Definition":"Indicates whether this record is either a Payment, Collection, Intragovernmental Payment and Collection (IPC), or Non-Treasury Disbursing Office (NTDO) Payment.",
+ "Activity Reference":"FFM.030.030 Payment Processing - Intragovernmental Payments;\r\nFFM.030.040 Payment Processing - Payroll Payments;\r\nFFM.030.050 Payment Processing - Travel TDY and Local Payments;\r\nFFM.030.060 Payment Processing - Travel PCS Payments;\r\nFFM.030.070 Payment Processing - Commercial Payments;\r\nFFM.030.080 Payment Processing - Grant Payments;\r\nFFM.030.090 Payment Processing - Loan Payments;\r\nFFM.030.100 Payment Processing - Other Payments (Foreign and Miscellaneous Payments);\r\nFFM.090.030 Accrual and Liability Processing;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity;\r\nFFM.110.010 Treasury Reporting;\r\n",
+ "Business Capability Reference":"FFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.1.2.1;\r\nFFMSR 2.2.1.4;\r\nFFMSR 2.2.2.6",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Payment;\r\nCollection;\r\nIPC (Intragovernmental Payments and Collections);\r\nNTDOPMT (Non-Treasury Disbursing Office (NTDO) Payment)",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ByDirectReimbursableFundingSource",
+ "Definition":"Holds an attribute flag which specifies that the funding source of the associated data value is either a Direct or Reimbursable Funding Source.",
+ "Activity Reference":"FFM.010.010 Budget Set-Up and Maintenance;\r\nFFM.090.030 Accrual and Liability Processing;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity",
+ "Business Capability Reference":"FFMSR 1.2.1.1;\r\nFFMSR 2.1.1.1",
+ "Authoritative and Other Reference(s)":"(33) DATA Act Information Model Schema (DAIMS);;\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"R",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: ByDirectReimbursableFundingSource"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"BypassIndicatorCode",
+ "Definition":"Identifies which payment types Treasury Offset Program (TOP) should bypass. ",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CertifyingOfficer",
+ "Definition":"Information about the certifying officer for a payment schedule.",
+ "Activity Reference":"FFM.030.030 Payment Processing - Intragovernmental Payments;\r\nFFM.030.040 Payment Processing - Payroll Payments;\r\nFFM.030.050 Payment Processing - Travel TDY and Local Payments;\r\nFFM.030.060 Payment Processing - Travel PCS Payments;\r\nFFM.030.070 Payment Processing - Commercial Payments;\r\nFFM.030.080 Payment Processing - Grant Payments;\r\nFFM.030.090 Payment Processing - Loan Payments;\r\nFFM.030.100 Payment Processing - Other Payments (Foreign and Miscellaneous Payments);\r\nFFM.030.110 Payment Disbursement;\r\nFFM.030.120 Payment Confirmation;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.2.3",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ChangeType",
+ "Definition":"Populated only for Partner Profiles requesting Reference Data changes to be distributed, Action is the reason for the change (e.g., new, modify).",
+ "Activity Reference":"FFM.100.010 Reconciliation of General Ledger and Sub-ledgers",
+ "Business Capability Reference":"FFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Deleted;\r\nExpired;\r\nModified;\r\nNew",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ChannelReceiptDate",
+ "Definition":"The date that an agent or depositary receives a transaction.",
+ "Activity Reference":"FFM.030.130 Payment Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.3.1;\r\nFFMSR 2.2.3.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Chapter",
+ "Definition":"Chapter used in the Treasury Combined Statement to represent a reporting agency.",
+ "Activity Reference":"FFM.010.010 Treasury Reporting\r\n",
+ "Business Capability Reference":"FFMSR 1.3.1.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ChargeBackRecordNumber",
+ "Definition":"The number assigned to any single customer transaction that is questioned, used to relate all disputes and subsequent records.",
+ "Activity Reference":"FFM.060.030 Public Receivable Credit Memo and Adjustment Processing;\r\nFFM.060.080 Intragovernmental Receivable Settlement;\r\nFFM.090.030 Accrual and Liability Processing",
+ "Business Capability Reference":"\r\nFFMSR 1.1.5.4;\r\nFFMSR 2.2.4.3",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CheckAccountingMonthAndYear",
+ "Definition":"The accounting month under which the check issues in the batch will be reported to Governmentwide Accounting (GWA).",
+ "Activity Reference":"FFM.030.130 Payment Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.3.1;\r\nFFMSR 2.2.3.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CNC_DebtsClosedOutDuringCurrentFiscalYearAmount",
+ "Definition":"CNC Debts Closed Out During the Current FY: The cumulative dollar amount of CNC debts for which collection action has been terminated. These debts have been removed from the CNC category and closed out during the current fiscal year.",
+ "Activity Reference":"FFM.070.020 Delinquent Debt Write-off and Close-out",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionCount",
+ "Definition":"The total number of collection items.",
+ "Activity Reference":"FFM.060.030 Public Receipt Processing \r\n",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionReportingClassification",
+ "Definition":"Contains the capability to capture deposit reporting information for Collection transactions which contain GWA Classification Data identified as valid Treasury Account Symbols and Business Event Type Codes (TAS/BETC) and/or Classification Keys (Ckey), which impact the Fund Balance with Treasury (FBWT).",
+ "Activity Reference":"FFM.060.030 Public Receipt Processing; FFM.100.010 Reconciliation of General Ledger and Sub-ledgers;\r\nFFM.100.030 Reconciliation with Treasury;\r\nFFM.110.010 Treasury Reporting ",
+ "Business Capability Reference":"FFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.3.1.1;\r\nFFMSR 2.3.2.1;\r\nFFMSR 2.2.5.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsAccountNumber",
+ "Definition":"The six-digit identifier representing a Central Accounts Receivable System (CARS) account profile that includes a legacy CA$HLINK account type, routing number (RTN), deposit account, deposit funds availability, and cost code information, as well as potentially other factors.",
+ "Activity Reference":"FFM.060.010 Payer Set-Up and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsBusinessDate",
+ "Definition":"The date that collections information is centralized in a data repository prior to subsequent reporting.",
+ "Activity Reference":"FFM.060.060 Public Receivable Collection and Reporting;\r\n",
+ "Business Capability Reference":"FFMSR 2.2.4.1;\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsOnDelinquentDebtByAgencyAmount",
+ "Definition":"By Agency: The dollar amount of delinquent debts worked and collected at the agency.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsOnDelinquentDebtByAssetSalesAmount",
+ "Definition":"By Asset Sales: The dollar amount of proceeds realized from the sale of delinquent loans or debts. This does not include liquidation of collateral.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsOnDelinquentDebtByInternalOffsetAmount",
+ "Definition":"By Internal Offset: The dollar amount of delinquent debts collected through internal offset. An internal offset occurs when an agency collects by offsetting payments made or due to the delinquent debtor by that same agency.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsOnDelinquentDebtByLitigationAmount",
+ "Definition":"By Litigation: The dollar amount of delinquent debts collected through litigation. Include judicial foreclosure, bankruptcy, cash and non-monetary settlements.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsOnDelinquentDebtByPrivateCollectionAgenciesAmount",
+ "Definition":"By Private Collection Agencies: The dollar amount of delinquent debts collected by private collection agencies under contract with the agency. Do not include collections by private collection agencies under contract with Fiscal Service or a Designated Debt Collection Center--report these collections in line 1G of this section.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsOnDelinquentDebtByThirdPartyAmount",
+ "Definition":"By Third Party: The dollar amount of delinquent debts collected by a third party, other than the Department of Justice or a private collection agency, such as a guaranty agency.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsOnDelinquentDebtByTreasuryOffsetAmount",
+ "Definition":"By Treasury Offset: The dollar amount of delinquent debts collected through the Treasury Offset Program for those debts referred directly to TOP by the agency.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsOnDelinquentDebtByTreasuryOrDesignatedDebtCollectionCenterCrossServicingAmount",
+ "Definition":"By Treasury/Designated Debt Collection Center Cross-Servicing: The dollar amount of delinquent debts collected by Fiscal Service or other Designated Debt Collection Center Cross-Servicing Programs. Report total collections received through cross-servicing, regardless of the collection tool utilized.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsOnDelinquentDebtByWageGarnishmentAmount",
+ "Definition":"By Wage Garnishment: The dollar amount of delinquent debts collected from garnishment of non-Federal wages. Do not include Federal employee salary offsets collections on this line; Federal employee salary offsets are collected through the Treasury Offset Program. These collections should be reported in line 1H of this section.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsOnDelinquentDebtOtherAmount",
+ "Definition":"Other: The dollar amount of delinquent debts collected by management tools or techniques not represented in lines 1A through 1I of this section. Footnote all amounts reported on this line to identify the collection method used.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsOnDelinquentDebtOtherAmountNoteText",
+ "Definition":"Note representing the explanation referencing the use of the line item. (Other: The dollar amount of delinquent debts collected by management tools or techniques not represented in lines 1A through 1I of this section. Footnote all amounts reported on this line to identify the collection method used.)",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsOnDelinquentDebtOtherNumberNoteText",
+ "Definition":"Note representing the explanation referencing the use of the line item. (Other: The number of delinquent debts collected by management tools or techniques not represented in lines 1A through 1I of this section. Footnote all amounts reported on this line to identify the collection method used.)",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsOnDelinquentDebtTotalAmount",
+ "Definition":"Total Collections on Delinquent Debt: The cumulative dollar amount of \"Total Collections on Delinquent Debt\" on this line equals the sum of lines 1A through 1J of this section and is system generated.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsOnReceivablesAmount",
+ "Definition":"Collections on Receivables: The dollar amount of collections on all debts, including delinquent, non-delinquent, restored and written-off debts, during the fiscal year. Enter collections with a minus (-) sign before the figures. Footnote non-cash collections (for example, personal property or services rendered). The total dollar amount equals the sum of lines 4A through 4G of this section and is system generated.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\n",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsOnReceivablesAssetSalesAmount",
+ "Definition":"Asset Sales: The dollar amount of proceeds realized from the sale of a loan or debt. Do not include sales of secured property in this section. Include collections from sales of secured property in line 4E below.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\n",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsOnReceivablesAtAgencyAmount",
+ "Definition":"At Agency: The dollar amount for both delinquent and non-delinquent debts worked and collected at the agency.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\n",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsOnReceivablesAtThirdPartyAmount",
+ "Definition":"At Third Party: The dollar amount for both delinquent and non-delinquent debts collected by a third party other than the Department of Justice or private collection agency, such as a guaranty agency.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\n",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsOnReceivablesByDepartmentOfJusticeAmount",
+ "Definition":"Collections by Department of Justice: The dollar amount of collections received by the Department of Justice from enforced collection action.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\n",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsOnReceivablesBySaleAfterForeclosureAmount",
+ "Definition":"Collections by Sale After Foreclosure: The dollar amount of proceeds collected after the sale of secured property through foreclosure.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\n",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsOnReceivablesByTreasuryThroughOffsetAndCrossServicingAmount",
+ "Definition":"Collections by Treasury through Offset and Cross-Servicing: The dollar amount of collections received through the Treasury Offset Program or Fiscal Service Cross-Servicing. Collections from Fiscal Service Cross-Servicing include collections through the Treasury Offset Program, Fiscal Service's private collection agencies, administrative wage garnishments processed by Treasury and any other collections the creditor agency receives while a debt is at cross-servicing at Fiscal Service.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\n",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsOnReceivablesOtherAmount",
+ "Definition":"Other: The dollar amount of all other collections, for both delinquent and non-delinquent debts, not recorded in lines 4A through 4F of this section. Other collection tools or techniques include, but are not limited to, wage garnishment orders issued directly by the agency, private collection agencies (other than through Fiscal Service Cross-Servicing) and designated debt collection centers. Footnote amounts reported on this line to identify the method of collection.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\n",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsStatusCode",
+ "Definition":"The code that denotes the status of a transaction; i.e., where it is in its lifecycle.",
+ "Activity Reference":"FFM.060.050 Public Receivable Monitoring and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Cancelled;\r\nIn-Process;\r\nReceived;\r\nRejected;\r\nRetired;\r\nSettled;\r\nUnknown",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CollectionsTransactionType",
+ "Definition":"The high-level categorization that identifies the type of transaction activity the financial transaction represents.",
+ "Activity Reference":"FFM.060.040 Public Receipt Processing;\r\n",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Adjustment;\r\nChargeback;\r\nCollection;\r\nCorrection;\r\nInformational;\r\nRe-presentment;\r\nReturn/Reversal;\r\nUnknown",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CommercialBankIndicator",
+ "Definition":"The indicator denoting whether the item was settled through a commercial depositary.",
+ "Activity Reference":"FFM.030.130 Payment Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.3.1;\r\nFFMSR 2.2.3.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ConsularCode",
+ "Definition":"The predefined code used between Treasury and USPS for mailing bulk check shipments to non-US countries via the consulate.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ContractAuthorityAmountTotal_CPE",
+ "Definition":"Contract authority is a type of budget authority that permits you to incur obligations in advance of an appropriation, offsetting collections, or receipts to make outlays to liquidate the obligations. Typically, the Congress provides contract authority in an authorizing statute to allow you to incur obligations in anticipation of the collection of receipts or offsetting collections that will be used to liquidate the obligations. ",
+ "Activity Reference":"FFM.010.030 Budgetary Reporting",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: ContractAuthorityAmountTotal_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ContractAuthorityCode",
+ "Definition":"Indicates whether the TAS has contract authority. Contract authority is a form of budget authority provided in authorizing laws that permit a TAS to incur obligations in advance of an appropriation, offsetting collections or receipts that will be used to liquidate the obligations.",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control",
+ "Business Capability Reference":"FFMSR 2.1.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ConversionMethodCode",
+ "Definition":"The code indicating how a foreign currency exchange was converted.",
+ "Activity Reference":"FFM.110.010 Treasury Reporting",
+ "Business Capability Reference":"FFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"FV - Fixed-Variable;\r\nVF - Variable-Fixed;\r\nFF - Fixed-Fixed",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CostCenterIdentifier",
+ "Definition":"A Cost Center is a clearly defined responsibility area where costs are incurred.",
+ "Activity Reference":"FFM.080.010 Cost Management Setup and Maintenance;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.2.1.1;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1\r\n",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Agency Defined",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CreditCohortYear",
+ "Definition":"Fiscal year when direct loans are obligated or guarantees committed by a program, even if disbursements occur in subsequent fiscal years.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(27) TFM, Volume I, Supplement: United States Standard General Ledger (USSGL), Section IV, USSGL Account Attributes, Account Attribute Definition Report",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nFFM-GTAS BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(27) TFM, USSGL, Part 2, Section IV, Account Attribute Definition Report ;\r\n\r\nhttps://tfm.fiscal.treasury.gov/system/files/documents/2022-12/p2sec4_attribdef_2024.pdf",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CriticalAgencyMission1Code",
+ "Definition":"A code representing agency specific accounting classification needs beyond the other required elements defined. Potential uses include project (25), strategic (10), line of business subfunction (10), etc. ",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Agency Defined",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CriticalAgencyMission2Code",
+ "Definition":"A code representing agency specific accounting classification needs beyond the other required elements defined. Potential uses include project (23), strategic (10), line of business subfunction (10), etc. ",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Agency Defined",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CriticalAgencyMission3Code",
+ "Definition":"A code representing agency specific accounting classification needs beyond the other required elements defined. Potential uses include project (23), strategic (10), line of business subfunction (10), etc. ",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Agency Defined",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CurrentlyNotCollectibleDebtAmount",
+ "Definition":"Currently Not Collectible Debt: The dollar amount of debt that have been written off and categorized as \"Currently Not Collectible\", but have not been closed out by the agency. The dollar amount on this line should equal the amount reported in Part II, Section D, line 1E.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.010 Delinquent Debt Collection;\r\nFFM.070.020 Delinquent Debt Write-off and Close-out;\r\nFFM.090.030 Accrual and Liability Processing",
+ "Business Capability Reference":"FFMSR 1.1.4.3;\r\nFFMSR 2.2.4.1;\r\nFFMSR 2.2.4.3;\r\nFFMSR 2.2.6.1;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CurrentlyNotCollectibleDebtsTotalAmount",
+ "Definition":"Total-Currently Not Collectible Debts: The total dollar amount of CNC debts, from both the current year and previous fiscal years, which have not been closed out. ",
+ "Activity Reference":"FFM.070.020 Delinquent Debt Write-off and Close-out;\r\nFFM.070.030 Delinquent Debt Reporting;\r\nFFM.090.030 Accrual and Liability Processing ",
+ "Business Capability Reference":"FFMSR 1.1.5.4;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CurrentlyNotCollectibleDebtsTotalNumber",
+ "Definition":"Total-Currently Not Collectible Debts: The total number of CNC debts, from both the current year and previous fiscal years, which have not been closed out. ",
+ "Activity Reference":"FFM.090.030 Accrual and Liability Processing ",
+ "Business Capability Reference":"FFMSR 1.1.5.5",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CurrentlyNotCollectibleDebtsWrittenOffAndNotClosedOutAtPrivateCollectionAgenciesAmount",
+ "Definition":"At Private Collection Agencies: The dollar amount of CNC debts that are still being pursued for collection by a private collection agency.",
+ "Activity Reference":"FFM.070.020 Delinquent Debt Write-off and Close-out;\r\nFFM.090.030 Accrual and Liability Processing",
+ "Business Capability Reference":"FFMSR 1.1.5.4;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CurrentlyNotCollectibleDebtsWrittenOffAndNotClosedOutAtPrivateCollectionAgenciesNumber",
+ "Definition":"At Private Collection Agencies: The number of CNC debts that are still being pursued for collection by a private collection agency.",
+ "Activity Reference":"FFM.090.030 Accrual and Liability Processing",
+ "Business Capability Reference":"FFMSR 1.1.5.4",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CurrentlyNotCollectibleDebtsWrittenOffAndNotClosedOutAtTreasuryForOffsetAmount",
+ "Definition":"At Treasury for Offset: The dollar amount of CNC debts referred to the Treasury Offset Program.",
+ "Activity Reference":"FFM.070.020 Delinquent Debt Write-off and Close-out;\r\nFFM.090.030 Accrual and Liability Processing",
+ "Business Capability Reference":"FFMSR 1.1.5.4;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CurrentlyNotCollectibleDebtsWrittenOffAndNotClosedOutAtTreasuryForOffsetNumber",
+ "Definition":"At Treasury for Offset: The number of CNC debts referred to the Treasury Offset Program.",
+ "Activity Reference":"FFM.090.030 Accrual and Liability Processing",
+ "Business Capability Reference":"FFMSR 1.1.5.4",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CurrentlyNotCollectibleDebtsWrittenOffAndNotClosedOutAtTreasuryOrDesignatedDebtCollectionCenterForCrossServicingAmount",
+ "Definition":"At Treasury or a Designated Debt Collection Center for Cross-Servicing: The dollar amount of CNC debts being pursued by Treasury or a Designated Debt Collection Center for cross-servicing. Do not report debts referred to cross-servicing in lines 1A, 1C and 1D of this section.",
+ "Activity Reference":"FFM.070.020 Delinquent Debt Write-off and Close-out;\r\nFFM.090.030 Accrual and Liability Processing",
+ "Business Capability Reference":"FFMSR 1.1.5.4;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CurrentlyNotCollectibleDebtsWrittenOffAndNotClosedOutAtTreasuryOrDesignatedDebtCollectionCenterForCrossServicingNumber",
+ "Definition":"At Treasury or a Designated Debt Collection Center for Cross-Servicing: The number of CNC debts being pursued by Treasury or a Designated Debt Collection Center for cross-servicing. Do not report debts referred to cross-servicing in lines 1A, 1C and 1D of this section.",
+ "Activity Reference":"FFM.090.030 Accrual and Liability Processing ",
+ "Business Capability Reference":"FFMSR 1.1.5.4",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CurrentlyNotCollectibleDebtsWrittenOffAndNotClosedOutOtherAmount",
+ "Definition":"Other: The dollar amount of CNC debts that have been written off and not included in lines 1A through 1C of this section. Amounts reported on this line should be footnoted to explain why they were not reported on lines 1A through 1C and what type of passive collection action the agency is taking.",
+ "Activity Reference":"FFM.070.020 Delinquent Debt Write-off and Close-out",
+ "Business Capability Reference":"FFMSR 1.1.5.4;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CurrentlyNotCollectibleDebtsWrittenOffAndNotClosedOutOtherAmountNoteText",
+ "Definition":"Note representing the explanation referencing the use of the line item. (Other: The dollar amount of CNC debts that have been written off and not included in lines 1A through 1C of this section. Amounts reported on this line should be footnoted to explain why they were not reported on lines 1A through 1C and what type of passive collection action the agency is taking.)",
+ "Activity Reference":"FFM.070.020 Delinquent Debt Write-off and Close-out;\r\n",
+ "Business Capability Reference":"FFMSR 2.2.6.1;\r\n",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CurrentlyNotCollectibleDebtsWrittenOffAndNotClosedOutOtherNumber",
+ "Definition":"Other: The number of CNC debts that have been written off and not included in lines 1A through 1C of this section. Amounts reported on this line should be footnoted to explain why they were not reported on lines 1A through 1C and what type of passive collection action the agency is taking.",
+ "Activity Reference":"FFM.070.020 Delinquent Debt Write-off and Close-out;\r\n",
+ "Business Capability Reference":"FFMSR 2.2.6.1;\r\n",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CurrentlyNotCollectibleDebtsWrittenOffAndNotClosedOutOtherNumberNoteText",
+ "Definition":"Note representing the explanation referencing the use of the line item. (Other: The number of CNC debts that have been written off and not included in lines 1A through 1C of this section. Amounts reported on this line should be footnoted to explain why they were not reported on lines 1A through 1C and what type of passive collection action the agency is taking.)",
+ "Activity Reference":"FFM.070.020 Delinquent Debt Write-off and Close-out;\r\n",
+ "Business Capability Reference":"FFMSR 2.2.6.1;\r\n",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CurrentValueOfFundsRate",
+ "Definition":"A percentage rate based on the current value of funds to the Department of Treasury. It is used for Federal debt collection, cash discounts, and rebate evaluation.",
+ "Activity Reference":"FFM.030.070 Payment Processing - Commercial Payments",
+ "Business Capability Reference":"FFMSR 2.2.2.1",
+ "Authoritative and Other Reference(s)":"(6) 5 CFR 1315, Prompt Payment: 1315.7 Discounts\r\n",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CustodialNonCustodialIndicator",
+ "Definition":"Custodial amounts are reported on the Statement of Custodial Activity (SCA) or on the custodial footnote. Noncustodial amounts are not reported on the SCA nor on the custodial footnote.",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control;\r\nFFM.090.010 General Ledger Set-up and Maintenance;\r\nFFM.090.030 Accrual and Liability Processing;\r\nFFM.090.040 Period End Closing;\r\nFFM.100.010 Reconciliation of General Ledger and Sub-ledgers;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.030 Cash Forecasting and Reporting;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n ",
+ "Business Capability Reference":"FFMSR 1.1.1.2;\r\nFFMSR 1.1.2.1;\r\nFFMSR 1.1.5.4;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.1.2.3;\r\nFFMSR 2.2.2.6;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(27) TFM, Volume I, Supplement: United States Standard General Ledger (USSGL), Section IV, USSGL Account Attributes, Account Attribute Definition Report",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-GTAS BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"A - Non-custodial;\r\nS - Custodial",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"CustomerAccountsReceivableSystemNumber",
+ "Definition":"A CARS/Bank Management Service defined number identifying an account.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebitCreditIndicator",
+ "Definition":"Indicates whether the balance reported is a debit or credit.",
+ "Activity Reference":"FFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting\r\n",
+ "Business Capability Reference":"FFMSR 1.1.2.1",
+ "Authoritative and Other Reference(s)":"(27) TFM, United States Standard General Ledger (USSGL), Part 2, Section IV, Account Attribute Definition Report",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-GTAS BIE",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"C - Credit;\r\nD - Debit",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtDescription",
+ "Definition":"The description of the debt owed to the government.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtEligibleForReferralToTreasuryOffsetProgramBalanceRemainingToBeReferredAmount",
+ "Definition":"Balance Remaining to be Referred: The dollar amount of delinquent debts over 180 days and otherwise eligible for offset (including CNC debts) that remain to be referred to Treasury for offset. Please provide an explanation in the footnote section why any remaining eligible debts are not referred to Treasury or a Debt Collection Center for offset. The number and dollar amount on this line is the sum of lines 2E through 2G of this section and are system generated.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection;\r\nFFM.070.030 Delinquent Debt Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.5.5;\r\nFFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtEligibleForReferralToTreasuryOffsetProgramDebtInLitigationForEnforcedCollectionAmount",
+ "Definition":"Debt in Litigation for Enforced Collection: The dollar amount of delinquent debts over 180 days that have been referred for litigation and are in the process of enforced collection; this may include DOJ referrals or internal referrals at agencies with statutory authority to litigate. This does not include debts that are merely under review in the agency counsel's office. Enter the number and dollar amount with a minus (-) sign before the figures. If the debt is in a forbearance program or formal appeals process, it should be reported in line 1E of this section. Note on Debts in Litigation at the Agency: If a debt is not being handled by DOJ, it can still be considered \"In Litigation\" if an actual court proceeding has been commenced. If the debt is with the agency counsel who is considering, but has not actually started litigation, then the debt should be \"Referred to Treasury\" and not reported as an exemption. Note on Estate debt: If the agency is proceeding against the estate of a deceased debtor, it should be categorized as \"Debt in Litigation for Enforced Collection\".",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtEligibleForReferralToTreasuryOffsetProgramDebtReferredToTreasuryOffsetProgramAmount",
+ "Definition":"Debt Referred to Treasury Offset Program: Of the amount eligible, dollar amount of delinquent debts over 180 days that have been referred directly to the Department of the Treasury-Fiscal Service for submission to the Treasury Offset Program and are currently eligible for collection in TOP. Enter the number and dollar amount with a minus (-) sign before the figures.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtEligibleForReferralToTreasuryOffsetProgramDebtReferredToTreasuryOffsetProgramThroughCrossServicingAmount",
+ "Definition":"Debt Referred to Treasury Offset Program through Cross-Servicing: The dollar amount of delinquent debts over 180 days that have been referred to the Treasury Cross-Servicing Program and have subsequently been submitted to the Treasury Offset Program by Treasury and that are currently eligible for collection in TOP. Enter the number and dollar amount with a minus (-) sign before the figures.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtEligibleForReferralToTreasuryOffsetProgramDebtRequiredToBeReferredToTreasuryOffsetProgramByAgencyAmount",
+ "Definition":"Debt Required to be Referred to the Treasury Offset Program by Agency: The dollar amount of delinquent debts over 180 days and otherwise eligible for offset (including CNC debts) that agencies must refer to Treasury for offset. The number and dollar amount on this line are the sums of lines 2A through 2D of this section and are system generated.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtEligibleForReferralToTreasuryOffsetProgramForeignSovereignDebtAmount",
+ "Definition":"Foreign/Sovereign Debt: The dollar amount of delinquent debts owed to the U.S. government by foreign sovereign nations. Do not include debts owed by private foreign corporations or foreign individuals; agencies should classify those debts as either commercial or consumer debts. Enter the number and dollar amount with a minus (-) sign before the figures.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtEligibleForReferralToTreasuryOffsetProgramOtherAmount",
+ "Definition":"Other: The dollar amount of delinquent debts that are exempt from mandatory referral to the Treasury Offset Program for reasons other than those listed in lines 2B and 2C of this section. Agencies must footnote amounts entered on this line with the reason for exempting the debt referral balance. The number and dollar amount may be positive or negative. Enter negative amounts with a minus (-) sign before the figures. Note on debts over 10 years old: If a debt that has been delinquent longer than 10 years is on an agency's books, it is ineligible for \"Offset\", but eligible for \"Cross-Servicing\" because TOP is subject to a 10-year statute of limitations, unless otherwise provided by law. These debts should be deducted in line 2D with a minus sign (-) before the figures, because they are not eligible for collection through TOP, but will be included in line 3 of this section for referral to cross-servicing.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection;\r\nFFM.070.030 Delinquent Debt Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.5.5;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtEligibleForReferralToTreasuryOffsetProgramOtherAmountNoteText",
+ "Definition":"Note representing the explanation referencing the use of the line item. (Other: The dollar amount of delinquent debts that are exempt from mandatory referral to the Treasury Offset Program for reasons other than those listed in lines 2B and 2C of this section. Agencies must footnote amounts entered on this line with the reason for exempting the debt referral balance. The number and dollar amount may be positive or negative. Enter negative amounts with a minus (-) sign before the figures. Note on debts over 10 years old: If a debt that has been delinquent longer than 10 years is on an agency's books, it is ineligible for \"Offset\", but eligible for \"Cross-Servicing\" because TOP is subject to a 10-year statute of limitations, unless otherwise provided by law. These debts should be deducted in line 2D with a minus sign (-) before the figures, because they are not eligible for collection through TOP, but will be included in line 3 of this section for referral to cross-servicing.)",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtEligibleForReferralToTreasuryOffsetProgramOtherNumberNoteText",
+ "Definition":"Note representing the explanation referencing the use of the line item. (Other: The number of delinquent debts that are exempt from mandatory referral to the Treasury Offset Program for reasons other than those listed in lines 2B and 2C of this section. Agencies must footnote amounts entered on this line with the reason for exempting the debt referral balance. The number and dollar amount may be positive or negative. Enter negative amounts with a minus (-) sign before the figures. Note on debts over 10 years old: If a debt that has been delinquent longer than 10 years is on an agency's books, it is ineligible for \"Offset\", but eligible for \"Cross-Servicing\" because TOP is subject to a 10-year statute of limitations, unless otherwise provided by law. These debts should be deducted in line 2D with a minus sign (-) before the figures, because they are not eligible for collection through TOP, but will be included in line 3 of this section for referral to cross-servicing.)",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtEligibleForReferralToTreasuryOrDesignatedDebtCollectionCenterForCrossServicingAmountNoteText",
+ "Definition":"Note representing the explanation referencing the use of the line item. (Other: The dollar amount of delinquent debts that are exempt from mandatory referral to Treasury or a Designated Debt Collection Center for cross-servicing for reasons other than those listed in lines 3B through 3G of this section. Other exempt categories include debts scheduled for sale. Footnote amounts entered on this line, with the reason for exempting or adjusting the debt referral. The number and dollar amount may be positive or negative. Enter negative amounts with a minus (-) sign before the figures. Note on Debts Scheduled for Sale: The DCIA exempts from cross-servicing debts that will be disposed of under an asset sales program within one year of becoming eligible for sale, or later than one year if consistent with an asset sales program and a schedule established by the agency and approved by the Director of the Office of Management and Budget. Report this on the \"Other\" line.)",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtEligibleForReferralToTreasuryOrDesignatedDebtCollectionCenterForCrossServicingAtPrivateCollectionAgenciesAmount",
+ "Definition":"At Private Collection Agencies (PCAs): The dollar amount of delinquent debts currently at private collection agencies. Enter the number and dollar amount with a minus (-) sign before the figures.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtEligibleForReferralToTreasuryOrDesignatedDebtCollectionCenterForCrossServicingBalanceRemainingToBeReferredAmount",
+ "Definition":"Balance Remaining to be Referred: The dollar amount of delinquent debts over 180 days (including CNC debt) that remain to be referred to Treasury or a Designated Debt Collection Center for cross-servicing. Please provide an explanation in the footnote section why any remaining eligible debts are not referred to Treasury or a Designated Debt Collection Center for cross-servicing. The number and dollar amount on this line equal line 3I minus line 3J of this section and are system generated.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection;\r\nFFM.070.020 Delinquent Debt Write-off and Close-out;\r\nFFM.070.030 Delinquent Debt Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.5.5;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtEligibleForReferralToTreasuryOrDesignatedDebtCollectionCenterForCrossServicingDebtEligibleForReferralToTreasuryForCollectionAmount",
+ "Definition":"Debt Eligible for Referral to Treasury for Collection: The dollar amount of debts that are over 180 days delinquent (including debts classified as CNC). The number and dollar amount on this line equal the number and dollar amount of line 1H of this section and are system-generated.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtEligibleForReferralToTreasuryOrDesignatedDebtCollectionCenterForCrossServicingDebtExemptedByTreasuryFromCrossServicingAmount",
+ "Definition":"Debt Exempted by Treasury from Cross-Servicing: The dollar amount of delinquent debts that the Secretary of the Treasury has formally exempted from cross-servicing. Enter the number and dollar amount with a minus (-) sign before the figures. Examples of debts exempted by Treasury include: (1) debts being serviced by third parties (including state-managed debts); and (2) classes of debts exempted by Treasury upon formal request of an agency or upon Treasury's own initiative.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtEligibleForReferralToTreasuryOrDesignatedDebtCollectionCenterForCrossServicingDebtInLitigationForEnforcedCollectionAmount",
+ "Definition":"Debt in Litigation for Enforced Collection: The dollar amount of delinquent debts over 180 days that the agency has referred for litigation and are in the process of enforced collection; this may include DOJ referrals or internal referrals at agencies with statutory authority to litigate. This does not include debts that are merely under review in the agency counsel's office. Enter number and dollar amount with a minus (-) sign before the figures.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtEligibleForReferralToTreasuryOrDesignatedDebtCollectionCenterForCrossServicingDebtReferredToTreasuryOrDesignatedDebtCollectionCenterForCrossServicingAmount",
+ "Definition":"Debt Referred to Treasury or a Designated Debt Collection Center for Cross-Servicing: Of the amount eligible, the dollar amount of delinquent debts over 180 days (including CNC debt) that have been referred to Treasury or a Designated Debt Collection Center for cross-servicing. Enter number and dollar amount with a minus (-) sign before the figures.",
+ "Activity Reference":"FFM.070.020 Delinquent Debt Write-off and Close-out;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtEligibleForReferralToTreasuryOrDesignatedDebtCollectionCenterForCrossServicingDebtRequiredToBeReferredToTreasuryOrDesignatedDebtCollectionCenterForCrossServicingAmount",
+ "Definition":"Debt Required to be Referred to Treasury or a Designated Debt Collection Center for Cross-Servicing: The dollar amount of delinquent debts over 180 days (including CNC debt) that must be referred to Treasury or a Designated Debt Collection Center for cross-servicing. This line equals the sum of lines 3A through 3H of this section and is system generated.",
+ "Activity Reference":"FFM.070.020 Delinquent Debt Write-off and Close-out;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtEligibleForReferralToTreasuryOrDesignatedDebtCollectionCenterForCrossServicingDebtReturnedFromCrossServicingAmount",
+ "Definition":"Debt Returned from Cross-Servicing: The amount of delinquent debts returned from cross-servicing as uncollectible and which the agency is preparing for close-out. Enter the number and dollar amount with a minus (-) sign before the figures.",
+ "Activity Reference":"FFM.070.020 Delinquent Debt Write-off and Close-out;\r\nFFM.070.030 Delinquent Debt Reporting;\r\n",
+ "Business Capability Reference":"FFMSR 1.2.1.1;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtEligibleForReferralToTreasuryOrDesignatedDebtCollectionCenterForCrossServicingDebtReturnedFromCrossServicingNumber",
+ "Definition":"Debt Returned from Cross-Servicing: The number of delinquent debts returned from cross-servicing as uncollectible and which the agency is preparing for close-out. Enter the number and dollar amount with a minus (-) sign before the figures.",
+ "Activity Reference":"FFM.070.020 Delinquent Debt Write-off and Close-out;\r\nFFM.070.030 Delinquent Debt Reporting;\r\n",
+ "Business Capability Reference":"FFMSR 1.2.1.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtEligibleForReferralToTreasuryOrDesignatedDebtCollectionCenterForCrossServicingForeignSovereignDebtAmount",
+ "Definition":"Foreign/Sovereign Debt: The dollar amount of delinquent debts owed to the Government by foreign sovereign nations. Do not include debts owed by private foreign corporations or individuals; agencies should classify those debts as either commercial or consumer debts. Enter the number and dollar amount with a minus (-) sign before the figures.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtEligibleForReferralToTreasuryOrDesignatedDebtCollectionCenterForCrossServicingInProcessOfInternalOffsetAmount",
+ "Definition":"In the Process of Internal Offset: The dollar amount of delinquent debts that the agency is currently collecting through internal offset. A debt is being collected by internal offset if a creditor agency expects the debt to be collected in full within three (3) years from the date of delinquency by withholding funds payable by the creditor agency by the debtor to satisfy, in whole or in part, the debt of the debtor to the creditor agency. Enter the number and dollar amount with a minus (-) sign before the figures.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection;\r\nFFM.070.030 Delinquent Debt Reporting;\r\n",
+ "Business Capability Reference":"FFMSR 2.2.5.5;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtEligibleForReferralToTreasuryOrDesignatedDebtCollectionCenterForCrossServicingOtherAmount",
+ "Definition":"Other: The dollar amount of delinquent debts that are exempt from mandatory referral to Treasury or a Designated Debt Collection Center for cross-servicing for reasons other than those listed in lines 3B through 3G of this section. Other exempt categories include debts scheduled for sale. Footnote amounts entered on this line, with the reason for exempting or adjusting the debt referral. The number and dollar amount may be positive or negative. Enter negative amounts with a minus (-) sign before the figures.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtEligibleForReferralToTreasuryOrDesignatedDebtCollectionCenterForCrossServicingOtherNumberNoteText",
+ "Definition":"Note representing the explanation referencing the use of the line item. (Other: The number of delinquent debts that are exempt from mandatory referral to Treasury or a Designated Debt Collection Center for cross-servicing for reasons other than those listed in lines 3B through 3G of this section. Other exempt categories include debts scheduled for sale. Footnote amounts entered on this line, with the reason for exempting or adjusting the debt referral. The number and dollar amount may be positive or negative. Enter negative amounts with a minus (-) sign before the figures. Note on Debts Scheduled for Sale: The DCIA exempts from cross-servicing debts that will be disposed of under an asset sales program within one year of becoming eligible for sale, or later than one year if consistent with an asset sales program and a schedule established by the agency and approved by the Director of the Office of Management and Budget. Report this on the \"Other\" line.)",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtorDisputedDebtAmountIndicator",
+ "Definition":"Indicates whether the debtor disputed the amount of the case while at the Creditor Agency.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtorDisputedDebtIndicator",
+ "Definition":"Indicates whether the debtor disputed the case while at the Creditor Agency.",
+ "Activity Reference":"FFM.060.040 Public Receipt Processing;\r\n",
+ "Business Capability Reference":"FFMSR 2.2.5.2",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtOriginationDate",
+ "Definition":"The date the original receivable was established by the Creditor Agency referring the debt; e.g., the date the debtor signed the original documents.",
+ "Activity Reference":"FFM.060.040 Public Receipt Processing;\r\nFFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtRecallReasonCode",
+ "Definition":"The field is populated if the Creditor Agency wants the debt returned due to specific reasons of: debt referred in error, agency is forgiving debt, or agency can collect through internal offset.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtsClosedOutDuringPreviousCalendarYearAmount",
+ "Definition":"Debts Closed Out During Previous CY: The cumulative dollar amount of all debts (both CNC and Non-CNC debt) for which the agency terminated collection action and that were closed out in the previous calendar year.",
+ "Activity Reference":"FFM.070.020 Delinquent Debt Write-off and Close-out;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtServiceProcessingCode",
+ "Definition":"Indicates whether the record is for TOP or Cross-Servicing. It is a processing code used internally for Integrated Agency Interface (IAI) Record format.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1\r\n",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtsIneligibleForTreasuryOffsetProgramAndCrossServicingInBankruptcyAmount",
+ "Definition":"Debts Ineligible for Treasury Offset Program (TOP) and Cross-Servicing In Bankruptcy: The dollar amount of delinquent collateralized or uncollateralized debts in bankruptcy. Enter the number and dollar amount with a minus (-) sign before the figures.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtsIneligibleForTreasuryOffsetProgramAndCrossServicingInForbearanceOrFormalAppealsProcessIncludingLitigationAmount",
+ "Definition":"Debts Ineligible for Treasury Offset Program (TOP) and Cross-Servicing In Forbearance or Formal Appeals Process (including Litigation): The dollar amount of delinquent debts that are deferred because of a formal forbearance program or appeals process. Include debts here only if the results of an appeal determine whether a debt is considered valid and legally enforceable and/or the dollar amount to be collected. Enter the number and dollar amount with a minus (-) sign before the figures. If the debt is no longer in a forbearance program or formal appeals process and is currently in litigation for enforced collection, it may be reported in lines 2C and 3C of this section.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtsIneligibleForTreasuryOffsetProgramAndCrossServicingInForeclosureAmount",
+ "Definition":"Debts Ineligible for Treasury Offset Program (TOP) and Cross-Servicing In Foreclosure: The dollar amount of delinquent collateralized debts in foreclosure. For a debt to be \"in foreclosure\", the agency must have filed a notice of default. Enter the number and dollar amount with a minus (-) sign before the figures. If an ongoing foreclosure proceeding is taking place, the debt should be classified as \"In Foreclosure\". If a legally enforceable deficiency remains after foreclosure, the deficiency debt is not in foreclosure, and it is eligible for referral to Treasury.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtsIneligibleForTreasuryOffsetProgramAndCrossServicingOtherAmount",
+ "Definition":"Debts Ineligible for Treasury Offset Program (TOP) and Cross-Servicing Other: The dollar amount of delinquent debts that are exempt from referral to Treasury for reasons other than those listed in lines 1D through 1F of this section. Amounts entered on this line must be footnoted with the reason for exempting the debt from referral. The number and dollar amount may be positive or negative. When entering negative amounts, use a minus (-) sign before the figures.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtsIneligibleForTreasuryOffsetProgramAndCrossServicingOtherAmountNoteText",
+ "Definition":"Note representing the explanation referencing the use of the line item. Debts Ineligible for Treasury Offset Program (TOP) and Cross-Servicing Other: The dollar amount of delinquent debts that are exempt from referral to Treasury for reasons other than those listed in lines 1D through 1F of this section. Amounts entered on this line must be footnoted with the reason for exempting the debt from referral. The number and dollar amount may be positive or negative. When entering negative amounts, use a minus (-) sign before the figures. Note on Debts That Are Not Legally Enforceable: Debts that are classified as in suspense, that are deemed not valid or for which no final determination that the debts are due and valid, should be included in the \"Other\" category since they are not legally enforceable. Note on Debts Scheduled for Sale: The DCIA excludes debts for referral to Treasury for cross-servicing, if they will be disposed of under an asset sales program within one year of becoming eligible for sale, or later than one year if consistent with an asset sales program and a schedule established by the agency and approved by the Director of the Office of Management and Budget. These debts should be included in the \"Other\" category. Such debts are not exempt from offset, and agencies should refer those debts to the Treasury Offset Program.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtsIneligibleForTreasuryOffsetProgramAndCrossServicingOtherNumberNoteText",
+ "Definition":"Note representing the explanation referencing the use of the line item. Debts Ineligible for Treasury Offset Program (TOP) and Cross-Servicing Other: The number of delinquent debts that are exempt from referral to Treasury for reasons other than those listed in lines 1D through 1F of this section. Amounts entered on this line must be footnoted with the reason for exempting the debt from referral. The number and dollar amount may be positive or negative. When entering negative amounts, use a minus (-) sign before the figures. Note on Debts That Are Not Legally Enforceable: Debts that are classified as in suspense, that are deemed not valid or for which no final determination that the debts are due and valid, should be included in the \"Other\" category since they are not legally enforceable. Note on Debts Scheduled for Sale: The DCIA excludes debts for referral to Treasury for cross-servicing, if they will be disposed of under an asset sales program within one year of becoming eligible for sale, or later than one year if consistent with an asset sales program and a schedule established by the agency and approved by the Director of the Office of Management and Budget. These debts should be included in the \"Other\" category. Such debts are not exempt from offset, and agencies should refer those debts to the Treasury Offset Program.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtStatusCode",
+ "Definition":"The code for the debt status.",
+ "Activity Reference":"FFM.060.040 Public Receipt Processing;\r\nFFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1\r\n ",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtStatusName",
+ "Definition":"A name for a classification of debt as defined in the Treasury Report on Receivables and Debt Collection Activities. Examples include but are not limited to debt in bankruptcy, in forbearance or in formal appeals, in foreclosure, at a private collection agency, in litigation, in the process of internal offset, in wage garnishment, at Treasury for cross-servicing or offset, and collected at the agency.",
+ "Activity Reference":"FFM.060.040 Public Receipt Processing;\r\nFFM.070.010 Delinquent Debt Collection;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(104) TFM Volume I, Part 3, Chapter 7000 Section 7120, Reporting Requirements, and the Instructional Workbook for Preparing the Treasury Report on Receivables and Debt Collection Activities, Parts I and II referenced therein",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"See Authoritative Reference",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DebtTypeCode",
+ "Definition":"A category of funds or property that has been determined to be due to the Federal government (e.g., a farm loan is an example of a commercial debt and an administrative travel advance is an example of consumer debt).",
+ "Activity Reference":"FFM.060.020 Public Receivable Setup and Billing Invoicing",
+ "Business Capability Reference":"FFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(104) TFM Volume I, Part 3, Chapter 7000 Section 7120, Reporting Requirements, and the Instructional Workbook for Preparing the Treasury Report on Receivables and Debt Collection Activities, Parts I and II referenced therein",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Commercial;\r\nConsumer;\r\nForeign/Sovereign Government;\r\nState and Local Government ",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Delinquencies_1to180_DaysAtAgencyAmount",
+ "Definition":"At Agency: The dollar amount of delinquent debts that are being worked at the agency. Debt being worked at the agency includes, but is not limited to, in counsel, Federal salary offset initiated by the agency, or pending referral to the Department of Justice for litigation. Categories are not necessarily mutually exclusive. For example, an agency may refer a debt to a private collection agency and to Treasury for offset at the same time. Report such a debt in both places.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Delinquencies_1to180_DaysAtPrivateCollectionAgenciesAmount",
+ "Definition":"At Private Collection Agencies: The dollar amount of delinquent debts currently at private collection agencies (PCAs) under contract with your agency. Do not include debts that are with PCAs as a part of Fiscal Service's Cross-Servicing Program. These actions should be reported in \"At Treasury for Cross-Servicing\" on line 1H of this section. Categories are not necessarily mutually exclusive. For example, an agency may refer a debt to a private collection agency and to Treasury for offset at the same time. Report such a debt in both places.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Delinquencies_1to180_DaysAtTreasuryForCrossServicingAmount",
+ "Definition":"At Treasury for Cross-Servicing: The dollar amount of delinquent debts at the Department of the Treasury-Fiscal Service for cross-servicing. Categories are not necessarily mutually exclusive. For example, an agency may refer a debt to a private collection agency and to Treasury for offset at the same time. Report such a debt in both places.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Delinquencies_1to180_DaysAtTreasuryForOffsetAmount",
+ "Definition":"At Treasury for Offset: The dollar amount of delinquent debts referred to the Department of the Treasury-Fiscal Service for collection through the Treasury Offset Program. Categories are not necessarily mutually exclusive. For example, an agency may refer a debt to a private collection agency and to Treasury for offset at the same time. Report such a debt in both places.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Delinquencies_1to180_DaysInBankruptcyAmount",
+ "Definition":"In Bankruptcy: The dollar amount of delinquent collateralized or uncollateralized debts in bankruptcy. Categories are not necessarily mutually exclusive. For example, an agency may refer a debt to a private collection agency and to Treasury for offset at the same time.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Delinquencies_1to180_DaysInForbearanceOrInFormalAppealsProcessAmount",
+ "Definition":"In Forbearance or In Formal Appeals Process: The dollar amount of delinquent debts that the agency has placed in forbearance (i.e., agreed not to enforce collection for a period of time) and debts in a formal appeals process that precludes collection. This category only includes appeals programs that both determine the validity and legal enforceability of the debt and that require collection action to be suspended while the appeal is pending. If a debt is in an appeals process that does not require suspension of collection, that should not be reported in this line. Agencies should consult with their counsel if there is any question as to whether a debt may be collected while in a particular appeals process. Categories are not necessarily mutually exclusive. For example, an agency may refer a debt to a private collection agency and to Treasury for offset at the same time. Report such a debt in both places.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Delinquencies_1to180_DaysInForeclosureAmount",
+ "Definition":"In Foreclosure: The dollar amount of delinquent debts which are in foreclosure. To be \"in foreclosure\", the agency must have filed a notice of default. Categories are not necessarily mutually exclusive. For example, an agency may refer a debt to a private collection agency and to Treasury for offset at the same time. Report such a debt in both places.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Delinquencies_1to180_DaysInLitigationAt_DOJ_OrAgencyCounselAmount",
+ "Definition":"In Litigation (At DOJ or Agency Counsel): The dollar amount of delinquent debts that the Department of Justice is litigating. If your agency has statutory authority to litigate, include debts that are being litigated by your agency in this line. Being litigated means that the agency's attorneys have taken some action towards litigation. It does not include debts that are merely under review in the agency counsel's office. Categories are not necessarily mutually exclusive. For example, an agency may refer a debt to a private collection agency and to Treasury for offset at the same time. Report such a debt in both places.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Delinquencies_1to180_DaysInProcessOfInternalOffsetAmount",
+ "Definition":"In the Process of Internal Offset: The dollar amount of delinquent debts that are in the process of being collected by internal agency offset. Internal offset occurs when an agency collects a delinquent debt by offsetting payments made or due to the delinquent debtor by that agency. Categories are not necessarily mutually exclusive. For example, an agency may refer a debt to a private collection agency and to Treasury for offset at the same time. Report such a debt in both places.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Delinquencies_1to180_DaysInWageGarnishmentAmount",
+ "Definition":"In Wage Garnishment: The dollar amount of delinquent debts for which the agency has issued administrative wage garnishment orders. Do not include garnishment actions brought by the Department of Justice or Fiscal Service; report these actions as \"In Litigation (At DOJ or Agency Counsel)\" on line 1E of this section or \"At Treasury for Cross-Servicing\" on line 1H of this section, respectively. Do not include Federal employee salary offset referrals on this line; Federal employee salary offsets are collected through the Treasury Offset Program. These referrals should be reported in line 1I of this section. Categories are not necessarily mutually exclusive. For example, an agency may refer a debt to a private collection agency and to Treasury for offset at the same time. Report such a debt in both places.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Delinquencies_1to180_DaysOtherAmount",
+ "Definition":"Other: The dollar amount of delinquent debts that are being worked by management tools or techniques not represented in lines 1A through 1J of this section. Other tools and techniques include, but are not limited to, debts at third parties - such as a guaranty agency or financial institution, and debts at a designated debt collection center. All amounts reported on this line are to be footnoted to identify the tool or technique utilized. Categories are not necessarily mutually exclusive. For example, an agency may refer a debt to a private collection agency and to Treasury for offset at the same time. Report such a debt in both places.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Delinquencies_1to180_DaysOtherAmountNoteText",
+ "Definition":"Note representing the explanation referencing the use of the line item. (Other: The dollar amount of delinquent debts that are being worked by management tools or techniques not represented in lines 1A through 1J of this section. Other tools and techniques include, but are not limited to, debts at third parties - such as a guaranty agency or financial institution, and debts at a designated debt collection center. All amounts reported on this line are to be footnoted to identify the tool or technique utilized.)",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Delinquencies_1to180_DaysOtherNumberNoteText",
+ "Definition":"Note representing the explanation referencing the use of the line item. (Other: The number of delinquent debts that are being worked by management tools or techniques not represented in lines 1A through 1J of this section. Other tools and techniques include, but are not limited to, debts at third parties - such as a guaranty agency or financial institution, and debts at a designated debt collection center. All amounts reported on this line are to be footnoted to identify the tool or technique utilized.)",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Delinquencies_1to180_DaysTotalAmount",
+ "Definition":"Total Delinquencies 1 - 180 Days: The dollar amount of \"Total Delinquencies 1 - 180 Days\" is system generated and will equal the sum of Part I, Section C, lines 1A and 1B. Because the categories are not mutually exclusive, the sum of lines 1A thru 1K of this section may not equal the total in line 1L, Total Delinquencies 1-180 Days.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DelinquenciesByCategoryTotalAmount",
+ "Definition":"Total Delinquencies by Category: The total dollar amount of delinquent debts. ",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(104) TFM Volume I, Part 3, Chapter 7000 Section 7120, Reporting Requirements, and the Instructional Workbook for Preparing the Treasury Report on Receivables and Debt Collection Activities, Parts I and II referenced therein",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DelinquencyDate",
+ "Definition":"The date the debt became delinquent.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.7;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Delinquent_181to365_DaysAmount",
+ "Definition":"Delinquent Debt 181-365 days: This line includes the dollar amount of debts reported on line 7 (Ending Balance) in Part I, Section A that are delinquent at the end of the quarterly reporting period, grouped by the number of days the debt is past due at the end of the reporting period in this instance the debts would be between 181 and 365 days past due.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.5;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Delinquent_1to2_YearsAmount",
+ "Definition":"Delinquent Debt 1-2 years: This line includes the dollar amount of debts reported on line 7 (Ending Balance) in Part I, Section A that are delinquent at the end of the quarterly reporting period, grouped by the number of days the debt is past due at the end of the reporting period in this instance the debts would be between 1 to 2 years past due.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.5;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Delinquent_1to90_DaysAmount",
+ "Definition":"Delinquent Debt 1-90 days: This line includes the dollar amount of debts reported on line 7 (Ending Balance) in Part I, Section A that are delinquent at the end of the quarterly reporting period, grouped by the number of days the debt is past due at the end of the reporting period in this instance the debts would be between 1 and 90 days past due.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.5;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Delinquent_2to6_YearsAmount",
+ "Definition":"Delinquent Debt 2-6 years: This line includes the dollar amount of debts reported on line 7 (Ending Balance) in Part I, Section A that are delinquent at the end of the quarterly reporting period, grouped by the number of days the debt is past due at the end of the reporting period in this instance the debts would be between 2 and 6 years past due.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection;\r\nFFM.070.020 Delinquent Debt Write-off and Close-out;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.5;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Delinquent_6to10_YearsAmount",
+ "Definition":"Delinquent Debt 6-10 years: This line includes the dollar amount of debts reported on line 7 (Ending Balance) in Part I, Section A that are delinquent at the end of the quarterly reporting period, grouped by the number of days the debt is past due at the end of the reporting period in this instance the debts would be between 6 and 10 years past due.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection;\r\nFFM.070.020 Delinquent Debt Write-off and Close-out;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.5;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Delinquent_91to180_DaysAmount",
+ "Definition":"Delinquent Debt 91-180 days: This line includes the dollar amount of debts reported on line 7 (Ending Balance) in Part I, Section A that are delinquent at the end of the quarterly reporting period, grouped by the number of days the debt is past due at the end of the reporting period in this instance the debts would be between 91 and 180 days past due.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.5;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DelinquentCommercialAmount",
+ "Definition":"Commercial: The dollar amount of delinquent commercial debts. Report debts as \"commercial\" if they were originated for a business activity, regardless of whether the debtor is an individual or business.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DelinquentConsumerAmount",
+ "Definition":"Consumer: The dollar amount of delinquent consumer debts. Report debts as \"consumer\" debts if they were originated for a personal activity.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DelinquentForeignSovereignGovernmentAmount",
+ "Definition":"Foreign/Sovereign Debt: The dollar amount of delinquent debts owed to the U.S. government by foreign sovereign nations. Do not include debts owed by private foreign corporations or foreign individuals. Report those debts either as commercial or consumer.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DelinquentOver10YearsAmount",
+ "Definition":"Delinquent Debt over 10 years: This line includes the dollar amount of debts reported on line 7 (Ending Balance) in Part I, Section A that are delinquent at the end of the quarterly reporting period, grouped by the number of days the debt is past due at the end of the reporting period in this instance the debts would be over 110 years past due.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection;\r\nFFM.070.020 Delinquent Debt Write-off and Close-out;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.5;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DelinquentStateAndLocalGovernmentAmount",
+ "Definition":"State and Local Government: The dollar amount of delinquent debts owed to the U.S. government by State and local governments or governmental entities, including public schools, colleges and universities.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DemandLetterRecipientCode",
+ "Definition":"The type of contact that will receive the demand letter.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DeobligationsRecoveriesRefundsByTAS_CPE",
+ "Definition":"The amount of downward adjustments to obligations and outlays resulting from deobligations, recoveries, or refunds collected, summarized at the TAS level. The adjustments are to the obligations and outlays which were made in a prior year.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: DeobligationsRecoveriesRefundsByTAS_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DeobligationsRecoveriesRefundsOfPriorYearByAward_CPE",
+ "Definition":"The amount of downward adjustments to obligations and outlays incurred resulting from deobligations, recoveries, or refunds collected, at the Award level. The adjustments are to the obligations and outlays which were made in a prior year.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: DeobligationsRecoveriesRefundsOfPriorYearByAward_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DeobligationsRecoveriesRefundsOfPriorYearByProgramObjectClass_CPE",
+ "Definition":"The amount of downward adjustments to obligations and outlays incurred resulting from deobligations, recoveries, or refunds collected, at the TAS / Program Activity / Object Class level. The adjustments are to the obligations and outlays which were made in a prior year.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: DeobligationsRecoveriesRefundsOfPriorYearByProgramObjectClass_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DepartmentAgencyCode",
+ "Definition":"The code for the top-level government department or federal agency in the federal hierarchy.",
+ "Activity Reference":"FFM.110.040 Financial Performance and Operational Reporting",
+ "Business Capability Reference":"FFMSR 1.4.1.1",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(34) GSA IAE, FH FOUO API;\r\n\r\nhttps://open.gsa.gov/api/fh-fouo-api/\r\n\r\nUse fhorgid when fhorgtype is \"Department/Ind. Agency\"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"GSA IAE: fhorgid, fhorgtype \"Department/Ind. Agency\""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DepartmentAgencyName",
+ "Definition":"The name that refers to the top-level government department or federal agency in the federal hierarchy.",
+ "Activity Reference":"FFM.110.040 Financial Performance and Operational Reporting",
+ "Business Capability Reference":"FFMSR 1.4.1.1",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(34) GSA IAE, FH FOUO API;\r\n\r\nhttps://open.gsa.gov/api/fh-fouo-api/\r\n\r\nUse fhorgname when fhorgtype is \"Department/Ind. Agency\"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"GSA IAE: fhorgname, fhorgtype \"Department/Ind. Agency\""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DepartmentAgencySubTierCode",
+ "Definition":"The code for the first layer down within a department or independent agency in the federal hierarchy.",
+ "Activity Reference":"FFM.110.040 Financial Performance and Operational Reporting",
+ "Business Capability Reference":"FFMSR 1.4.1.1",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(34) GSA IAE, FH FOUO API;\r\n\r\nhttps://open.gsa.gov/api/fh-fouo-api/\r\n\r\nUse fhorgid when fhorgtype is \"Sub-Tier\"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"GSA IAE: fhorgid, fhorgtype \"Sub-Tier\""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DepartmentAgencySubTierName",
+ "Definition":"The name for the first layer down within a department or independent agency in the federal hierarchy.",
+ "Activity Reference":"FFM.110.040 Financial Performance and Operational Reporting",
+ "Business Capability Reference":"FFMSR 1.4.1.1",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(34) GSA IAE, FH FOUO API;\r\n\r\nhttps://open.gsa.gov/api/fh-fouo-api/\r\n\r\nUse fhorgname when fhorgtype is \"Sub-Tier\"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"GSA IAE: fhorgname, fhorgtype \"Sub-Tier\""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DepartmentAgencySubTierOfficeCode",
+ "Definition":"The code for the lowest organizational level of a department/independent agency's federal hierarchy.",
+ "Activity Reference":"FFM.110.040 Financial Performance and Operational Reporting",
+ "Business Capability Reference":"FFMSR 1.4.1.1",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(34) GSA IAE, FH FOUO API;\r\n\r\nhttps://open.gsa.gov/api/fh-fouo-api/\r\n\r\nUse fhorgid when fhorgtype \"Office\"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"GSA IAE: fhorgid, fhorgtype \"Office\""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DepartmentAgencySubTierOfficeName",
+ "Definition":"The name for the lowest organizational level of a department/independent agency's federal hierarchy.",
+ "Activity Reference":"FFM.110.040 Financial Performance and Operational Reporting",
+ "Business Capability Reference":"FFMSR 1.4.1.1",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(34) GSA IAE, FH FOUO API;\r\n\r\nhttps://open.gsa.gov/api/fh-fouo-api/\r\n\r\nUse fhorgname when fhorgtype \"Office\"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"GSA IAE: fhorgname, fhorgtype \"Office\""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DisasterEmergencyFundCode",
+ "Definition":"Distinguishes whether the budgetary resources, obligations incurred, unobligated and obligated balances, and outlays are \r\nclassified as disaster, emergency, wildfire suppression or none of the three. Note - Once one of the three has been identified, the title \"Disaster/Emergency/Wildfire Suppression\", for example, will be replaced with the actual \r\ntitle identified by OMB such as \"Emergency PL 115-56.\"",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(23) OMB M-20-21, Implementation Guidance for Supplemental Funding Provided in Response to Coronavirus Disease 2019 (Covid 19);\r\n(27) TFM, United States Standard General Ledger (USSGL), Part 2, Section IV, Account Attribute Definition Report;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nFFM-DATA Act Files BIE;\r\nFFM-GTAS BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"L",
+ "Domain Values":"(27) TFM, USSGL, Part 2, Section IV, Account Attribute Definition Report;\r\n https://tfm.fiscal.treasury.gov/system/files/documents/2022-12/p2sec4_attribdef_2024.pdf",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: DisasterEmergencyFundCode"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DisbursingOfficeSymbol",
+ "Definition":"A number assigned to the agency which is disbursing funds from the Treasury General Account (TGA).",
+ "Activity Reference":"FFM.030.030 Payment Processing - Intragovernmental Payments;\r\nFFM.030.110 Payment Disbursement;\r\nFFM.030.130 Payment Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.1.2;\r\nFFMSR 2.2.3.3;\r\nFFMSR 2.2.3.1;\r\nFFMSR 2.2.3.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Disbursing Office Symbol"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"ACQ",
+ "Data Element Label":"DiscountDate",
+ "Definition":"The date by which an early payment must be made in order to receive a specified payment reduction, or a discount, under the Prompt Payment Act. The decision to take the discount should be made based on the best interest of the government, as determined by Prompt Payment guidelines.",
+ "Activity Reference":"FFM.030.100 Payment Processing - Other Payments (Foreign and Miscellaneous Payments)",
+ "Business Capability Reference":"FFMSR 2.2.2.1",
+ "Authoritative and Other Reference(s)":"Definition (compiled from)\r\n(5) 31 U.S.C. 39 – Prompt Payment;\r\n(7) 5 CFR 1315, Prompt Payment: 1315.2 Definitions, 1315.7 Discounts, 1315.9 Required documentation, 1315.10 Late payment interest penalties, 1315.11 Additional penalties, and 1315.5 Accelerated payment methods",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DiscountTakenAmount",
+ "Definition":"The amount of the invoice payment reduction offered by the vendor for early payment that was taken in disbursement made to the vendor.",
+ "Activity Reference":"FFM.030.100 Payment Processing - Other Payments (Foreign and Miscellaneous Payments)",
+ "Business Capability Reference":"FFMSR 2.2.2.1",
+ "Authoritative and Other Reference(s)":"Definition (compiled from)\r\n(5) 31 U.S.C. 39 – Prompt Payment;\r\n(7) 5 CFR 1315, Prompt Payment: 1315.2 Definitions, 1315.7 Discounts, 1315.9 Required documentation, 1315.10 Late payment interest penalties, 1315.11 Additional penalties, and 1315.5 Accelerated payment methods",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"See Authoritative Reference",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DissolutionDate",
+ "Definition":"The date the business was dissolved.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DocumentReferenceNumber",
+ "Definition":"Details a unique identifying number created by a system for a document, e.g., payment or collection document.",
+ "Activity Reference":"FFM.030.030 Payment Processing - Intragovernmental Payments;\r\nFFM.030.040 Payment Processing - Payroll Payments;\r\nFFM.030.050 Payment Processing - Travel TDY and Local Payments;\r\nFFM.030.060 Payment Processing - Travel PCS Payments;\r\nFFM.030.070 Payment Processing - Commercial Payments;\r\nFFM.030.080 Payment Processing - Grant Payments;\r\nFFM.030.090 Payment Processing - Loan Payments;\r\nFFM.030.100 Payment Processing - Other Payments;\r\nFFM.060.020 Public Receivable Set-up and Invoicing;\r\nFFM.060.030 Public Receipt Processing;\r\nFFM.100.010 Reconciliation of General Ledger and Subledgers\r\n",
+ "Business Capability Reference":"FFMSR 1.1.5.4;\r\nFFMSR 2.2.2.3;\r\nFFMSR 2.2.4.1;\r\nFFMSR 2.2.4.3;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"FFM Transaction Information;\r\nIntragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Document Reference Number"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DomesticBankAccount2Number",
+ "Definition":"The domestic account number at the financial institution involved in the transaction. Also referred to as a Basic Bank Account Number (BBAN). ",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information;\r\nBanking Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"(44) IBAN.com, IBAN Validation API\r\n\r\nUse IBAN API for validation: https://www.iban.com/validation-api",
+ "Related Data Element Reference(s)":"Common:DomesticBankAccountNumber;\r\n\r\nGSA SAM: ACCOUNT NUMBER"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DomesticBankAccount3Number",
+ "Definition":"The domestic account number at the financial institution involved in the transaction. Also referred to as a Basic Bank Account Number (BBAN). ",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information;\r\nBanking Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"(44) IBAN.com, IBAN Validation API\r\n\r\nUse IBAN API for validation: https://www.iban.com/validation-api",
+ "Related Data Element Reference(s)":"Common:DomesticBankAccountNumber;\r\n\r\nGSA SAM: ACCOUNT NUMBER"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DomesticBankAccountNumber",
+ "Definition":"The domestic account number at the financial institution involved in the transaction. Also referred to as a Basic Bank Account Number (BBAN). ",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information;\r\nBanking Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"(44) IBAN.com, IBAN Validation API\r\n\r\nUse IBAN API for validation: https://www.iban.com/validation-api",
+ "Related Data Element Reference(s)":"Common:DomesticBankAccountNumber;\r\n\r\nGSA SAM: ACCOUNT NUMBER"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"DunningNoticeStandardizedText",
+ "Definition":"Text notifying a customer that they are overdue in paying an account receivable to the sender/agency. The dunning notice text typically follows a progression from polite reminders to more strident demands for payment if the customer continues to be non-responsive in paying.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Future Requirement",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"EmailAddressText",
+ "Definition":"The email address for the party involved in the transaction.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Use IETF RFC 5322, Section 3.4.1 for format specification: https://datatracker.ietf.org/doc/html/rfc5322#section-3.4.1",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: EmailAddressText"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"EmailAddressTypeCode",
+ "Definition":"The code that identifies the type of email address. ",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Individual Business;\r\nIndividual Personal;\r\nGroup Business",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: EmailAddressTypeCode"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"EndingPeriodOfAvailability",
+ "Definition":"In annual and multi-year funds, the end period of availability identifies the last year of funds availability under law that an appropriation account may incur new obligations.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(17) OMB Circular A-11, Preparation, Submission, and Execution of the Budget;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information;\r\nTreasury Account Symbol (TAS) Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nFFM-DATA Act Files BIE;\r\nFFM-GTAS BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":2015,
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: EndingPeriodOfAvailability"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"EntityNonEntityIndicator",
+ "Definition":"Indicates that a reporting entity has authority to use an asset in its operations or if the asset is not available to the entity",
+ "Activity Reference":"FFM.090.030 Accrual and Liability Processing;\r\nFFM.110.020 Financial Statement Preparation",
+ "Business Capability Reference":"FFMSR 1.1.3.1",
+ "Authoritative and Other Reference(s)":"(18) OMB Circular A-136, II.4.3.3 Assets",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"EventIndicatorCode",
+ "Definition":"A code that represents the national interest for which the contract is created.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Under Development",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Future Requirement",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ExceptionTypeCode",
+ "Definition":"The type of change to a previously reported transaction.",
+ "Activity Reference":"FFM.110.020 Financial Statement Preparation;\r\nFFM.110.050 Internal Control/Compliance Reviews ",
+ "Business Capability Reference":"FFMSR 1.3.1.2;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Additional;\r\nAdjustment;\r\nCorrection;\r\nOther;\r\nRescind",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ExchangeNonExchangeCode",
+ "Definition":"Indicates whether the revenue, gains or losses balances being reported is exchange (X), nonexchange (T) or (E) exchange revenue with little or no associated costs.",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control;\r\nFFM.040.010 Revenue Processing;\r\nFFM.040.020 Revenue Reporting;\r\nFFM.060.020 Public Receivable Set-up and Invoicing;\r\nFFM.060.040 Public Receipt Processing;\r\nFFM.070.010 Delinquent Debt Collection;\r\nFFM.090.010 General Ledger Set-up and Maintenance;\r\nFFM.090.040 Period End Closing;\r\nFFM.100.010 Reconciliation of General Ledger and Sub-ledgers;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.030 Cash Forecasting and Reporting\r\n ",
+ "Business Capability Reference":"FFMSR 1.1.1.2;\r\nFFMSR 1.1.2.1;\r\nFFMSR 1.1.5.5;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.1.2.3;\r\nFFMSR 2.2.2.6;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(27) TFM, United States Standard General Ledger (USSGL), Part 2, Section IV, Account Attribute Definition Report",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-GTAS BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"E - Exchange without associated costs;\r\nT - Nonexchange;\r\nX - Exchange",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ExpectedFundsAvailableDate",
+ "Definition":"The date that deposited funds are expected to be available for immediate disbursement or withdrawal.",
+ "Activity Reference":"FFM.030.130 Payment Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.3.1;\r\nFFMSR 2.2.3.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"FAIN",
+ "Definition":"The Federal Award Identification Number (FAIN) is the unique ID within the Federal agency for each (non-aggregate) financial assistance award.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing - Intragovernmental Payments;\r\nFFM.030.040 Payment Processing - Payroll Payments;\r\nFFM.030.050 Payment Processing - Travel TDY and Local Payments;\r\nFFM.030.060 Payment Processing - Travel PCS Payments;\r\nFFM.030.070 Payment Processing - Commercial Payments;\r\nFFM.030.080 Payment Processing - Grant Payments;\r\nFFM.030.090 Payment Processing - Loan Payments;\r\nFFM.030.100 Payment Processing - Other Payments (Foreign and Miscellaneous Payments)",
+ "Business Capability Reference":"FFMSR 2.2.1.1",
+ "Authoritative and Other Reference(s)":"(1) 2 CFR 200, Uniform Administrative Requirements, Cost Principles, and Audit Requirements for Federal Awards;\r\n(21) OMB M-09-19;\r\n(22) OMB M-17-04;\r\n(24) OMB MPM 2016-03, Additional Guidance for DATA Act Implementation: Implementing Data-Centric Approach for Reporting Federal Spending Information; \r\n(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: FAIN"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"FederalNonFederalCode",
+ "Definition":"Indicates the type of entity involved in transactions with the reporting entity: other federal entities (F); non-federal entities such as private/local/state/tribal/foreign governments (N), exceptions for other non-federal partners (E), unidentified federal activity that does not have a trading partner (Z), or General Fund of the U.S. Government only (G). ",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control;\r\nFFM.060.010 Payer Set-Up and Maintenance;\r\nFFM.090.010 General Ledger Set-up and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.090.030 Accrual and Liability Processing;\r\nFFM.090.040 Period End Closing;\r\nFFM.100.010 Reconciliation of General Ledger and Sub-ledgers;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.030 Cash Forecasting and Reporting;\r\nFFM.110.040 Financial Performance and Operational Reporting",
+ "Business Capability Reference":"FFMSR 1.1.1.2;\r\nFFMSR 1.1.2.1;\r\nFFMSR 1.1.3.1;\r\nFFMSR 1.1.4.1;\r\nFFMSR 1.1.4.3;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.1.2.3;\r\nFFMSR 2.2.2.6;\r\nFFMSR 2.2.4.1; FFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(27) TFM, United States Standard General Ledger (USSGL), Part 2, Section IV, Account Attribute Definition Report",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-GTAS BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"E - Non Federal Exception;\r\nF - Federal;\r\nG - General Fund of the U.S. Government Only;\r\nN - Non Federal;\r\nZ - Non-Reciprocating Federal Activity",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"FFMProgramCode",
+ "Definition":"The identifier for an organized set of activities directed toward a common purpose or goal that an agency undertakes or proposes to carry out its responsibilities. ",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(8) Common Government-wide Accounting Classification Structure",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Agency Defined",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"CGAC: Program Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"FFMProgramName",
+ "Definition":"The name for an organized set of activities directed toward a common purpose or goal that an agency undertakes or proposes to carry out its responsibilities.",
+ "Activity Reference":"FFM.110.040 Financial Performance and Operational Reporting",
+ "Business Capability Reference":"FFMSR 1.4.1.1",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"FFMProjectIdentifier",
+ "Definition":"A planned undertaking of work to be performed or product to be produced having a finite beginning and end.\r\n\r\nPer A-11, a temporary endeavor to create a unique product or service with a start date, a completion date, and a defined scope.",
+ "Activity Reference":"FFM.080.010 Cost Management Setup and Maintenance;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.2.1.1;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1\r\n",
+ "Authoritative and Other Reference(s)":"(8) Common Government-wide Accounting Classification Structure;\r\n(19) OMB Circular A-11, Appendix H, Checklist for Fund Control Regulations, Section 4: Definitions, Terminology, and Concepts;\r\n(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Agency Defined ",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"CGAC: Project Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"FFMProjectTaskIdentifier",
+ "Definition":"Identifies the actual work task or step performed in producing and delivering products and services, or the aggregation of actions performed within an organization that is useful for purposes of activity-based costing. ",
+ "Activity Reference":"FFM.080.010 Cost Management Setup and Maintenance;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.2.1.1;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1\r\n",
+ "Authoritative and Other Reference(s)":"(8) Common Government-wide Accounting Classification Structure;\r\n(19) OMB Circular A-11, Appendix H, Checklist for Fund Control Regulations, Section 4: Definitions, Terminology, and Concepts",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Agency Defined ",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"CGAC: Activity Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"FinancialReportEntityCode",
+ "Definition":"The Reporting Entity Code identifies a Government entity for financial statement purposes. It captures all of the Treasury Account Symbols that are reported for that entity's financial statements.",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control;\r\nFFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.110.020 Financial Statement Preparation\r\n",
+ "Business Capability Reference":"FFMSR 1.3.1.2;\r\nFFMSR 2.1.1.3;\r\nFFMSR 2.2.6.2;\r\nFFMSR 2.3.2.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"FinancialReportingDetail",
+ "Definition":"Contains debit voucher or credit voucher details.",
+ "Activity Reference":"FFM.110.020 Financial Statement Preparation",
+ "Business Capability Reference":"FFMSR 1.3.1.2;\r\nFFMSR 2.3.2.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"FinancialTransactionAmount",
+ "Definition":"The transaction amount.",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control;\r\nFFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing - Intragovernmental Payments;\r\nFFM.030.040 Payment Processing - Payroll Payments;\r\nFFM.030.050 Payment Processing - Travel TDY and Local Payments;\r\nFFM.030.060 Payment Processing - Travel PCS Payments;\r\nFFM.030.070 Payment Processing - Commercial Payments;\r\nFFM.030.080 Payment Processing - Grant Payments;\r\nFFM.030.090 Payment Processing - Loan Payments;\r\nFFM.030.100 Payment Processing - Other Payments (Foreign and Miscellaneous Payments);\r\nFFM.070.010 Delinquent Debt Collection;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.100.010 Reconciliation of General Ledger and Sub-ledgers;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation",
+ "Business Capability Reference":"FFMSR 1.1.2.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.1.2.3;\r\nFFMSR 2.2.1.2;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nFFM-GTAS BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"FinancialTransactionLineLOAAmount",
+ "Definition":"The amount associated with an FFM transaction line of accounting.",
+ "Activity Reference":"FFM.090.020 General Ledger Posting\r\n\r\n",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"FinancialTransactionLineLOAIdentifier",
+ "Definition":"An identifier for a line of accounting (LOA) that associates the LOA with an FFM transaction line.",
+ "Activity Reference":"FFM.090.020 General Ledger Posting\r\n\r\n",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"FinancialTransactionTypeCode",
+ "Definition":"A code that identifies the type of transaction generated by a source system and processed by a financial management system. ",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control;\r\nFFM.020.010 Financial Asset Information Processing - Property, Plant, and Equipment;\r\nFFM.020.020 Financial Asset Information Processing - Loans;\r\nFFM020.030 Financial Asset Information Processing - Heritage Assets and Stewardship Land;\r\nFFM.020.040 Financial Asset Information Processing - Federal Oil and Gas Resources;\r\nFFM.020.050 Financial Asset Information Processing - Other Federal Assets;\r\nFFM.020.110 Payment Disbursement;\r\nFFM.030.010 Payee Setup and Maintenance;\r\nFFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing - Intragovernmental Payments;\r\nFFM.030.040 Payment Processing - Payroll Payments;\r\nFFM.030.050 Payment Processing - Travel TDY and Local Payments;\r\nFFM.030.060 Payment Processing - Travel PCS Payments;\r\nFFM.030.070 Payment Processing - Commercial Payments;\r\nFFM.030.080 Payment Processing - Grant Payments;\r\nFFM.030.090 Payment Processing - Loan Payments;\r\nFFM.030.100 Payment Processing - Other Payments (Foreign and Miscellaneous Payments);FFM.060.010; Payer Setup and Maintenance;\r\n\r\nFFM.060.020 Public Receivable Setup and Billing Invoicing;\r\nFFM.080.010 Cost Management Setup and Maintenance;\r\nFFM.080.020 Cost Accumulationn and Allocation;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.090.030 Accrual and Liability/Asset Processing\r\n",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Payee/Payer Maintenance;\r\nCommitment;\r\nObligation;\r\nAccrual;\r\nPayable;\r\nReceivable;\r\nCollection; \r\nAsset JV; \r\nPayroll JV;\r\nOther JV",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"FinancingAccountCode",
+ "Definition":"Indicates whether the Federal account symbol is a Direct Loan Financing Account, a Guaranteed Loan Financing Account, or is not a financing account as defined by the Federal Credit Reform Act of 1990.",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control;\r\nFFM.090.010 General Ledger Set-up and Maintenance;\r\nFFM.090.040 Period End Closing;\r\nFFM.100.010 Reconciliation of General Ledger and Sub-ledgers;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.030 Cash Forecasting and Reporting\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.2;\r\nFFMSR 1.1.2.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.1.1.3;\r\nFFMSR 2.1.2.3;\r\nFFMSR 2.2.2.6;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(27) TFM, United States Standard General Ledger (USSGL), Part 2, Section IV, Account Attribute Definition Report",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"D - Direct;\r\nG - Guaranteed;\r\nN - Nonfinancing",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"FirstYearIndicator",
+ "Definition":"Indicates whether or not the current year is the first year of the TAS.",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control\r\n",
+ "Business Capability Reference":"FFMSR 2.1.1.3",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"FiscalServiceTaxClassCode",
+ "Definition":"The classification of a tax transaction, as defined by the Fiscal Service.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 1.1.5.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"1 - TAX CLASS 1 FORM 941;\r\n2 - TAX CLASS 2 IND. TAX;\r\n3 - TAX CLASS 3 CORPORATE;\r\n4 - TAX CLASS 4 EXCISE TAX;\r\n5 - TAX CLASS 5 EST. and GIFT;\r\n7 - TAX CLASS 7 RRB TOTAL;\r\n8 - TAX CLASS 8 FUTA;\r\n9 - TAX CLASS 9 MISC. RECPS.",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"FMS_OrganizationCode",
+ "Definition":"Fiscal Service and FPAs maintain and use the current two-digit distribution codes to group Treasury Account Symbols (TAS) by bureaus, according to congressional legislation and, in some instances, programs below the bureau level. The new Fiscal Service Org Code will serve the same purpose as distribution codes. Fiscal Service will establish an Fiscal Service Org Code if a Government organization is designated as a bureau in enacted legislation",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control\r\n",
+ "Business Capability Reference":"FFMSR 2.1.1.3",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ForecastSummaryIdentifier",
+ "Definition":"The identifier for the summary record. A receiving system can use this value to reconcile updates to an existing record and qualify new records. A sending system can use this value to reconcile acknowledgements for the submitted records.",
+ "Activity Reference":"FFM.060.040 Public Receipt Processing;\r\nFFM.100.030 Reconciliation with Treasury;\r\nFFM.110.010 Treasury Reporting",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.3.1.3;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ForeclosureIndicator",
+ "Definition":"Indicates whether the Creditor Agency reports the collateral for the debt is in foreclosure.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ForeignCurrencyAmount",
+ "Definition":"The amount of currency in a foreign denomination.",
+ "Activity Reference":"FFM.110.010 Treasury Reporting",
+ "Business Capability Reference":"FFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars if the foreign currency uses this level of precision",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ForeignCurrencyDetail",
+ "Definition":"Contains the original currency code of this transaction.",
+ "Activity Reference":"FFM.110.010 Treasury Reporting",
+ "Business Capability Reference":"FFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(133) International Organization for Standardization (ISO) 4217 Publication: Codes for the Representation of Currencies and Funds\r\n\r\nhttp://release.niem.gov/niem/codes/iso_4217/4.0/iso_4217.xsd",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Conditional: Required if transactions are paid in a foreign currency",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: CurrencyText"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"FundBalanceWithTreasuryAmount",
+ "Definition":"Amount representing the pre-closing undisbursed or unexpended balance as of the month-end. This amount will agree with the ending balance shown on the GWA Account Statement for the corresponding period and year. It should also agree with the Fund Balance with Treasury, prior to posting closing entries. Note: The FACTS II calls this the \"Undisbursed Balance\" while the printed version of the FMS Form 2108 calls this amount the \"Pre-closing Unexpended Balance\".",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.100.030 Reconciliation with Treasury;\r\nFFM.110.010 Treasury Reporting",
+ "Business Capability Reference":"FFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.2.6.2;\r\nFFMSR 2.3.1.1;\r\nFFMSR 2.3.1.4",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"FundingSourceYear",
+ "Definition":"Identifies the source year in which funding is received.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"NNNN",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":2019,
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"FundsAvailableDate",
+ "Definition":"Indicates the date the deposited funds can be immediately disbursed or otherwise withdrawn.\r\r\n(NKA: ExpectedFundsAvailableDate)",
+ "Activity Reference":"FFM.030.130 Payment Reporting",
+ "Business Capability Reference":"FFMSR 2.2.3.1;\r\nFFMSR 2.2.3.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"GeneralLedgerPostDate",
+ "Definition":"The date the financial transaction was posted in the Agency’s General Ledger. \r\nExample: If an award transaction occurs March 30, but isn’t posted in the GL until April 5, then the General Ledger Post Date will be submitted as April 5.",
+ "Activity Reference":"FFM.090.020 General Ledger Posting",
+ "Business Capability Reference":"FFMSR 1.1.2.2",
+ "Authoritative and Other Reference(s)":"(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date;\r\n\r\nDAIMS: GeneralLedgerPostDate"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"GrossOutlayAmountByAward_CPE",
+ "Definition":"Payments made to liquidate an obligation (other than the repayment of debt principal or other disbursements that are “means of financing” transactions). Outlays generally are equal to cash disbursements but also are recorded for cash-equivalent transactions, such as the issuance of debentures to pay insurance claims, and in a few cases are recorded on an accrual basis such as interest on public issues of the public debt. Outlays are the measure of Government spending. \r\n\r\n",
+ "Activity Reference":"FFM.030.130 Payment Reporting",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: GrossOutlayAmountByAward_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"GrossOutlayAmountByAward_FYB",
+ "Definition":"Payments made to liquidate an obligation (other than the repayment of debt principal or other disbursements that are “means of financing” transactions). Outlays generally are equal to cash disbursements but also are recorded for cash-equivalent transactions, such as the issuance of debentures to pay insurance claims, and in a few cases are recorded on an accrual basis such as interest on public issues of the public debt. Outlays are the measure of Government spending. \r\n\r\n",
+ "Activity Reference":"FFM.030.130 Payment Reporting",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: GrossOutlayAmountByAward_FYB"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"GrossOutlayAmountByProgramObjectClass_CPE",
+ "Definition":"Payments made to liquidate an obligation (other than the repayment of debt principal or other disbursements that are “means of financing” transactions). Outlays generally are equal to cash disbursements but also are recorded for cash-equivalent transactions, such as the issuance of debentures to pay insurance claims, and in a few cases are recorded on an accrual basis such as interest on public issues of the public debt. Outlays are the measure of Government spending. \r\n\r\n",
+ "Activity Reference":"FFM.030.130 Payment Reporting",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: GrossOutlayAmountByProgramObjectClass_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"GrossOutlayAmountByProgramObjectClass_FYB",
+ "Definition":"Payments made to liquidate an obligation (other than the repayment of debt principal or other disbursements that are “means of financing” transactions). Outlays generally are equal to cash disbursements but also are recorded for cash-equivalent transactions, such as the issuance of debentures to pay insurance claims, and in a few cases are recorded on an accrual basis such as interest on public issues of the public debt. Outlays are the measure of Government spending. \r\n\r\n",
+ "Activity Reference":"FFM.030.130 Payment Reporting",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: GrossOutlayAmountByProgramObjectClass_FYB"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"GrossOutlayAmountByTAS_CPE",
+ "Definition":"Payments made to liquidate an obligation (other than the repayment of debt principal or other disbursements that are “means of financing” transactions). Outlays generally are equal to cash disbursements but also are recorded for cash-equivalent transactions, such as the issuance of debentures to pay insurance claims, and in a few cases are recorded on an accrual basis such as interest on public issues of the public debt. Outlays are the measure of Government spending. \r\n\r\n",
+ "Activity Reference":"FFM.030.130 Payment Reporting",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: GrossOutlayAmountByTAS_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"GrossOutlaysDeliveredOrdersPaidTotal_CPE",
+ "Definition":"Payments made to liquidate an obligation (other than the repayment of debt principal or other disbursements that are “means of financing” transactions). Outlays generally are equal to cash disbursements but also are recorded for cash-equivalent transactions, such as the issuance of debentures to pay insurance claims, and in a few cases are recorded on an accrual basis such as interest on public issues of the public debt. Outlays are the measure of Government spending. \r\n\r\n",
+ "Activity Reference":"FFM.030.130 Payment Reporting",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: GrossOutlaysDeliveredOrdersPaidTotal_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"GrossOutlaysDeliveredOrdersPaidTotal_FYB",
+ "Definition":"Payments made to liquidate an obligation (other than the repayment of debt principal or other disbursements that are “means of financing” transactions). Outlays generally are equal to cash disbursements but also are recorded for cash-equivalent transactions, such as the issuance of debentures to pay insurance claims, and in a few cases are recorded on an accrual basis such as interest on public issues of the public debt. Outlays are the measure of Government spending. \r\n\r\n",
+ "Activity Reference":"FFM.030.130 Payment Reporting",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: GrossOutlaysDeliveredOrdersPaidTotal_FYB"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"GrossOutlaysUndeliveredOrdersPrepaidTotal_CPE",
+ "Definition":"Payments made to liquidate an obligation (other than the repayment of debt principal or other disbursements that are “means of financing” transactions). Outlays generally are equal to cash disbursements but also are recorded for cash-equivalent transactions, such as the issuance of debentures to pay insurance claims, and in a few cases are recorded on an accrual basis such as interest on public issues of the public debt. Outlays are the measure of Government spending. \r\n\r\n",
+ "Activity Reference":"FFM.030.130 Payment Reporting",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: GrossOutlaysUndeliveredOrdersPrepaidTotal_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"GrossOutlaysUndeliveredOrdersPrepaidTotal_FYB",
+ "Definition":"Payments made to liquidate an obligation (other than the repayment of debt principal or other disbursements that are “means of financing” transactions). Outlays generally are equal to cash disbursements but also are recorded for cash-equivalent transactions, such as the issuance of debentures to pay insurance claims, and in a few cases are recorded on an accrual basis such as interest on public issues of the public debt. Outlays are the measure of Government spending. \r\n\r\n",
+ "Activity Reference":"FFM.030.130 Payment Reporting",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: GrossOutlaysUndeliveredOrdersPrepaidTotal_FYB"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"GroupIdentifier",
+ "Definition":"The identifier that links transactions within the same lifecycle.",
+ "Activity Reference":"FFM.110.050 Internal Control/Compliance Reviews ",
+ "Business Capability Reference":"FFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"GTAS_FundTypeCode",
+ "Definition":"A classification established in law that describes an OMB account's relationship to the government, and the source of the receipts that the account is provided. The first digit (and sometimes second digit, as well) of the Treasury Account Main Code is also used to designate General Fund category (Treasury Financial Manual (TFM) Volume I, Part 2, Chapter 1500).",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control;\r\nFFM.040.020 Revenue Reporting;\r\nFFM.090.010 General Ledger Set-up and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.090.030 Accrual and Liability Processing;\r\nFFM.090.040 Period End Closing;\r\nFFM.100.010 Reconciliation of General Ledger and Sub-ledgers;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 1.1.1.2;\r\nFFMSR 1.1.2.1;\r\nFFMSR 1.1.5.4;\r\nFFMSR 1.1.5.5;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.3;\r\nFFMSR 2.1.2.3;\r\nFFMSR 2.2.2.6;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(27) TFM, United States Standard General Ledger (USSGL), Part 2, Section IV, Account Attribute Definition Report",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(27) TFM, USSGL, Part 2, Section IV, Account Attribute Definition Report;\r\n https://tfm.fiscal.treasury.gov/system/files/documents/2022-12/p2sec4_attribdef_2024.pdf",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IGTAccountIdentifier",
+ "Definition":"A unique identifier for an Intragovernmental Disburser Account.",
+ "Activity Reference":"FFM.030.030 Payment Processing - Intragovernmental Payments",
+ "Business Capability Reference":"FFMSR 2.2.1.2",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Organization Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: IGT Account Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IGTAccountName",
+ "Definition":"A unique and recognizable name for an Intragovernmental Disburser Account. ",
+ "Activity Reference":"FFM.030.030 Payment Processing - Intragovernmental Payments",
+ "Business Capability Reference":"FFMSR 2.2.1.2",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Organization Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: IGT Account Name"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"InitialAdministrativeCostsAmount",
+ "Definition":"The initial amount of administrative fees of the delinquent debt referred to Cross-Servicing.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"InitialInterestAmount",
+ "Definition":"The initial amount of interest of the delinquent debt referred to Cross-Servicing.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"InitialInterestTypeCode",
+ "Definition":"Indicates the type of interest that is to accrue on the debt: financing, additional, or Current Value of Funds (CVF) rate.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Additional;\r\nFinancing;\r\nCurrent Value of Funds (CVF) Rate",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"InitialPenaltyAmount",
+ "Definition":"The initial penalty amount of the delinquent debt referred to Cross-Servicing.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"InitialPrincipalAmount",
+ "Definition":"The principal amount of the delinquent debt referred to Cross-Servicing.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"InputSystem",
+ "Definition":"The sending trading partner that provides information to a receiving trading partner.",
+ "Activity Reference":"FFM.060.040 Public Receipt Processing;\r\nFFM.060.050.Public Receivable Monitoring and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.4.1;\r\nFFMSR 2.2.5.1;\r\nFFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntegratedAgencyInterface",
+ "Definition":"Container for the Integrated Agency Interface File Format for Cross-Servicing",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"InterchangeAdjustmentAmountSignIndicator",
+ "Definition":"The sign of the Interchange Adjustment Amount.",
+ "Activity Reference":"FFM.060.030 Public Receivable Credit Memo and Adjustment Processing",
+ "Business Capability Reference":"FFMSR 1.1.5.4;\r\nFFMSR 2.2.4.3",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"InterchangeAdjustmentReasonCode",
+ "Definition":"The one character code that defines why the surcharge, downgrade or adjustment was done.",
+ "Activity Reference":"FFM.060.030 Public Receivable Credit Memo and Adjustment Processing;\r\nFFM.060.040 Public Receipt Processing;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.050 Internal Control/Compliance Reviews ",
+ "Business Capability Reference":"FFMSR 1.1.5.4;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.2.4.3;\r\nFFMSR 2.2.5.1;\r\nFFMSR 2.2.5.7;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"InterestRatePercent",
+ "Definition":"The rate at which interest is to accrue on the debt.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.7 ",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(47) Treasury Bureau of Fiscal Service Prompt Payment",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"Stored using decimal point and two digits (.nn)",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(126) Treasury Fiscal Service Prompt Payment directive;\r\n\r\nhttps://www.fiscal.treasury.gov/prompt-payment/",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"InternalOrganizationCode",
+ "Definition":"The code that identifies the entity that manages resources below the agency and bureau level, such as an office or a division.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(34) GSA IAE, FH FOUO API;\r\n\r\nhttps://open.gsa.gov/api/fh-fouo-api/\r\n\r\nConcatenate fhorgid where fhorgtype is \"Department/Ind. Agency\", fhorid where fhorgtype is \"Sub-Tier\", and fhorid where fhorgtype is \"Office\"\r\n\r\nNOTE: Agencies can decide the desired level of granularity represented in the Internal Organization Code",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"InternalRevenueService1099Indicator",
+ "Definition":"Determines if the entity is IRS Form 1099 eligible. The Form 1099 is used to report payments to independent contractors, rental property income, income from interest and dividends, sales proceeds, and other miscellaneous income.",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"No;\r\nYes",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"InternationalBankAccount2Number",
+ "Definition":"An international bank account number (IBAN) at the financial institution involved in the transaction. This is an expanded version of the Basic Bank Account Number (BBAN).",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information;\r\nBanking Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"(44) IBAN.com, IBAN Validation API\r\n\r\nUse IBAN API for validation: https://www.iban.com/validation-api",
+ "Related Data Element Reference(s)":"Common:InternationalBankAccountNumber;\r\n\r\nGSA SAM: ACCOUNT NUMBER"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"InternationalBankAccount3Number",
+ "Definition":"An international bank account number (IBAN) at the financial institution involved in the transaction. This is an expanded version of the Basic Bank Account Number (BBAN).",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information;\r\nBanking Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"(44) IBAN.com, IBAN Validation API\r\n\r\nUse IBAN API for validation: https://www.iban.com/validation-api",
+ "Related Data Element Reference(s)":"Common:InternationalBankAccountNumber;\r\n\r\nGSA SAM: ACCOUNT NUMBER"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"InternationalBankAccountNumber",
+ "Definition":"An international bank account number (IBAN) at the financial institution involved in the transaction. This is an expanded version of the Basic Bank Account Number (BBAN).",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information;\r\nBanking Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"(44) IBAN.com, IBAN Validation API\r\n\r\nUse IBAN API for validation: https://www.iban.com/validation-api",
+ "Related Data Element Reference(s)":"Common:InternationalBankAccountNumber;\r\n\r\nGSA SAM: ACCOUNT NUMBER"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalAdvanceRevenueRecognitionMethodologyCode",
+ "Definition":"Identification of the methodology used to account for the Requesting Agency’s expense and the Servicing Agency's revenue.",
+ "Activity Reference":"FFM.040.010 Revenue Processing",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"A - Accrual Per Work Completed;\r\nM - Monthly;\r\nO - Other;\r\nS - Straight Line",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Advance Revenue Recognition Methodology"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalAgreementEndDate",
+ "Definition":"The date when the agreement will end and all intragovernmental orders will be approved.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.2.1",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date;\r\n\r\nG-Invoicing: Agreement End Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalAgreementStartDate",
+ "Definition":"The date when the intragovernmental agreement will begin.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.2.1",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date;\r\n\r\nG-Invoicing: Agreement Start Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalAgreementType",
+ "Definition":"Identifies whether the General Terms and Conditions (GT&C) for the intragovernmental agreement will support one (SINGLE) or more than one (MULTIPLE) orders (funding documents).",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Multiple;\r\nSingle",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Agreement Type"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalAssistedAcquisitionsIndicator",
+ "Definition":"Identifies whether the document will accommodate Assisted Acquisitions. The Servicing Agency provides acquisition support in awarding and managing contracts on behalf of the Requesting Agency’s requirements for products or services.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"No;\r\nYes",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Assisted Acquisitions Indicator"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalAttachmentDateTIme",
+ "Definition":"The time and date the file was uploaded into G-Invoicing. ",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information;\r\nIntragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Attachment Date/Time"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalAttachmentFileAlias",
+ "Definition":"A nickname to identify a G-Invoicing file.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information;\r\nIntragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Attachment File Alias"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalAttachmentFileName",
+ "Definition":"The actual name of the G-Invoicing attachment file.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information;\r\nIntragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Attachment File Name"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalAttachmentIdentifier",
+ "Definition":"The identifier that links a transaction to a G-Invoicing file attachment.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information;\r\nIntragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Attachment Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalFinalPerformanceIndicator",
+ "Definition":"Specifies from one partner to another that no more performance (of this type) is expected against the intragovernmental order schedule.",
+ "Activity Reference":"FFM.030.030 Payment Processing – Intragovernmental Payments;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Final Performance Indicator"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalGTCClosingComments",
+ "Definition":"Any comments associated with why the General Terms and Conditions (GT&C) for the Intragovernmental agreement have been closed.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Closing Comments"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalGTCEnforceTotalRemainingAmountIndicator",
+ "Definition":"This indicator identifies whether order(s) would be validated up against the General Terms and Conditions (GT&C) of the Intragovernmental agreement and the total remaining amount.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"N - No;\r\nY - Yes",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Enforce Total Remaining Amount Indicator"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalGTCExplanationofOverheadFeesAndCharges",
+ "Definition":"A general explanation of how the overhead fees and charges are calculated.\r\n",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Explanation of Overhead Fees & Charges"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalGTCModificationNumber",
+ "Definition":"The unique number that identifies a modification to the General Terms and Conditions (GT&C) for the intragovernmental agreement.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: General Terms and Conditions (GT&C) Modification Number"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalGTCNumber",
+ "Definition":"The unique agreement number that must be established between the Requesting Agency and Servicing Agency which will track each General Terms and Conditions (GT&C) agreement from the origination through the completion or termination.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: General Terms and Conditions (GT&C) Number"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalGTCRejectionReason",
+ "Definition":"Comments associated with why the General Terms and Conditions (GT&C) for a intragovernmental agreement have been rejected.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Rejection Reason"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalGTCRequestingScope",
+ "Definition":"Identifies the high level scope of the work to be performed under the General Terms and Conditions (GT&C), for all related intragovernmental orders, by the Servicing Agency. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Scope"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalGTCRestrictions",
+ "Definition":"References the unique requirements and/or mission specific restrictions specific to this IAA. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Restrictions"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalGTCStatusCode",
+ "Definition":"This is the current status of the General Terms and Conditions (GT&C) of a intragovernmental agreement .",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"CLZ - Closed for Orders;\r\nPND - Pending Approval; \r\nREC - Open for Orders;\r\nREJ - Rejected",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Status"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalGTCTerminationDays",
+ "Definition":"The number of days this IAA will take to terminate once written notice is given by either the Requesting Agency or Servicing Agency.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Termination Days"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalGTCTitle",
+ "Definition":"The title which is applied to given General Terms and Conditions (GT&C) for a intragovernmental agreement. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: General Terms and Conditions (GT&C) Title"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalGTCTotalDirectCostAmount",
+ "Definition":"Total agreed-upon direct cost for providing the products and/or services specified in the intragovernmental agreement. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Total Direct Cost Amount"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalGTCTotalEstimatedAmount",
+ "Definition":"The agreed-upon sum of direct cost plus overhead fees and charges specified in the intragovernmental agreement. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Total Estimated Amount"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalGTCTotalOverheadFees&ChargesAmount",
+ "Definition":"The total agreed-upon overhead fees & charges for providing the products and/or services specified in the intragovernmental agreement. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Total Overhead Fees & Charges Amount"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalGTCTotalRemainingAmount",
+ "Definition":"The total remaining amount to obligate for the intragovernmental agreement.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.2.1",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Total Remaining Amount"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalIndicator",
+ "Definition":"The indicator denoting whether a payer and payee in a transaction are both federal government entities.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"No;\r\nYes",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderAcceptanceDate",
+ "Definition":"This is the date the intragovernmental order was accepted by Partner 2.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date;\r\n\r\nG-Invoicing: Order Acceptance Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderAcceptancePoint",
+ "Definition":"This field identifies whether the acceptance point is Origin or Destination.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"D - Destination;\r\nS - Source/Origin",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Acceptance Point"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderAdvancePaymentIndicator",
+ "Definition":"Identifies whether advance payments are allowed for the orders supporting the General Terms and Conditions (GT&C) for a intragovernmental agreement. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"N - No;\r\nY - Yes",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Advance Payment Indicator"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderAdvanceRevenueRecognitionDescription",
+ "Definition":"When the Advance Revenue Recognition is other than Straight One, Accrual Per Work or Monthly, this field identifies the specific frequency.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Advance Revenue Recognition Description"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderBillingFrequency",
+ "Definition":"The frequency of an occurrence for an item e.g. collection, bill, invoice.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Billing Frequency"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderBillingFrequencyOtherExplanation",
+ "Definition":"If \"Other\" is selected as the Billing Frequency, the user must add a free form text briefly explaining the Billing Frequency.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Billing Frequency other explanation"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderBonaFideNeed",
+ "Definition":"Sufficient information to describe and support the transaction.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Bona Fide Need"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderBusinessTransactionIdentifier",
+ "Definition":"The Identifier for a business transaction.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Business Transaction Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderBuySellIndicator",
+ "Definition":"Designates whether the intragovernmental order or attachment originated from the Requesting or Servicing agency.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"R - Requesting;\r\nS - Servicing",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Buy/Sell Indicator"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderCapitalizedAssetIndicator",
+ "Definition":"Specifies when the Seller considers the line item to be a capitalized asset. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"F - False;\r\nT - True",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Capitalized Asset Indicator"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderCapitalPlanningAndInvestmentControlScreeningIndicator",
+ "Definition":"Identifies whether the Information Technology (IT) goods or services have been screened to ensure compliance with CPIC requirements.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"F - False;\r\nT - True",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Capital Planning and Investment Control (CPIC) Screening Indicator"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderConstructiveReceiptDays",
+ "Definition":"The number of elapsed days before requesting agency receipt is assumed to occur.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Constructive Receipt Days"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderCreateDate",
+ "Definition":"This is the date that the intragovernmental order was placed. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date;\r\n\r\nG-Invoicing: Order Create Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderDeliveryShippingInformationForProductSpecialShippingInformation",
+ "Definition":"Optional text field to include additional shipping information for the delivery of products. Enter specific information for shipping, shipping company, date/time, special instructions, etc.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Delivery/Shipping Information for Product Special Shipping Information"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderFOBPoint",
+ "Definition":"Specifies at what point the seller transfers ownership of the goods to the buyer. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"D - Destination;\r\nO - Other;\r\nS - Source/Origin",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: FOB Point"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderFundingAgencyCode",
+ "Definition":"The identification code for the agency that provided the requirement and the preponderance of the funds obligated by this transaction and contract action. This code is required for assisted acquisitions and supports requesting agency socioeconomic credit and post award reporting. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Funding Agency Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderFundingOfficeCode",
+ "Definition":"The identification code for the office (or other organizational entity) that provided the requirement and the preponderance of the funds obligated by this transaction and contract action. This code is required for assisted acquisitions and supports requesting agency socioeconomic credit and post award reporting. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Funding Office Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderInspectionPoint",
+ "Definition":"This field identifies whether the inspection point is Origin or Destination.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Inspection Point"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderItemCode",
+ "Definition":"This is the Product Service Code/Federal Supply Code for the item or service associated with the intragovernmental order. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Item Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderItemDescription",
+ "Definition":"This is the basic description of the item between exchanged, including any services or fees charged for assisted acquisitions.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Item Description"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderLineAdvanceAmount",
+ "Definition":"The total amount of the advance for the intragovernmental order line, summed by adding schedule amount(s) where Advance Payment Indicator is True.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Order Line Advance Amount"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderLineCancelStatus",
+ "Definition":"Identifies whether the intragovernmental order line is still active or cancelled.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"A - Active;\r\nC - Cancelled",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Order Line Cancel Status"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderLineNetDueAmount",
+ "Definition":"Total line costs minus advances (if any).",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Order Line Net Due Amount"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderLineNumber",
+ "Definition":"The identifier for a specific line item within the intragovernmental order. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information;\r\nIntragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Order Line Number,\r\nLine Number"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderLineQuantity",
+ "Definition":"The total number of units of the corresponding intragovernmental order schedules.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Order Line Quantity"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderLineScheduleAdvancePaymentIndicator",
+ "Definition":"Controls whether the reimbursable order line schedule allows advances (true) or not (false).",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"F - False;\r\nT - True",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Advance Payment Indicator"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderLineScheduleAmount",
+ "Definition":"The quantity x unit price for this intragovernmental order.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Order Schedule Amount"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderLineScheduleCancelStatus",
+ "Definition":"This is the current status of a given schedule line within a intragovernmental order. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"A - Active;\r\nC - Cancelled",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Cancel Status (schedule)"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderLineScheduleNumber",
+ "Definition":"The identifier for a specific intragovernmental order within the line item that contains the detailed financial and shipping information. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information;\r\nIntragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Schedule Number"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderLineScheduleQuantity",
+ "Definition":"The total number of units for the intragovernmental order.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Order Schedule Quantity"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderLineScheduleUnitPrice",
+ "Definition":"The cost of each unit for the intragovernmental order.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information;\r\nIntragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Order Schedule Unit Price,\r\nPrice"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderLineTotalAmount",
+ "Definition":"The intragovernmental order line amount (quantity x unit price).",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Total Line Amount"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderModificationNumber",
+ "Definition":"An identifier assigned to a intragovernmental order by the system when a modification is made to the original order record. \r\n",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Order Modification Number"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderNumber",
+ "Definition":"A unique number used to identify the intragovernmental order created from the General Terms and Conditions (GT&C). ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information;\r\nIntragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Order Number"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderOriginatingPartnerIndicator",
+ "Definition":"Identifies the trading partner that first introduces intragovernmental orders to G-Invoicing under the General Terms and Conditions (GT&C) agreement.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Order Originating Partner Indicator"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderPerformancePeriodEndDate",
+ "Definition":"The date on which the intragovernmental order performance will end. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date;\r\n\r\nG-Invoicing: Performance Period End Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderPerformancePeriodStartDate",
+ "Definition":"The date on which the intragovernmental order performance will start. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date;\r\n\r\nG-Invoicing: Performance Period Start Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderPlaceOfAcceptance",
+ "Definition":"This is the location at which the goods or services will be accepted.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Place of Acceptance"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderPlaceOfInspection",
+ "Definition":"This is the location at which the goods or services will be inspected.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Place of Inspection"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderProductServiceIdentifier",
+ "Definition":"This is the National Stock Number (NSN) or other pertinent information associated with the intragovernmental order line.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Product/Service Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderRejectionReason",
+ "Definition":"Comments associated with why the intragovernmental order document was rejected.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Rejection Reason"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderStatusCode",
+ "Definition":"This code identifies the current status of the intragovernmental order.\r\n",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"CLZ - Closed;\r\nDR - Draft;\r\nP1A - Pending Partner 1 Approval;\r\nP2A - Pending Partner 2 Approval;\r\nREC - Open;\r\nREJ - Rejected;\r\nSP2 - Shared with Partner 2;\r\nXXX - Deleted",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Order Status Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderStatutoryAuthorityFundTypeCitation",
+ "Definition":"This is the citation associated with the authority that allows the Requesting Agency to purchase products and/or services from another Federal Agency. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Statutory Authority Fund Type Citation"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderStatutoryAuthorityFundTypeCode",
+ "Definition":"This identifies the type of authority that allows the Requesting Agency to purchase products and/or services from another Federal Agency.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Statutory Authority Fund Type Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderStatutoryAuthorityFundTypeTitle",
+ "Definition":"This is the title associated with the authority that allows the Requesting Agency to purchase products and/or services from another Federal Agency. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Statutory Authority Fund Type Title"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderTotalAdvanceAmount",
+ "Definition":"The total of all intragovernmental order line advance amounts.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Total Advance Amount"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderTotalAmount",
+ "Definition":"Intragovernmental Order Total Advance Amount plus Intragovernmental Order Total Net Amount.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Total Order Amount"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderTotalNetAmount",
+ "Definition":"The total of all reimbursable order line net due amounts.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Total Net Order Amount"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderUIDRequiredIdentifier",
+ "Definition":"Specifies whether or not the item requires a unique item identifier (UII) marking.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"F - False;\r\nT - True",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: UID Required Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrderVoidOrCloseComments",
+ "Definition":"Comments associated with why the intragovernmental order was closed or voided.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Void or Close Comments"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrganizationalGroupDescription",
+ "Definition":"Descriptive representation of an intragovernmental buy-sell activity organizational group.",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Organization Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Organizational Group Description"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrganizationalGroupName",
+ "Definition":"A unique and recognizable name for a intragovernmental buy-sell activity organizational group within an agency.",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Organization Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Organizational Group Name"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrganizationalGroupStatusCode",
+ "Definition":"The code that indicates if the intragovernmental buy-sell activity organizational group is active or inactive.",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Organization Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"A- Active;\r\nI - Inactive",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Organizational Group Status Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalOrganizationGroupIdentifier",
+ "Definition":"A unique identifier for a intragovernmental buy-sell activity organizational group within the Federal government.",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Organization Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Organization Group Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalPerformanceAccountingPeriod",
+ "Definition":"The fiscal period that the intragovernmental agreement transaction is reflected in the general ledger accounts and reported on financial reports. ",
+ "Activity Reference":"FFM.030.030 Payment Processing – Intragovernmental Payments;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":202201,
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing:\r\nAccounting Period"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalPerformanceBuySellIndicator",
+ "Definition":"Designates whether the intragovernmental performance transaction or attachment originated from the Requesting or Servicing agency.",
+ "Activity Reference":"FFM.030.030 Payment Processing – Intragovernmental Payments;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"R - Requesting;\r\nS - Servicing",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Buyer/Seller Indicator"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalPerformanceComments",
+ "Definition":"Additional information, particularly for intragovernmental performance adjustments. ",
+ "Activity Reference":"FFM.030.030 Payment Processing – Intragovernmental Payments;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Comments"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalPerformanceDate",
+ "Definition":"The date on which the intragovernmental performance originated. ",
+ "Activity Reference":"FFM.030.030 Payment Processing – Intragovernmental Payments;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date;\r\n\r\nG-Invoicing: Performance Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalPerformanceDetailNumber",
+ "Definition":"Uniquely identifies a specific detail record within the intragovernmental performance transaction. (Agency supplied).",
+ "Activity Reference":"FFM.030.030 Payment Processing – Intragovernmental Payments;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Performance Detail Number"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalPerformanceNumber",
+ "Definition":"A number for a intragovernmental performance transaction, assigned by G-Invoicing (GINV) at the time the transaction is recorded in GINV.\r\n",
+ "Activity Reference":"FFM.030.030 Payment Processing – Intragovernmental Payments;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Performance Number"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalPerformanceQuantity",
+ "Definition":"The number of units pertaining to the type of intragovernmental performance being reported.",
+ "Activity Reference":"FFM.030.030 Payment Processing – Intragovernmental Payments;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Quantity"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalPerformanceReferenceDetailNumber",
+ "Definition":"A number that links a new intragovernmental performance detail to an existing one.",
+ "Activity Reference":"FFM.030.030 Payment Processing – Intragovernmental Payments;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Reference Detail Number"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalPerformanceStatusCode",
+ "Definition":"The current status of the intragovernmental performance document.",
+ "Activity Reference":"FFM.030.030 Payment Processing – Intragovernmental Payments;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"ERR - Settlement failed;\r\nINF - Informational: does not trigger settlement;\r\nPND - Settlement is currently pending;\r\nPRE - Previously settled: funds already moved outside of G-Invoicing;\r\nSTL - Settlement has occurred;\r\nXXX - Performance was (logically) deleted",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Status Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalPerformanceTransactionReceivedDate",
+ "Definition":"The date the intragovernmental performance transaction was received by a system, e.g. G-Invoicing.",
+ "Activity Reference":"FFM.030.030 Payment Processing – Intragovernmental Payments;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date;\r\n\r\n G-Invoicing: Transaction Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalPerformanceTransferAmount",
+ "Definition":"The intragovernmental performance amount settled (when applicable), calculated as quantity times price.",
+ "Activity Reference":"FFM.030.030 Payment Processing – Intragovernmental Payments;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Transfer Amount"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalPerformanceTransferDate",
+ "Definition":"The date that intragovernmental performance funds are transferred into or out of the TGA. (Equivalent to IPAC's Accomplished Date)",
+ "Activity Reference":"FFM.030.030 Payment Processing – Intragovernmental Payments;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date;\r\n\r\nG-Invoicing: Transfer Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalPerformanceTypeCode",
+ "Definition":"Identifies the nature of the intragovernmental performance in the reported transaction.",
+ "Activity Reference":"FFM.030.030 Payment Processing – Intragovernmental Payments;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"014 - Deferred Payment;\r\n035 - Delivered/Performed;\r\n050 - Received/Accepted;\r\n548 - Advance",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Performance Type"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalPriorityOrderIndicator",
+ "Definition":"Identifies whether the intragovernmental order is a high priority.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"F - False;\r\nT - True",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Priority Order Indicator"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalReferencePerformanceNumber",
+ "Definition":"A number that links a new intragovernmental performance transaction to an existing one.",
+ "Activity Reference":"FFM.030.030 Payment Processing – Intragovernmental Payments;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Reference Performance Number"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalServiceRequirementsTypeCode",
+ "Definition":"A code for the type of service requirements. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Non-severable Service;\r\nNot Applicable;\r\nSeverable Service",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Type of Service Requirements"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalShipToAgencyTitle",
+ "Definition":"The name of the Agency at the ship to location.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Ship To Agency Title"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalShipToLocationDescription",
+ "Definition":"The description for a shipping end point or location associated with an intragovernmental agreement. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Ship to Location Description"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalShipToLocationIdentifier",
+ "Definition":"The identifer for a shipping end point or location associated with an intragovernmental agreement. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Ship To Address Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntraGovernmentalTransactionDate",
+ "Definition":"The transaction date for Intragovernmental transaction.",
+ "Activity Reference":"FFM.030.030 Payment Processing – Intragovernmental Payments;",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalUnitOfMeasure",
+ "Definition":"Units in which a quantity is being expressed for a intragovernmental order or performance line.",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information;\r\nIntragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Unit Of Measure,\r\nReimbursable Line Costs Unit of Measure"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IntragovernmentalUnitofMeasureDescription",
+ "Definition":"The basic description of the unit of measure being exchanged between the Requesting and Servicing Agencies. ",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information;\r\nIntragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Unit of Measure Description"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"InvoiceStatusCode",
+ "Definition":"The status of the invoice after Buyer review.",
+ "Activity Reference":"FFM.030.030 Payment Processing - Intragovernmental Payments;\r\nFFM.030.040 Payment Processing - Payroll Payments;\r\nFFM.030.050 Payment Processing - Travel TDY and Local Payments;\r\nFFM.030.060 Payment Processing - Travel PCS Payments;\r\nFFM.030.070 Payment Processing - Commercial Payments;\r\nFFM.030.080 Payment Processing - Grant Payments;\r\nFFM.030.090 Payment Processing - Loan Payments;\r\nFFM.030.100 Payment Processing - Other Payments (Foreign and Miscellaneous Payments);\r\nFFM.030.130 Payment Reporting;\r\nFFM.060.040 Public Receipt Processing;\r\n",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Approved;\r\nRejected",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IRS_TaxIndicator",
+ "Definition":"The indicator denoting whether an item is an IRS tax transaction.",
+ "Activity Reference":"FFM.040.010 Revenue Processing;\r\nFFM.040.020 Revenue Reporting;\r\nFFM.060.040 Public Receipt Processing;\r\nFFM.090.030 Accrual and Liability Processing",
+ "Business Capability Reference":"FFMSR 1.1.5.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IsDepositTicket",
+ "Definition":"Indicates whether this record is a deposit ticket or debit voucher.",
+ "Activity Reference":"FFM.100.010 Reconciliation of General Ledger and Sub-ledgers",
+ "Business Capability Reference":"FFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IsValidAccountSymbol",
+ "Definition":"Indicates whether or not a Treasury Account is considered valid. Valid accounts are active and pass all classification rules.",
+ "Activity Reference":"FFM.110.010 Treasury Reporting",
+ "Business Capability Reference":"FFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"IsVoidedCheck",
+ "Definition":"Indicates whether the check has been voided in the process of printing.",
+ "Activity Reference":"FFM.030.130 Payment Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.3.1;\r\nFFMSR 2.2.3.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"JournalEntryNumber",
+ "Definition":"Identifies a specific posting of debit-credit entries to the general ledger journal and is generated at the time of posting. ",
+ "Activity Reference":"FFM.090.040 Period End Closing",
+ "Business Capability Reference":"FFMSR 2.2.1.4",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"JudgementDate",
+ "Definition":"The date the judgment on the debt was obtained.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"JudgmentOrNonJudgmentCode",
+ "Definition":"Indicates whether the debt is judgment or non judgment.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LastDebtorContactDate",
+ "Definition":"The date the Creditor Agency last contacted the debtor for this case.",
+ "Activity Reference":"FFM.060.040 Public Receipt Processing;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LastInterestCalculationDate",
+ "Definition":"The date the interest was last calculated on the debt.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LastPaymentAmountPriorToReferral",
+ "Definition":"The amount of last payment to Creditor Agency by the debtor before referral to Cross-Servicing.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.5.7;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LastPaymentDatePriorToReferral",
+ "Definition":"The date of the last payment to Creditor Agency by the debtor before referral to Cross-Servicing.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LastPenaltyCalculationDate",
+ "Definition":"The date the penalty was last calculated on the debt.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LateInterestPenaltyPaymentAmount",
+ "Definition":"The interest amount owed to the vendor under the Prompt Payment Act for late payments.",
+ "Activity Reference":"FFM.030.100 Payment Processing - Other Payments (Foreign and Miscellaneous Payments)",
+ "Business Capability Reference":"FFMSR 2.2.2.1",
+ "Authoritative and Other Reference(s)":"Definition (compiled from)\r\n(5) 31 U.S.C. 39 – Prompt Payment;\r\n(7) 5 CFR 1315, Prompt Payment: 1315.2 Definitions, 1315.7 Discounts, 1315.9 Required documentation, 1315.10 Late payment interest penalties, 1315.11 Additional penalties, and 1315.5 Accelerated payment methods\r\n",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalEntityAddressLine1",
+ "Definition":"First line of where the legal entity's legal address is located.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(4) 2 CFR 25.350;\r\n(11) FAR 4.1102, System for Award Management: Policy;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov;\r\n(54) FAR 4.11, System for Award Management (SAM);\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"FFM Transaction Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"(38) USPS Quality Solutions: Address Quality\r\n\r\nUse USPS Address Quality Solutions service for validation: https://postalpro.usps.com/address-quality ",
+ "Related Data Element Reference(s)":"Common: AddressLine1Text;\r\n\r\nDAIMS: LegalEntityAddressLine1;\r\n\r\nG-Invoicing: Ship to Address 1;\r\n\r\nGSA SAM: PHYSICAL ADDRESS LINE 1;\r\n\r\nGSA SAM: MAILING ADDRESS LINE 1\r\n"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalEntityAddressLine2",
+ "Definition":"Second line of where the legal entity's legal address is located.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(4) 2 CFR 25.350;\r\n(11) FAR 4.1102, System for Award Management: Policy;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov; \r\n(54) FAR 4.11, System for Award Management (SAM);\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"FFM Transaction Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"(38) USPS Quality Solutions: Address Quality\r\n\r\nUse USPS Address Quality Solutions service for validation: https://postalpro.usps.com/address-quality ",
+ "Related Data Element Reference(s)":"Common: AddressLine2Text;\r\n\r\nDAIMS: LegalEntityAddressLine2\r\n\r\nG-Invoicing: Ship to Address 2;\r\n\r\nGSA SAM: PHYSICAL ADDRESS LINE 2;\r\n\r\nGSA SAM: MAILING ADDRESS LINE 2"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalEntityAddressLine3",
+ "Definition":"Third line of where the legal entity's legal address is located.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(4) 2 CFR 25.350;\r\n(11) FAR 4.1102, System for Award Management: Policy;\r\n(54) FAR 4.11, System for Award Management (SAM);\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"FFM Transaction Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"(38) USPS Quality Solutions: Address Quality\r\n\r\nUse USPS Address Quality Solutions service for validation: https://postalpro.usps.com/address-quality ",
+ "Related Data Element Reference(s)":"Common: AddressLine3Text;\r\n\r\nG-Invoicing: Ship to Address 3"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalEntityCityCode",
+ "Definition":"Code for the city in which the legal entity's domestic address is located.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(4) 2 CFR 25.350;\r\n(11) FAR 4.1102, System for Award Management: Policy;\r\n(54) FAR 4.11, System for Award Management (SAM);\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"FFM Transaction Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"NNNNN",
+ "Min Length":5,
+ "Max Length":5,
+ "Example Value":86230,
+ "Domain Values":"(39) Census, American National Standards Institute (ANSI) and Federal Information Processing Series (FIPS) Codes;\r\n\r\nhttps://www.census.gov/library/reference/code-lists/ansi.html\r\n\r\nScroll to the section \"Place\". Select \"United States\" from the dropdown menu. Download text file. Extract \"PLACEFP\". Also extract \"STATEFP\" because city codes are not unique across states \r\n\r\nNOTE: The Census city file contains city codes for both U.S. states and territories",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Census: PLACEFP;\r\n\r\nCommon: CityCode;\r\n\r\nGSA GLC: City Code;\r\n\r\nGSA SAM: PHYSICAL ADDRESS CITY;\r\n\r\nGSA SAM: MAILING ADDRESS CITY"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalEntityCityName",
+ "Definition":"Name of the city in which the legal entity's domestic address is located.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(4) 2 CFR 25.350;\r\n(11) FAR 4.1102, System for Award Management: Policy;\r\n(54) FAR 4.11, System for Award Management (SAM) ;\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"FFM Transaction Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(39) Census, American National Standards Institute (ANSI) and Federal Information Processing Series (FIPS) Codes;\r\n https://www.census.gov/library/reference/code-lists/ansi.html\r\n\r\nScroll to the section \"Place\". Select \"United States\" from the dropdown menu. Download text file. Extract \"PLACENAME\"\r\n\r\nNOTE: The Census city file contains city names for both U.S. states and territories",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Census: PLACENAME;\r\n\r\nCommon: CityName\r\n\r\nGSA GLC: City Name;\r\n\r\nG-Invoicing: Ship To City;\r\n\r\nGSA SAM: PHYSICAL ADDRESS CITY;\r\n\r\nGSA SAM: MAILING ADDRESS CITY"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalEntityCountryCode",
+ "Definition":"Code for the country in which the legal entity's legal address is located. ",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(4) 2 CFR 25.350;\r\n(11) FAR 4.1102, System for Award Management: Policy;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov; \r\n(54) FAR 4.11, System for Award Management (SAM);\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"FFM Transaction Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"NNN",
+ "Min Length":3,
+ "Max Length":3,
+ "Example Value":840,
+ "Domain Values":"(37) NGA.mil, NSG Standards Registry GENC Standard\r\n\r\nAPI: https://nsgreg.nga.mil/restApi/GeopoliticalEntityResources.jsp\r\n\r\nFile: https://nsgreg.nga.mil/doc/view?i=2624\r\nSelect \"Document Download\" and download the GENC mapping file. Go to the tab titled \"GE - GENC to ISO 3166\" and use the column titled \"Numeric Code\"\r\n",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: CountryCode\r\n\r\nDAIMS: LegalEntityCountryCode;\r\n\r\nGENC: Numeric Code;\r\n\r\nG-Invoicing: Ship to Country Code;\r\n\r\nGSA SAM: PHYSICAL ADDRESS COUNTRY;\r\n\r\nGSA SAM: MAILING ADDRESS COUNTRY"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalEntityCountryName",
+ "Definition":"Name of the country in which the legal entity's legal address is located. ",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(4) 2 CFR 25.350;\r\n(11) FAR 4.1102, System for Award Management: Policy;\r\n(33) DATA Act Information Model Schema (DAIMS); \r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov;\r\n(54) FAR 4.11, System for Award Management (SAM);\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell\r\n",
+ "Data Group Name":"FFM Transaction Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(37) NGA.mil, NSG Standards Registry GENC Standard;\r\n\r\nhttps://nsgreg.nga.mil/doc/view?i=2624\r\n\r\nSelect \"Document Dowload\" to download the GENC mapping file. Go to the tab titled \"GE - GENC to ISO 3166\" and use the column titled \"Name\"\r\n",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: CountryName;\r\n\r\nDAIMS: LegalEntityCountryName;\r\n\r\nGENC: Name;\r\n\r\nGSA SAM: PHYSICAL ADDRESS COUNTRY;\r\n\r\nGSA SAM: MAILING ADDRESS COUNTRY"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalEntityCountyCode",
+ "Definition":"A code for the county in which the legal entity's domestic address is located.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(4) 2 CFR 25.350;\r\n(33) DATA Act Information Model Schema (DAIMS); \r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov; \r\n(54) FAR 4.11, System for Award Management (SAM);\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell\r\n",
+ "Data Group Name":"FFM Transaction Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"NNN",
+ "Min Length":3,
+ "Max Length":3,
+ "Example Value":"059",
+ "Domain Values":"(39) Census, American National Standards Institute (ANSI) and Federal Information Processing Series (FIPS) Codes;\r\n\r\nhttps://www.census.gov/library/reference/code-lists/ansi.html\r\n\r\nNavigate to the section \"County and County Equivalents\". Select \"United States\" from the dropdown menu. Download text file. Extract \"COUNTYFP\". Also extract \"STATEFP\" because county codes are not unique across states\r\n\r\nNOTE: The Census county file contains counties for both U.S. states and territories",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Census: COUNTYFP;\r\n\r\nCommon: CountyCode;\r\n\r\nGSA GLC: County Code\r\n\r\nDAIMS: LegalEntityCountyCode"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalEntityCountyName",
+ "Definition":"A name for the county in which the legal entity's domestic address is located.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(4) 2 CFR 25.350; \r\n(54) FAR 4.11, System for Award Management (SAM);\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"FFM Transaction Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(39) Census, American National Standards Institute (ANSI) and Federal Information Processing Series (FIPS) Codes;\r\n https://www.census.gov/library/reference/code-lists/ansi.html\r\n\r\nNavigate to the section \"County and County Equivalents\". Select \"United States\" from the dropdown menu. Download text file. Extract \"COUNTYNAME\"\r\n\r\nNOTE: The Census county file contains counties for both U.S. states and territories",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Census: COUNTYNAME;\r\n\r\nCommon: CountyName;\r\n\r\nGSA GLC: County Name "
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalEntityDBAName",
+ "Definition":"The name that an organization is using to do business. ",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy; \r\n(54) FAR 4.11, System for Award Management (SAM)\r\n",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"GSA SAM: DBA_NAME"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalEntityForeignCityCode",
+ "Definition":"Code for the city in which the legal entity's foreign address is located.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(4) 2 CFR 25.350;\r\n(11) FAR 4.1102, System for Award Management: Policy;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"NNNN",
+ "Min Length":4,
+ "Max Length":4,
+ "Example Value":2500,
+ "Domain Values":"(36) GSA.gov, Geographic Locator Codes (GLCs);\r\n\r\nhttps://www.gsa.gov/reference/geographic-locator-codes/glcs-for-foreign-countries-with-cities-provinces\r\n\r\nSelect and download the file titled \"FRPP GLC Foreign Country Codes\". Retrieve the \"City Code\". Also retrieve \"New Country Code\" because foreign city codes are not unique across foreign countries",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: ForeignCityCode;\r\n\r\nGSA GLC: City Code;\r\n\r\nGSA SAM: PHYSICAL ADDRESS CITY;\r\n\r\nGSA SAM: MAILING ADDRESS CITY"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalEntityForeignCityName",
+ "Definition":"Name of the city in which the legal entity's foreign address is located.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(4) 2 CFR 25.350;\r\n(11) FAR 4.1102, System for Award Management: Policy;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov;\r\n(54) FAR 4.11, System for Award Management (SAM);\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell\r\n",
+ "Data Group Name":"FFM Transaction Information;",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(36) GSA.gov, Geographic Locator Codes (GLCs);\r\n\r\nhttps://www.gsa.gov/reference/geographic-locator-codes/glcs-for-foreign-countries-with-cities-provinces\r\n\r\nSelect and download the file titled \"FRPP GLC Foreign Country Codes\" and use the column titled \"City Name\"\r\n",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: ForeignCityName;\r\n\r\nGSA GLC: City Name;\r\n\r\nG-Invoicing: Ship To City;\r\n\r\nGSA SAM: PHYSICAL ADDRESS CITY;\r\n\r\nGSA SAM: MAILING ADDRESS CITY;\r\n\r\nDAIMS: LegalEntityForeignCityName"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalEntityForeignPostalCode",
+ "Definition":"Postal code in which legal entity's foreign address is located.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(4) 2 CFR 25.350;\r\n(11) FAR 4.1102, System for Award Management: Policy\r\n(33) DATA Act Information Model Schema (DAIMS);;\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov;\r\n(54) FAR 4.11, System for Award Management (SAM);\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"FFM Transaction Information;",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"Use validation service to validate foreign postal codes",
+ "Related Data Element Reference(s)":"Common: ForeignPostalCode;\r\n\r\nDAIMS: LegalEntityForeignPostalCode;\r\n\r\nG-Invoicing: Ship to Postal Code;\r\n\r\nGSA SAM: PHYSICAL ADDRESS ZIP CODE +4;\r\n\r\nGSA SAM: MAILING ADDRESS ZIP/POSTAL CODE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalEntityForeignSubdivisionCode",
+ "Definition":"Code for the country's subdivsion (e.g., state, provice, locality) in which the legal entity's foreign address is located.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(4) 2 CFR 25.350;\r\n(11) FAR 4.1102, System for Award Management: Policy;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"AA-XXX",
+ "Min Length":"",
+ "Max Length":6,
+ "Example Value":"AF-BDS",
+ "Domain Values":"(37) NGA.mil, NSG Standards Registry GENC Standard;\r\n\r\nhttps://nsgreg.nga.mil/doc/view?i=2624\r\n\r\nSelect \"Download Document\" and download the GENC mapping file. Go to the tab titled \"AS - GENC to ISO 3166\". Retrieve the \"6-character Code\"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: ForeignSubdivisionCode;\r\n\r\nGENC: Code;\r\n\r\nGSA SAM: PHYSICAL ADDRESS STATE OR PROVINCE;\r\n\r\nGSA SAM: MAILING ADDRESS STATE OR PROVINCE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalEntityForeignSubdivisionName",
+ "Definition":"Name for the country's subdivsion (e.g., state, provice, locality) in which the legal entity's foreign address is located.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(4) 2 CFR 25.350;\r\n(11) FAR 4.1102, System for Award Management: Policy;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(37) NGA.mil, NSG Standards Registry GENC Standard;\r\n\r\nhttps://nsgreg.nga.mil/doc/view?i=2624\r\n\r\nSelect \"Download Document\" and download the GENC mapping file. Go to the tab titled \"AS - GENC to ISO 3166\". Retrieve the \"Administrative Subdivision Preferred Name\"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: ForeignSubdivisionName;\r\n\r\nDAIMS: LegalEntityForeignProvinceName;\r\n\r\nGENC: Administrative Subdivision Preferred Name;\r\n\r\nGSA SAM: PHYSICAL ADDRESS STATE OR PROVINCE;\r\n\r\nGSA SAM: MAILING ADDRESS STATE OR PROVINCE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalEntityIdentifier",
+ "Definition":"An identifier that uniquely identifies the entity.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(3) 2 CFR 25, Universal Identifier and System for Award Management;\r\n2 CFR 25, Universal Identifier and System for Award Management\r\n(10) FAR 4.9, Taxpayer Identification Number Information;\r\n(11) FAR 4.1102, System for Award Management: Policy\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov; \r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: EntityIdentifierCode;\r\n\r\nDAIMS: AwardeeOrRecipientDUNS,\r\nAwardeeOrRecipientUEI;\r\n\r\nGSA SAM: UNIQUE ENTITY IDENTIFIER;\r\n\r\nGSA SAM: TIN\r\n\r\nNOTE: References to DUNS have been retained to accommodate historical data\r\n\r\n"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalEntityIdentifierTypeCode",
+ "Definition":"The code that identifies the type of legal entity identifier. ",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(3) 2 CFR 25, Universal Identifier and System for Award Management;\r\n(10) FAR 4.9, Taxpayer Identification Number Information;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"DUNS Number;\r\nEmployer Identification Number (EIN);\r\nIndividual Taxpayer Identification Number (ITIN);\r\nOther;\r\nPreparer Taxpayer Identification Number (PTIN)\r\nSocial Security Number (SSN);\r\nTax Identification Number (TIN);\r\nTaxpayer Identification Number for Pending U.S. Adoptions (ATIN)\r\nTraveler Personnel ID;\r\nUnique Entity Identifier (UEI)\r\n\r\nNOTE: References to DUNS have been retained to accommodate historical data\r\n\r\n",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: EntityIdentifierTypeCode"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalEntityOrganizationName",
+ "Definition":"The name of the organization associated with the entity identifier.",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance;",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: EntityOrganizationName;\r\n\r\nDAIMS: AwardeeOrRecipientLegalEntityName;\r\n\r\nGSA SAM: LEGAL BUSINESS NAME"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalEntityRoleTypeCode",
+ "Definition":"Identifies the role of the party in the financial transaction. ",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Contact;\r\nCustomer;\r\nEmployee;\r\nGrantee;\r\nTraveler;\r\nVendor\r\n\r\n\r\n\r\n",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalEntityStateOrTerritoryCode",
+ "Definition":"Code for the state or territory in which the legal entity's domestic address is located.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy;\r\n(33) DATA Act Information Model Schema (DAIMS); \r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov;\r\n(54) FAR 4.11, System for Award Management (SAM);\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell\r\n",
+ "Data Group Name":"FFM Transaction Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"NN",
+ "Min Length":2,
+ "Max Length":2,
+ "Example Value":51,
+ "Domain Values":"(40) Census, TIGERweb Nation-Based Data Files;\r\n\r\nhttps://tigerweb.geo.census.gov/tigerwebmain/TIGERweb_nation_based_files.html \r\n\r\nScroll to the section \"States and Counties\". Select \"States - Current\". Download text file. Extract \"STATE\"\r\n\r\nNOTE: The Census state file contains both U.S. states and territories",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Census: STATE;\r\n\r\nCommon: StateOrTerritoryCode;\r\n\r\nGSA GLC: State Code;\r\n\r\nDAIMS: LegalEntityStateCode;\r\n\r\nGSA SAM: PHYSICAL ADDRESS STATE OR PROVINCE;\r\n\r\nGSA SAM: MAILING ADDRESS STATE OR PROVINCE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalEntityStateOrTerritoryName",
+ "Definition":"Name of the state or territory in which the legal entity's domestic address is located.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov;\r\n(54) FAR 4.11, System for Award Management (SAM);\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell\r\n",
+ "Data Group Name":"FFM Transaction Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(40) Census, TIGERweb Nation-Based Data Files;\r\n https://tigerweb.geo.census.gov/tigerwebmain/TIGERweb_nation_based_files.html \r\n\r\nScroll to the section \"States and Counties\". Select \"States - Current\". Download text file. Extract \"NAME\"\r\n\r\nNOTE: The Census state file contains both U.S. states and territories",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Census: NAME;\r\n\r\nCommon: StateOrTerritoryName;\r\n\r\nDAIMS: LegalEntityStateDescription;\r\n\r\nG-Invoicing: Ship To State;\r\n\r\nGSA GLC: State Name;\r\n\r\nGSA SAM: PHYSICAL ADDRESS STATE OR PROVINCE;\r\n\r\nGSA SAM: MAILING ADDRESS STATE OR PROVINCE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalEntityTypeCode",
+ "Definition":"The category of the entity regardless of the type of financial transaction conducted.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy;\r\n(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Business;\r\nEducational Institution;\r\nFederal Government;\r\nForeign/Sovereign Government;\r\nIndividual;\r\nState/Local Government;\r\nTribal Government ",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: EntityTypeCode;\r\n\r\nGSA SAM: ENTITY STRUCTURE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalEntityZIP5Number",
+ "Definition":"USPS five digit zoning code associated with the legal entity's domestic address.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov;\r\n(54) FAR 4.11, System for Award Management (SAM);\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"FFM Transaction Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"(38) USPS Quality Solutions: Address Quality\r\n\r\nUse USPS Address Quality Solutions service for validation: https://postalpro.usps.com/address-quality ",
+ "Related Data Element Reference(s)":"Common: ZipCode;\r\n\r\nG-Invoicing: Ship to Postal Code;\r\n\r\nGSA SAM: PHYSICAL ADDRESS ZIP CODE +4;\r\n\r\nGSA SAM: MAILING ADDRESS ZIP/POSTAL CODE;\r\n\r\nDAIMS: LegalEntityZIP5"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalEntityZIPLast4Number",
+ "Definition":"USPS four digit extension code associated with the legal entity's domestic address. ",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy; \r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov;\r\n(54) FAR 4.11, System for Award Management (SAM);\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell\r\n",
+ "Data Group Name":"FFM Transaction Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"(38) USPS Quality Solutions: Address Quality\r\n\r\nUse USPS Address Quality Solutions service for validation: https://postalpro.usps.com/address-quality ",
+ "Related Data Element Reference(s)":"Common: Zip+4Code;\r\n\r\nDAIMS: LegalEntityZIP+4;\r\n\r\nG-Invoicing: Ship to Postal Code;\r\n\r\nGSA SAM: PHYSICAL ADDRESS ZIP CODE +4;\r\n\r\nGSA SAM: MAILING ADDRESS ZIP/POSTAL CODE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"LegalTransactionAmount",
+ "Definition":"The amount that should have been reported on the original transaction. For an encoded error, this amount equals the amount of the adjustment transaction plus the OriginalRecordedAmount.",
+ "Activity Reference":"FFM.030.030 Payment Processing - Intragovernmental Payments;\r\nFFM.030.040 Payment Processing - Payroll Payments;\r\nFFM.030.050 Payment Processing - Travel TDY and Local Payments;\r\nFFM.030.060 Payment Processing - Travel PCS Payments;\r\nFFM.030.070 Payment Processing - Commercial Payments;\r\nFFM.030.080 Payment Processing - Grant Payments;\r\nFFM.030.090 Payment Processing - Loan Payments;\r\nFFM.030.100 Payment Processing - Other Payments (Foreign and Miscellaneous Payments);\r\nFFM.040.010 Revenue Processing;\r\nFFM.040.020 Revenue Reporting;\r\nFFM.060.020 Public Receivable Set-up and Invoicing;\r\nFFM.060.030 Public Receivable Credit Memo and Adjustment Processing;\r\nFFM.060.040 Public Receipt Processing;\r\nFFM.090.030 Accrual and Liability Processing;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity;\r\nFFM.110.030 Cash Forecasting and Reporting;\r\nFFM.110.010 Treasury Reporting",
+ "Business Capability Reference":"FFMSR 1.1.4.3;\r\nFFMSR 1.1.5.1;\r\nFFMSR 1.1.5.4;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.2.1.2;\r\nFFMSR 2.2.2.4;\r\nFFMSR 2.2.2.5;\r\nFFMSR 2.2.4.2;\r\nFFMSR 2.2.4.3;\r\nFFMSR 2.2.5.1 ",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"MainAccountCode",
+ "Definition":"The Treasury Account Symbol (TAS) component that represents the type and purpose of the fund.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov;\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information;\r\nTreasury Account Symbol (TAS) Information;\r\nProgram Activity Group Information;\r\nIntragovernmental Organization Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nFFM-DATA Act Files BIE;\r\nFFM-GTAS BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"5531",
+ "Domain Values":"(129) Treasury Bureau of Fiscal Service Shared Accounting Module (SAM) Service: Treasury Account Symbol (TAS-BETC)\r\n\r\nhttps://www.fiscal.treasury.gov/sam/ ",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: MainAccountCode;\r\n\r\nG-Invoicing: Main Account Code;\r\n\r\nUSASpending.gov: MAIN_ACCOUNT_CODE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"MajorObjectClass",
+ "Definition":"According to OMB Circular A-11, Section 83, \"Object classes are categories in a classification system that presents obligations by the items or services purchased by the Federal Government.\" The Budget Object Class (BOC) Information Data Group consists of four components that combine to create a 7-digit BOC. The Major Object Class component of the BOC consists of the first character of the 7-digit BOC. When concatenated, the Major Object Class, the Minor Object Class, and the Sub-Object Class create the four-character string known as Object Class for GTAS and DATA Act reporting. Note: when reporting or exchanging data with budget formulation or execution systems such as OMB MAX, OMB may refer to Major Object Class with a constant trailing zero following the first character, e.g., Major Object Class of \"1\" equals OMB-reportable Major Object Class of \"10.\"",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(33) DATA Act Information Model Schema (DAIMS);\r\n(46) OMB Circular A-11, Section 83;\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information;\r\nBudget Object Class (BOC) Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nFFM-DATA Act Files BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":1,
+ "Max Length":1,
+ "Example Value":"",
+ "Domain Values":"(46) OMB Circular A-11, Section 83;\r\n\r\nhttps://www.whitehouse.gov/wp-content/uploads/2018/06/s83.pdf\r\n\r\nNOTE: As of 2022, the only valid domain values are: 1, 2, 3, 4, and 9, excluding the additional padding zero used in OMB language.",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: ObjectClass"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"MinorObjectClass",
+ "Definition":"According to OMB Circular A-11, Section 83, \"Object classes are categories in a classification system that presents obligations by the items or services purchased by the Federal Government.\" The Budget Object Class (BOC) Information Data Group consists of four components that combine to create a 7-digit BOC. The Minor Object Class component of the BOC consists of the second character of the 7-digit BOC. When concatenated, the Major Object Class, the Minor Object Class, and the Sub-Object Class create the four-character string known as Object Class for GTAS and DATA Act reporting.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(33) DATA Act Information Model Schema (DAIMS);\r\n(46) OMB Circular A-11, Section 83;\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information;\r\nBudget Object Class (BOC) Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nFFM-DATA Act Files BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":1,
+ "Max Length":1,
+ "Example Value":"",
+ "Domain Values":"(46) OMB Circular A-11, Section 83;\r\n\r\nhttps://www.whitehouse.gov/wp-content/uploads/2018/06/s83.pdf",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: ObjectClass"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"NationalBankID",
+ "Definition":"(aka: Branch Code or BSB Code) A six digit unique bank identification code traditionally used by the British Banking System. This is a legacy identifier which is being increasingly replaced by the use of the standard SWIFT Bank Identification Code (BIC). Australian and South African have legacy Sort and Branch Codes using the same six digit formatting which are based on the British Sort Code system. Australia calls these \"BSB\" codes for \"bank-state-branch\" while South Africa calls them Sort or Branch Codes.",
+ "Activity Reference":"FFM.030.130 Payment Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.3.1;\r\nFFMSR 2.2.3.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Bank Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"NetOutlaysAmount",
+ "Definition":"The amount representing the net of collections and disbursements reported to date for the current fiscal year for the TAS.",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control\r\n ",
+ "Business Capability Reference":"FFMSR 2.1.2.3",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"NonDomesticBankIndicator",
+ "Definition":"The identifier denoting whether the Fiscal Service considers an entity to be non-domestic.",
+ "Activity Reference":"FFM.030.130 Payment Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"NonDomesticIndicator",
+ "Definition":"The indicator denoting whether the entity or transaction is considered non domestic.",
+ "Activity Reference":"FFM.060.010 Payer Set-Up and Maintenance;\r\nFFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: Domestic or Foreign Entity"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"NormalBalanceIndicator",
+ "Definition":"Normal condition of the balance in an USSGL account (debit or credit).",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control;\r\nFFM.090.010 General Ledger Set-up and Maintenance;\r\nFFM.090.030 Accrual and Liability Processing;\r\nFFM.090.040 Period End Closing;\r\nFFM.100.010 Reconciliation of General Ledger and Sub-ledgers;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.030 Cash Forecasting and Reporting\r\n ",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.1;\r\nFFMSR 1.1.5.4;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.1.2.3;\r\nFFMSR 2.2.2.6;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(27) TFM, United States Standard General Ledger (USSGL), Part 2, Section IV, Account Attribute Definition Report",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"C - Credit;\r\nD - Debit",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"NotificationOfChangeUpdateResults",
+ "Definition":"The result of a notification of change (NOC) request against, for example, a payer profile.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ObligationsDeliveredOrdersUnpaidTotal_CPE",
+ "Definition":"A legally binding agreement that will result in outlays, immediately or in the future. \r\n\r\n",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: ObligationsDeliveredOrdersUnpaidTotal_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ObligationsDeliveredOrdersUnpaidTotal_FYB",
+ "Definition":"A legally binding agreement that will result in outlays, immediately or in the future. \r\n\r\n",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: ObligationsDeliveredOrdersUnpaidTotal_FYB"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ObligationsIncurredByProgramObjectClass_CPE",
+ "Definition":"For unexpired accounts:\r\nAmount of obligations incurred from the beginning of the current fiscal year to the end of the reporting period, net of refunds received that pertain to obligations incurred in the current year. Include upward adjustments of prior obligations. \r\n\r\nFor expired accounts:\r\nAmount of upward adjustments of obligations previously incurred. Upward adjustments are limited by the amount available for adjustments. No new obligations may be incurred against expired or canceled accounts.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: ObligationsIncurredByProgramObjectClass_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ObligationsIncurredTotalByAward_CPE",
+ "Definition":"For unexpired accounts:\r\nAmount of obligations incurred from the beginning of the current fiscal year to the end of the reporting period, net of refunds received that pertain to obligations incurred in the current year. Include upward adjustments of prior obligations. \r\n\r\nFor expired accounts:\r\nAmount of upward adjustments of obligations previously incurred. Upward adjustments are limited by the amount available for adjustments. No new obligations may be incurred against expired or canceled accounts.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: ObligationsIncurredTotalByAward_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ObligationsIncurredTotalByTAS_CPE",
+ "Definition":"For unexpired accounts:\r\nAmount of obligations incurred from the beginning of the current fiscal year to the end of the reporting period, net of refunds received that pertain to obligations incurred in the current year. Include upward adjustments of prior obligations. \r\n\r\nFor expired accounts:\r\nAmount of upward adjustments of obligations previously incurred. Upward adjustments are limited by the amount available for adjustments. No new obligations may be incurred against expired or canceled accounts.\r\n\r\n\r\n\r\n",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: ObligationsIncurredTotalByTAS_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ObligationsUndeliveredOrdersUnpaidTotal_CPE",
+ "Definition":"A legally binding agreement that will result in outlays, immediately or in the future.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: ObligationsUndeliveredOrdersUnpaidTotal_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ObligationsUndeliveredOrdersUnpaidTotal_FYB",
+ "Definition":"A legally binding agreement that will result in outlays, immediately or in the future.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: ObligationsUndeliveredOrdersUnpaidTotal_FYB"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"ACQ",
+ "Data Element Label":"OfferedDiscountRate",
+ "Definition":"The discount rate offered by the vendor for early invoice payment under the Prompt Payment Act.",
+ "Activity Reference":"FFM.030.100 Payment Processing - Other Payments (Foreign and Miscellaneous Payments)",
+ "Business Capability Reference":"FFMSR 2.2.2.1",
+ "Authoritative and Other Reference(s)":"Definition (compiled from)\r\n(5) 31 U.S.C. 39 – Prompt Payment;\r\n(7) 5 CFR 1315, Prompt Payment: 1315.2 Definitions, 1315.7 Discounts, 1315.9 Required documentation, 1315.10 Late payment interest penalties, 1315.11 Additional penalties, and 1315.5 Accelerated payment methods;\r\n(12) FAR 32.9, Prompt Payment",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"OffsetAmount",
+ "Definition":"The offset amount.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"OffsetNotificationDate",
+ "Definition":"The date the offset information is sent to a Creditor Agency",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"OffsetTraceIdentifier",
+ "Definition":"The unique identifier to identify an offset against a payment applied to a debt",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"OrderStatusCode",
+ "Definition":"Represents the status of the Obligation as open, canceled, closed or finally closed.",
+ "Activity Reference":"FFM.030.030 Payment Processing - Intragovernmental Payments;\r\nFFM.030.040 Payment Processing - Payroll Payments;\r\nFFM.030.050 Payment Processing - Travel TDY and Local Payments;\r\nFFM.030.060 Payment Processing - Travel PCS Payments;\r\nFFM.030.070 Payment Processing - Commercial Payments;\r\nFFM.030.080 Payment Processing - Grant Payments;\r\nFFM.030.090 Payment Processing - Loan Payments;\r\nFFM.030.100 Payment Processing - Other Payments (Foreign and Miscellaneous Payments);\r\nFFM.090.030 Accrual and Liability Processing ",
+ "Business Capability Reference":"FFMSR 1.1.5.1;\r\nFFMSR 1.1.5.4;\r\nFFMSR 2.2.1.2\r\n",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Cancelled;\r\nClosed;\r\nFinally Closed; \r\nOpen\r\n\r\nNOTE: Closed represents an obligation that has been fully liquidated. Finally Closed represents an obligation against which no more actions can be taken. ",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"OriginalAgencyTransactionIdentifier",
+ "Definition":"The Agency Transaction Identifier an agency assigned for the original transaction.",
+ "Activity Reference":"FFM.100.030 Reconciliation with Treasury",
+ "Business Capability Reference":"FFMSR 2.3.1.3",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"OriginalBankPostingDate",
+ "Definition":"The bank posting date associated with the original transaction.",
+ "Activity Reference":"FFM.030.130 Payment Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"OriginalDebtAmount",
+ "Definition":"The original amount of the receivable when it was established by the Creditor Agency; e.g., the amount of credit that was extended to a borrower. It is intended to serve as a reference point for the referring Creditor Agency.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection;\r\nFFM.100.010 Reconciliation of General Ledger and Sub-ledgers",
+ "Business Capability Reference":"FFMSR 2.2.5.7;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"OriginalFinancialTransactionReference",
+ "Definition":"Contains a reference to an original Financial Transaction for purposes of an adjustment, correction, or reversal.",
+ "Activity Reference":"FFM.030.030 Payment Processing - Intragovernmental Payments;\r\nFFM.030.040 Payment Processing - Payroll Payments;\r\nFFM.030.050 Payment Processing - Travel TDY and Local Payments;\r\nFFM.030.060 Payment Processing - Travel PCS Payments;\r\nFFM.030.070 Payment Processing - Commercial Payments;\r\nFFM.030.080 Payment Processing - Grant Payments;\r\nFFM.030.090 Payment Processing - Loan Payments;\r\nFFM.030.100 Payment Processing - Other Payments (Foreign and Miscellaneous Payments);\r\nFFM.030.110 Payment Disbursement;\r\nFFM.030.120 Payment Confirmation;\r\nFFM.040.010 Revenue Processing;\r\nFFM.040.020 Revenue Reporting;\r\nFFM.060.020 Public Receivable Set-up and Invoicing;\r\nFFM.060.030 Public Receivable Credit Memo and Adjustment Processing;\r\nFFM.060.040 Public Receipt Processing;\r\nFFM.090.030 Accrual and Liability Processing;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.030 Cash Forecasting and Reporting;\r\nFFM.110.050 Internal Control/Compliance Reviews",
+ "Business Capability Reference":"FFMSR 1.1.4.1;\r\nFFMSR 1.1.4.3;\r\nFFMSR 1.1.5.4;\r\nFFMSR 1.1.5.5;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.2.1.2;\r\nFFMSR 2.2.1.4;\r\nFFMSR 2.2.2.4;\r\nFFMSR 2.2.2.5;\r\nFFMSR 2.2.2.6;\r\nFFMSR 2.2.4.1;\r\nFFMSR 2.2.4.3",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"OriginalPaymentReference",
+ "Definition":"Provides an identifier to link to the original payment.",
+ "Activity Reference":"FFM.100.010 Reconciliation of General Ledger and Sub-ledgers",
+ "Business Capability Reference":"FFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"OriginalRecordedAmount",
+ "Definition":"The amount originally recorded for the transaction.",
+ "Activity Reference":"FFM.040.010 Revenue Processing;\r\nFFM.040.020 Revenue Reporting;\r\nFFM.060.020 Public Receivable Set-up and Invoicing;\r\nFFM.060.040 Public Receipt Processing;\r\nFFM.070.010 Delinquent Debt Collection;\r\nFFM.100.010 Reconciliation of General Ledger and Sub-ledgers",
+ "Business Capability Reference":"FFMSR 1.1.5.1;\r\nFFMSR 2.2.4.3;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"OriginalScheduleReference",
+ "Definition":"Indicates a reference to an original Schedule transaction.",
+ "Activity Reference":"FFM.030.130 Payment Reporting;\r\nFFM.100.010 Reconciliation of General Ledger and Sub-ledgers;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"OtherBudgetaryResourcesAmount_CPE",
+ "Definition":"New borrowing authority, contract authority, and spending authority from offsetting collections provided by Congress in an appropriations act or other legislation, or unobligated balances of budgetary resources made available in previous legislation, to incur obligations and to make outlays.\r\n",
+ "Activity Reference":"FFM.010.030 Budgetary Reporting",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: OtherBudgetaryResourcesAmount_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"OverridePaymentSourceCode",
+ "Definition":"The code that limits the amount of offset to be taken from a payment.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"ACQ",
+ "Data Element Label":"ParentAwardID",
+ "Definition":"The identifier of the procurement award under which the specific award is issued (such as a Federal Supply Schedule). Term currently applies to procurement actions only.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing - Intragovernmental Payments;\r\nFFM.030.040 Payment Processing - Payroll Payments;\r\nFFM.030.050 Payment Processing - Travel TDY and Local Payments;\r\nFFM.030.060 Payment Processing - Travel PCS Payments;\r\nFFM.030.070 Payment Processing - Commercial Payments;\r\nFFM.030.080 Payment Processing - Grant Payments;\r\nFFM.030.090 Payment Processing - Loan Payments;\r\nFFM.030.100 Payment Processing - Other Payments (Foreign and Miscellaneous Payments)\r\n",
+ "Business Capability Reference":"FFMSR 2.2.1.1",
+ "Authoritative and Other Reference(s)":"(9) FAR 4.16, Unique Procurement Instrument Identifiers;\r\n(24) OMB MPM 2016-03\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nFFM-DATA Act Files BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: ParentAwardID;\r\n\r\nFPDS: Referenced PIID"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Payer",
+ "Definition":"The container for information on the person or organization submitting payment.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"PayerAccountType",
+ "Definition":"Indicates whether a transaction involves an individual, business, or government entity.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"PaymentBypassCode",
+ "Definition":"The code that identifies the payment sources that should not be offset.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"PaymentDate",
+ "Definition":"The date that a disbursement was issued by Treasury. ",
+ "Activity Reference":"FFM.030.030 Payment Processing - Intragovernmental Payments;\r\nFFM.030.040 Payment Processing - Payroll Payments;\r\nFFM.030.050 Payment Processing - Travel TDY and Local Payments;\r\nFFM.030.060 Payment Processing - Travel PCS Payments;\r\nFFM.030.070 Payment Processing - Commercial Payments;\r\nFFM.030.080 Payment Processing - Grant Payments;\r\nFFM.030.090 Payment Processing - Loan Payments;\r\nFFM.030.100 Payment Processing - Other Payments (Foreign and Miscellaneous Payments);\r\nFFM.030.110 Payment Disbursement;\r\nFFM.030.120 Payment Confirmation;\r\nFFM.060.040 Public Receipt Processing;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.2.1;\r\nFFMSR 2.2.2.4;\r\nFFMSR 2.2.2.5;\r\nFFMSR 2.2.5.5",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"PaymentDetail",
+ "Definition":"Contains pertinent information about a specific payment.",
+ "Activity Reference":"FFM.030.030 Payment Processing - Intragovernmental Payments;\r\nFFM.030.040 Payment Processing - Payroll Payments;\r\nFFM.030.050 Payment Processing - Travel TDY and Local Payments;\r\nFFM.030.060 Payment Processing - Travel PCS Payments;\r\nFFM.030.070 Payment Processing - Commercial Payments;\r\nFFM.030.080 Payment Processing - Grant Payments;\r\nFFM.030.090 Payment Processing - Loan Payments;\r\nFFM.030.100 Payment Processing - Other Payments (Foreign and Miscellaneous Payments);\r\nFFM.030.110 Payment Disbursement;\r\nFFM.030.120 Payment Confirmation;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.2.3;\r\nFFMSR 2.2.2.4;\r\nFFMSR 2.2.2.5",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"ACQ",
+ "Data Element Label":"PaymentDueDate",
+ "Definition":"Indicates the date that the payment is due.",
+ "Activity Reference":"FFM.030.030 Payment Processing - Intragovernmental Payments;\r\nFFM.030.040 Payment Processing - Payroll Payments;\r\nFFM.030.050 Payment Processing - Travel TDY and Local Payments;\r\nFFM.030.060 Payment Processing - Travel PCS Payments;\r\nFFM.030.070 Payment Processing - Commercial Payments;\r\nFFM.030.080 Payment Processing - Grant Payments;\r\nFFM.030.090 Payment Processing - Loan Payments;\r\nFFM.030.100 Payment Processing - Other Payments (Foreign and Miscellaneous Payments);\r\nFFM.060.040 Public Receipt Processing;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.2.1;\r\nFFMSR 2.2.2.3;\r\nFFMSR 2.2.5.5",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"PaymentMethod",
+ "Definition":"Contains the mechanism of the payment.",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"FFM Transaction Information;\r\nBanking Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Domestic ACH;\r\nDomestic Wire Transfer;\r\nInternational ACH;\r\nInternational Wire Transfer;\r\nOther;\r\nTreasury Check",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"PaymentMethod2",
+ "Definition":"Contains the mechanism of the payment. ",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"FFM Transaction Information;\r\nBanking Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Domestic ACH;\r\nDomestic Wire Transfer;\r\nInternational ACH;\r\nInternational Wire Transfer;\r\nOther;\r\nTreasury Check",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"PaymentMethod3",
+ "Definition":"Contains the mechanism of the payment. ",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"FFM Transaction Information;\r\nBanking Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Domestic ACH;\r\nDomestic Wire Transfer;\r\nInternational ACH;\r\nInternational Wire Transfer;\r\nOther;\r\nTreasury Check",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"PaymentOverrideAmount",
+ "Definition":"The amount of payment allowed to be offset.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"PaymentOverridePercent",
+ "Definition":"The percentage of payment allowed to be offset.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"PaymentReportingBatch",
+ "Definition":"Set of payments that are reported to Fiscal Service after issuance by an agency.",
+ "Activity Reference":"FFM.030.130 Payment Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"PenaltyRatePercent",
+ "Definition":"The rate at which penalty is to accrue on the debt.",
+ "Activity Reference":"FFM.030.030 Payment Processing - Intragovernmental Payments;\r\nFFM.030.040 Payment Processing - Payroll Payments;\r\nFFM.030.050 Payment Processing - Travel TDY and Local Payments;\r\nFFM.030.060 Payment Processing - Travel PCS Payments;\r\nFFM.030.070 Payment Processing - Commercial Payments;\r\nFFM.030.080 Payment Processing - Grant Payments;\r\nFFM.030.090 Payment Processing - Loan Payments;\r\nFFM.030.100 Payment Processing - Other Payments (Foreign and Miscellaneous Payments);\r\nFFM.070.010 Delinquent Debt Collection;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.2.1;\r\nFFMSR 2.2.5.5;\r\nFFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"PersonGivenName",
+ "Definition":"A first name of a person.",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance;",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: PersonGivenName;\r\n\r\nDAIMS: AwardeeOrRecipientLegalEntityName"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"PersonMiddleName",
+ "Definition":"A middle name of a person.",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance;",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: PersonGivenName;\r\n\r\nDAIMS: AwardeeOrRecipientLegalEntityName"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"PersonNameSuffixText",
+ "Definition":"A term appended after the family name that qualifies the name.",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance;",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: PersonGivenName;\r\n\r\nDAIMS: AwardeeOrRecipientLegalEntityName"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"PersonSurName",
+ "Definition":"A last name or family name of a person.",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance;\r\nFFM.060.010 Payer Setup and Maintenance;",
+ "Business Capability Reference":"FFMSR 2.2.1.1;\r\nFFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: PersonGivenName;\r\n\r\nDAIMS: AwardeeOrRecipientLegalEntityName"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"ACQ",
+ "Data Element Label":"PIID",
+ "Definition":"The federal procurement unique identifier for an acquisition contract, agreement, or order. ",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance;\r\nFFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing - Intragovernmental Payments;\r\nFFM.030.040 Payment Processing - Payroll Payments;\r\nFFM.030.050 Payment Processing - Travel TDY and Local Payments;\r\nFFM.030.060 Payment Processing - Travel PCS Payments;\r\nFFM.030.070 Payment Processing - Commercial Payments;\r\nFFM.030.080 Payment Processing - Grant Payments;\r\nFFM.030.090 Payment Processing - Loan Payments;\r\nFFM.030.100 Payment Processing - Other Payments (Foreign and Miscellaneous Payments)",
+ "Business Capability Reference":"FFMSR 2.2.1.1",
+ "Authoritative and Other Reference(s)":"(9) FAR 4.16, Unique Procurement Instrument Identifiers;\r\n(24) OMB MPM 2016-03\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: PIID;\r\n\r\nFPDS: PIID"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"PostNetBarcodeDeliveryPoint",
+ "Definition":"The PostNet barcode that is applied to the check for obtaining postage discounts.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"PrecedingSourceDocumentIdentifier",
+ "Definition":"An identifier that references the preceding document in the lifecycle, e.g., if the current document is a travel voucher, this would reference the travel authorization.",
+ "Activity Reference":"FFM.100.010 Reconciliation of General Ledger and Subledgers",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"PriorYearAdjustmentCode",
+ "Definition":"Changes to obligated or unobligated balances that occurred in the previous fiscal year but were not recorded in the appropriate TAFS as of October 1 of the current fiscal year. Exclude upward and downward adjustments to current-year/prior-year obligations and most reclassifications from clearing accounts.",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control;\r\nFFM.090.010 General Ledger Set-up and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.090.030 Accrual and Liability Processing;\r\nFFM.090.040 Period End Closing;\r\nFFM.100.010 Reconciliation of General Ledger and Sub-ledgers;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.030 Cash Forecasting and Reporting\r\n ",
+ "Business Capability Reference":"FFMSR 1.1.1.3;\r\nFFMSR 1.1.2.1;\r\nFFMSR 1.1.5.4;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.1.2.3;\r\nFFMSR 2.2.2.6;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(27) TFM, United States Standard General Ledger (USSGL), Part 2, Section IV, Account Attribute Definition Report",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-GTAS BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"B - Adjustment to prior-year reporting - backdated in Treasury's central accounting system;\r\nP - Adjustment to prior-year reporting - not backdated in Treasury's central accounting \r\nsystem;\r\nX - Not an adjustment to prior year reporting",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ProgramActivityCode",
+ "Definition":"Code of a specific activity or project as listed in the program and financing schedules of the annual budget of the United States Government.\r\n\r\n ",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(17) OMB Circular A-11, Preparation, Submission, and Execution of the Budget;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information;\r\nProgram Activity Group Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nFFM-DATA Act Files BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"0002",
+ "Domain Values":"(131) USASpending.gov, Program Activity File\r\n\r\nhttps://files.usaspending.gov/reference_data/program_activity.csv\r\n\r\nUse unique values in PROGRAM_ACTIVITY_CODE",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"(131) USASpending.gov, Program Activity File\r\n\r\nDerive REPORTING_PERIOD from AccountingPeriod\r\n\r\nUse the unique combination of derived REPORTING_PERIOD, AllocationTransferAgencyIdentifier, AgencyIdentifier, MainAccountCode, and ProgramActivityCode\r\n\r\nValidate against USASpending.gov REPORTING_PERIOD, ALLOCATION_TRANSFER_AGENCY_IDENTIFIER_CODE, AGENCY_IDENTIFIER_CODE, MAIN_ACCOUNT_CODE, PROGRAM_ACTIVITY_CODE\r\n",
+ "Related Data Element Reference(s)":"DAIMS: ProgramActivityCode;\r\n\r\nUSASpending.gov: PROGRAM_ACTIVITY_CODE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ProgramActivityGroupName",
+ "Definition":"The unique name associated with the combination of ProgramActivityCode, AgencyIdentifier, reporting period (FYQ) derived from AccountingPeriod, AllocationTransferAgencyIdentifier, and MainAccountCode. ",
+ "Activity Reference":"FFM.010.010 Budget Set-Up and Maintenance;\r\nFFM.030.130 Payment Reporting;\r\nFFM.090.010 General Ledger Set-up and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity;\r\nFFM.110.030 Cash Forecasting and Reporting;\r\nFFM.110.040 Financial Performance and Operational Reporting",
+ "Business Capability Reference":"FFMSR 1.1.2.1;\r\nFFMSR 1.2.1.1;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.2.2.3",
+ "Authoritative and Other Reference(s)":"(17) OMB Circular A-11, Preparation, Submission, and Execution of the Budget;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"Program Activity Group Information",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"Preschool grants",
+ "Domain Values":"(131) USASpending.gov, Program Activity File\r\n\r\nhttps://files.usaspending.gov/reference_data/program_activity.csv\r\n\r\nUse unique values in PROGRAM_ACTIVITY_NAME",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"(131) USASpending.gov, Program Activity File\r\n\r\nDerive REPORTING_PERIOD from AccountingPeriod\r\n\r\nUse the unique combination of derived REPORTING_PERIOD, AllocationTransferAgencyIdentifier, AgencyIdentifier, MainAccountCode, ProgramActivityGroupName, and ProgramActivityCode\r\n\r\nValidate against USASpending.gov REPORTING_PERIOD, ALLOCATION_TRANSFER_AGENCY_IDENTIFIER_CODE, AGENCY_IDENTIFIER_CODE, MAIN_ACCOUNT_CODE, PROGRAM_ACTIVITY_NAME, and PROGRAM_ACTIVITY_CODE",
+ "Related Data Element Reference(s)":"DAIMS: ProgramActivityName;\r\n\r\nUSASpending.gov: PROGRAM_ACTIVITY_NAME"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ProgramIndicator",
+ "Definition":"An indicator of whether an amount of cost or revenue directly or indirectly is traceable to programs.",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control;\r\nFFM.040.010 Revenue Processing;\r\nFFM.040.020 Revenue Reporting;\r\nFFM.060.020 Public Receivable Set-up and Invoicing;\r\nFFM.060.040 Public Receipt Processing;\r\nFFM.080.010 Cost Management Set-up and Maintenance;\r\nFFM.080.020 Cost Accumulation and Allocation;\r\nFFM.090.010 General Ledger Set-up and Maintenance;\r\nFFM.090.030 Accrual and Liability Processing;\r\nFFM.090.040 Period End Closing;\r\nFFM.100.010 Reconciliation of General Ledger and Sub-ledgers;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 1.1.1.2;\r\nFFMSR 1.1.2.1;\r\nFFMSR 1.1.5.4;\r\nFFMSR 1.2.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.1.2.3;\r\nFFMSR 2.2.2.6;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"P - Assigned to programs;\r\nQ - Not assigned to programs\r\n",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ProgramReportCategoryCode",
+ "Definition":"Identifies a program report category that agencies use when reporting their obligations in their detailed financial information. Agencies may use this code when reporting either Category A or Category B obligations. Unlike the Apportionment Category B Program, this code is NOT subject to the Anti-Deficiency Act.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(17) OMB Circular A-11, Preparation, Submission, and Execution of the Budget;\r\n(27) TFM, United States Standard General Ledger (USSGL), Part 2, Section IV, Account Attribute Definition Report\r\n",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nFFM-GTAS BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ProgramTraceIdentifier",
+ "Definition":"The identifier a financial agent provides to support traceability throughout a collection lifecycle.",
+ "Activity Reference":"FFM.110.020 Financial Statement Preparation;\r\nFFM.110.050 Internal Control/Compliance Reviews ",
+ "Business Capability Reference":"FFMSR 1.3.1.2;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"PropertyDescription",
+ "Definition":"Description of the real, personal, or intangible property.",
+ "Activity Reference":"FFM.020.010 Financial Asset Information Processing - Property, Plant, and Equipment;\r\nFFM.020.030 Financial Asset Information Processing - Heritage Assets and Stewardship Land\r\n",
+ "Business Capability Reference":"FFMSR 1.1.3.1;\r\nFFMSR 1.1.3.2;\r\nFFMSR 1.1.3.3;\r\nFFMSR 1.1.3.4",
+ "Authoritative and Other Reference(s)":"(83) SFFAS 29: Heritage Assets and Stewardship Land;\r\n(99) SFFAS 6: Accounting for Property, Plant, and Equipment",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"PropertyIdentifier",
+ "Definition":"An identifier for the real, personal, or intangible property.",
+ "Activity Reference":"FFM.020.010 Financial Asset Information Processing - Property, Plant, and Equipment;\r\nFFM.020.030 Financial Asset Information Processing - Heritage Assets and Stewardship Land\r\n",
+ "Business Capability Reference":"FFMSR 1.1.3.1;\r\nFFMSR 1.1.3.2;\r\nFFMSR 1.1.3.3;\r\nFFMSR 1.1.3.4",
+ "Authoritative and Other Reference(s)":"(83) SFFAS 29: Heritage Assets and Stewardship Land;\r\n(99) SFFAS 6: Accounting for Property, Plant, and Equipment",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"PropertyType",
+ "Definition":"Indicates whether the property is real, personal, or intangible.",
+ "Activity Reference":"FFM.020.010 Financial Asset Information Processing - Property, Plant, and Equipment;\r\nFFM.020.030 Financial Asset Information Processing - Heritage Assets and Stewardship Land\r\n",
+ "Business Capability Reference":"FFMSR 1.1.3.1;\r\nFFMSR 1.1.3.2;\r\nFFMSR 1.1.3.3;\r\nFFMSR 1.1.3.4",
+ "Authoritative and Other Reference(s)":"(83) SFFAS 29: Heritage Assets and Stewardship Land;\r\n(99) SFFAS 6: Accounting for Property, Plant, and Equipment",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Intangible;\r\nPersonal;\r\nReal-Building;\r\nReal-Improvement to Land;\r\nReal-Land;\r\nReal-Structure",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"PublicMoneySymbolNumber",
+ "Definition":"An 8-digit number used to identify bank activity reported by commercial banks, Federal Reserve Banks (FRBs) and Treasury offices. The activity represents deposits of tax collections, customs duties, miscellaneous receipts, public debt receipts, other revenues, Treasury checks paid, etc.",
+ "Activity Reference":"FFM.060.040 Public Receipt Processing;\r\nFFM.060.050.Public Receivable Monitoring and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.5.5;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceiptMechanismCode",
+ "Definition":"The code that identifies the format of a financial instrument when a collections channel program receives it.",
+ "Activity Reference":"FFM.030.130 Payment Reporting;\r\nFFM.100.010 Reconciliation of General Ledger and Sub-ledgers;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 1.3.1.2;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"ACH - Indicates a transaction that takes place across the Automated Clearing House (ACH) Network;\r\nBook Entry - Indicates a transaction occurred through an electronic general ledger entry;\r\nCard - Indicates a transaction through a plastic card service provider;\r\nCash- Indicates receipt of coin or paper currency;\r\nCash/Und Check - Indicates receipt of either cash and/or checks;\r\nCheck Image - Indicates a check image was received;\r\nDigital Wallet - Indicates a transaction using a digital wallet;\r\nEASy - Indicates a settlement through the Enterprise Accounting System (EASy);\r\nIntrabank - Indicates a transaction took place through an intrabank funds transfer;\r\nNSS - Indicates a transaction was received through the Enterprise Accounting System (EASy);\r\nOther - Indicates a receipt mechanism used other than Cash, Cash/Und Check, Paper Check, Check Image, Book Entry, ACH, Wire, Card, SVC, NSS, EASy, Digital Wallet, or Intrabank;\r\nPaper Check - Indicates a paper check was received;\r\nSVC - Indicates a transaction using a Stored Value Card (SVC);\r\nWire - Indicates a transaction through a real-time electronic funds transfers",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceiptsFromDate",
+ "Definition":"The starting date of one or more collections summarized into a voucher.",
+ "Activity Reference":"FFM.030.130 Payment Reporting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceiptsToDate",
+ "Definition":"The ending date of one or more collections summarized into a voucher.",
+ "Activity Reference":"FFM.030.130 Payment Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivableAdjustmentAmount",
+ "Definition":"The amount of an adjustment applied to a receivable. ",
+ "Activity Reference":"FFM.060.040 Public Credit Memo and Adjustment Processing",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivableCreditMemoAmount",
+ "Definition":"The amount of a credit memo applied to a receivable. ",
+ "Activity Reference":"FFM.060.040 Public Credit Memo and Adjustment Processing",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivableDebitMemoAmount",
+ "Definition":"The amount of a debit memo applied to a receivable. ",
+ "Activity Reference":"FFM.060.040 Public Credit Memo and Adjustment Processing",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivableNetCollectionTerms",
+ "Definition":"This is the term for the billing invoice which indicates the collection terms. Example would be Net 30, which indicates that a collection process happens within the agency to collect monies owed before finance charges take effect, or before the collection is considered past due.",
+ "Activity Reference":"FFM.060.020 Public Receivable Receipt Processing\r\nFFM.070.020 Delinquient Debt Write-off and Close-out",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivablesAndCollectionsAccrualsAmount",
+ "Definition":"Accruals: The dollar amount of earned interest and late charges accrued during the current fiscal year.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.010 Delinquent Debt Collection;\r\nFFM.090.030 Accrual and Liability Processing;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity",
+ "Business Capability Reference":"FFMSR 1.2.1.1;\r\nFFMSR 2.2.4.1;\r\nFFMSR 2.2.4.3;\r\nFFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivablesAndCollectionsAdjustmentAmount",
+ "Definition":"Adjustments: The dollar amount of changes to receivables during the fiscal year due to reclassifications or adjustments, acquisition of property, estimated losses on acquired property, or consolidations. The total dollar amount equals the sum of lines 5A through 5E of this section and is system-generated. These lines may be either positive or negative. Enter adjustments with a minus sign (-) before the figure if the number or dollar amount is negative. Line 5E is only a positive (+) value.",
+ "Activity Reference":"FFM.040.010 Revenue Processing;\r\nFFM.040.020 Revenue Reporting;\r\nFFM.060.020 Public Receivable Set-up and Invoicing;\r\nFFM.060.040 Public Receipt Processing;\r\nFFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 1.1.5.1;\r\nFFMSR 2.2.4.1;\r\nFFMSR 2.2.5.7;\r\nFFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivablesAndCollectionsAdjustmentConsolidationAmount",
+ "Definition":"Consolidations: The dollar amount of proceeds received through loan consolidations. Loan consolidations include, but are not limited to, defaulted guaranteed loans that are closed and reestablished as direct loans.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.4.1;\r\nFFMSR 2.2.4.3;\r\nFFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivablesAndCollectionsAdjustmentsDueToSaleOfAssetsAmount",
+ "Definition":"Adjustments Due to the Sale of Assets: The dollar amount of the difference between the gross book value of an asset and the proceeds from the sale of the asset as reported as a collection in line 4C of this section.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.4.1;\r\nFFMSR 2.2.4.3;\r\nFFMSR 2.2.5.7;\r\nFFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivablesAndCollectionsAdjustmentWrittenOffDebtsReinstatedForCollectionAmount",
+ "Definition":"Written-Off Debts Reinstated for Collection: The dollar amount of written-off debts the agency reinstated into total receivables in order to account for collections received. Since the debts are being reinstated, only enter positive (+) amounts for this line. The written-off debts could have previously been Currently Not Collectible (CNC) debts from Part II, Section D, line 1 that were written off previously in line 6A of this section or debts that had been written off and closed out in line 6B of this section.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.4.1;\r\nFFMSR 2.2.4.3;\r\nFFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivablesAndCollectionsBeginningFiscalYearBalanceAmount",
+ "Definition":"Beginning FY Balance: The dollar amount of all receivables outstanding as of the beginning of the fiscal year. These figures are system generated and must agree with the ending balance reported for the previous fiscal year. Typically, these figures will remain unchanged throughout the fiscal year.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.010 Delinquent Debt Collection;\r\nFFM.100.030 Reconciliation with Treasury;\r\nFFM.110.010 Treasury Reporting",
+ "Business Capability Reference":"FFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.2.4.1;\r\nFFMSR 2.2.4.3;\r\nFFMSR 2.2.5.5;\r\nFFMSR 2.2.6.1;\r\nFFMSR 2.3.1.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivablesAndCollectionsCurrentlyNotCollectibleAmount",
+ "Definition":"Currently Not Collectible: The dollar amount of debts where collection action continues and the debt is not closed out. Generally, write off of debts to CNC is mandatory for debts more than 2 years delinquent, but can be done for debts less than 2 years delinquent if the agency determines that the debts have no value for accounting purposes.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.010 Delinquent Debt Collection;\r\nFFM.070.020 Delinquent Debt Write-off and Close-out",
+ "Business Capability Reference":"FFMSR 2.2.4.1;\r\nFFMSR 2.2.4.3;\r\nFFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivablesAndCollectionsEndingBalanceAmount",
+ "Definition":"Ending Balance: The dollar amount of receivables outstanding, at the end of the reporting period. The dollar amount is equal to the sum of lines 1, 2, 3, 4, 5, and 6 of this section and is system generated. Lines 4 and 6 are negative figures. Line 5 may be either a positive or negative figure.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.010 Delinquent Debt Collection;\r\nFFM.100.030 Reconciliation with Treasury;\r\nFFM.110.010 Treasury Reporting",
+ "Business Capability Reference":"FFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.2.4.1;\r\nFFMSR 2.2.4.3;\r\nFFMRS 2.2.5.5;\r\nFFMSR 2.2.6.1;\r\nFFMSR 2.3.1.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivablesAndCollectionsForeclosureAdjustmentAmount",
+ "Definition":"Foreclosure Adjustments: The dollar amount of adjustments made as the result of a foreclosure on collateral. This section includes adjustments due to the acquisition of property serving as collateral on a direct or defaulted guaranteed loan.",
+ "Activity Reference":"FFM.060.040 Public Receipt Processing;\r\nFFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 1.1.5.4;\r\nFFMSR 2.2.4.1;\r\nFFMSR 2.2.4.3;\r\nFFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivablesAndCollectionsNewReceivablesAmount",
+ "Definition":"New Receivables: The dollar amount (principal only) of all new receivables generated during the current fiscal year.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.4.1;\r\nFFMSR 2.2.4.3;\r\nFFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivablesAndCollectionsNewReceivablesNumber",
+ "Definition":"New Receivables: The number (principal only) of all new receivables generated during the current fiscal year.",
+ "Activity Reference":"FFM.090.030 Accrual and Liability Processing",
+ "Business Capability Reference":"FFMSR 1.1.5.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivablesAndCollectionsReclassifiedOrAdjustedAmount",
+ "Definition":"Reclassified/Adjusted Amounts: The dollar amount reclassified or adjusted and transferred into or out of receivables balances during the fiscal year. The amounts may include, but are not limited to, corrections to a previously reported receivable, refunds of amounts previously reported as collections, adjustments made in a prior reporting period and estimated losses on collateralized debts. This line item may be either positive or negative. You must footnote all amounts reported on this line with the reason for the reclassification/adjustment.",
+ "Activity Reference":"FFM.060.040 Public Receipt Processing;\r\nFFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.010 Delinquent Debt Collection;\r\nFFM.090.030 Accrual and Liability Processing;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity;\r\nFFM.100.030 Reconciliation with Treasury",
+ "Business Capability Reference":"FFMSR 1.1.4.3;\r\nFFMSR 1.1.5.4;\r\nFFMSR 2.2.4.1;\r\nFFMSR 2.2.4.3;\r\nFFMSR 2.2.5.5;\r\nFFMSR 2.2.6.1;\r\nFFMSR 2.3.1.4",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivablesAndCollectionsReclassifiedOrAdjustedAmountNoteText",
+ "Definition":"Note representing the explanation referencing the use of the line item. (Reclassified/Adjusted Amounts: The dollar amount reclassified or adjusted and transferred into or out of receivables balances during the fiscal year. The amounts may include, but are not limited to, corrections to a previously reported receivable, refunds of amounts previously reported as collections, adjustments made in a prior reporting period and estimated losses on collateralized debts.)",
+ "Activity Reference":"FFM.060.040 Public Receipt Processing;\r\nFFM.090.030 Accrual and Liability Processing",
+ "Business Capability Reference":"FFMSR 1.1.5.5",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivablesAndCollectionsWrittenOffAmount",
+ "Definition":"Amounts Written Off: The dollar amount of all uncollectible debts written off during the current fiscal year. Enter amounts written off with a minus (-) sign before the figures. The total dollar amount equals the sum of lines 6A and 6B of this section, and is system generated. Do not include estimated losses on collateralized debts. That figure is to be included on line 5A of this section.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection;\r\nFFM.070.020 Delinquent Debt Write-off and Close-out;\r\nFFM.090.030 Accrual and Liability Processing;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity",
+ "Business Capability Reference":"FFMSR 1.1.5.4;\r\nFFMSR 1.2.1.1;\r\nFFMSR 2.2.4.1;\r\nFFMSR 2.2.4.3;\r\nFFMSR 2.2.6.1;\r\nFFMSR 2.2.6.2;\r\nFFMSR 1.1.5.4 ",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivablesAndCollectionsWrittenOffAndClosedOutAmount",
+ "Definition":"Written Off and Closed Out: The dollar amount of debts for which all collection activity has been terminated.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection;\r\nFFM.070.020 Delinquent Debt Write-off and Close-out;\r\nFFM.090.030 Accrual and Liability Processing ",
+ "Business Capability Reference":"FFMSR 1.1.5.4;\r\nFFMSR 2.2.4.1;\r\nFFMSR 2.2.4.3;\r\nFFMSR 2.2.6.1;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivablesAndCollectionsWrittenOffAndClosedOutNumber",
+ "Definition":"Written Off and Closed Out: The number of debts for which all collection activity has been terminated.",
+ "Activity Reference":"FFM.060.040 Public Receipt Processing;\r\nFFM.090.030 Accrual and Liability Processing",
+ "Business Capability Reference":"FFMSR 1.1.5.4",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivablesAndCollectionsWrittenOffNumber",
+ "Definition":"Amounts Written Off: The number of all uncollectible debts written off during the current fiscal year. Enter amounts written off with a minus (-) sign before the figures. The total dollar amount equals the sum of lines 6A and 6B of this section, and is system generated. Do not include estimated losses on collateralized debts. That figure is to be included on line 5A of this section.",
+ "Activity Reference":"FFM.060.040 Public Receipt Processing;\r\nFFM.090.030 Accrual and Liability Processing;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity",
+ "Business Capability Reference":"FFMSR 1.1.5.4",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivablesReportAgencyCode",
+ "Definition":"The two-digit Reporting Agency Code. This code identifies the agency for which the report is being prepared. It is unique for each reporting agency. The constraint is that the agency code must contain an bureau and entity code to define the entity being reported. There is no data stored at this level. The total format would be XX0090000 The first two digits identify the agency; the next two digits identify the bureau; and the remaining digits identify the entity. You will also need to preface the Reporting Entity Code by an alphabetic character to identify the type of receivable.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.010 Delinquent Debt Collection;\r\nFFM.110.040 Financial Performance and Operational Reporting",
+ "Business Capability Reference":"FFMSR 1.3.1.2;\r\nFFMSR 2.2.4.1;\r\nFFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivablesReportBureauCode",
+ "Definition":"The two-digit Reporting Bureau Code. This code identifies the bureau for which the report is being prepared. It is unique for each reporting bureau. The constraint is that the bureau code must contain an agency and entity code to define the entity being reported. There is no data stored at this level. The total format would be 20XX90000 The first two digits identify the agency; the next two digits identify the bureau; and the remaining digits identify the entity. You will also need to preface the Reporting Entity Code by an alphabetic character to identify the type of receivable.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.010 Delinquent Debt Collection;\r\nFFM.110.040 Financial Performance and Operational Reporting",
+ "Business Capability Reference":"FFMSR 1.3.1.2;\r\nFFMSR 2.2.4.1;\r\nFFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivablesTypeCode",
+ "Definition":"The Type of Receivable identifier tells whether the Receivables Report is being prepared for direct loans, defaulted guaranteed loans, or administrative receivables (that is, receivables generated from activities other than direct or defaulted guaranteed loans). For example, the entity \"10-09-90000\" may consist of both direct loans and administrative receivables; the reporting codes would be \"10-09-90000D\" and \"10-09-90000A\" respectively (D = Direct Loan; F = Defaulted Guaranteed Loan; A = Administrative). A separate report is required for each type of receivable for each entity. THIS IS THE LEVEL DATA IS STORED",
+ "Activity Reference":"FFM.060.040 Public Receipt Processing;\r\nFFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.010 Delinquent Debt Collection;\r\nFFM.110.040 Financial Performance and Operational Reporting",
+ "Business Capability Reference":"FFMSR 1.3.1.1;\r\nFFMSR 2.2.4.1;\r\nFFMSR 2.2.5.1;\r\nFFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"A - Administrative;\r\nD - Direct Loan;\r\nF - Defaulted Guaranteed Loan",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReceivableTransactionAdjustmentAmount",
+ "Definition":"An amount applied to a receivable to increase or reduce the amount that the debtor owes based on a change in position between issuance of the original invoice and creation of the receivable (e.g., from the application of a credit memo or an offer in compromise).",
+ "Activity Reference":"FFM.060.030 Public Receivable Credit Memo and Adjustment Processing;\r\nFFM.110.050 Internal Control/Compliance Reviews ",
+ "Business Capability Reference":"FFMSR 2.2.4.1;\r\nFFMSR 2.3.2.2",
+ "Authoritative and Other Reference(s)":"(20) OMB Circular A-129, Policies for Federal Credit Programs and Non-Tax Receivables, Appendix A, Program Reviews, Part IV, Managing the Federal Government’s Receivables",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RecurringFrequencyCode",
+ "Definition":"The frequency of an occurrence for an item e.g. collection, bill, invoice.",
+ "Activity Reference":"FFM.030.030 Payment Processing - Intragovernmental Payments;\r\nFFM.030.040 Payment Processing - Payroll Payments;\r\nFFM.030.050 Payment Processing - Travel TDY and Local Payments;\r\nFFM.030.060 Payment Processing - Travel PCS Payments;\r\nFFM.030.070 Payment Processing - Commercial Payments;\r\nFFM.030.080 Payment Processing - Grant Payments;\r\nFFM.030.090 Payment Processing - Loan Payments;\r\nFFM.030.100 Payment Processing - Other Payments (Foreign and Miscellaneous Payments);\r\nFFM.060.020 Public Receivable Set-up and Invoicing;\r\nFFM.060.040 Public Receipt Processing;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 1.1.5.1;\r\nFFMSR 2.2.2.1;\r\nFFMSR 2.2.4.1;\r\nFFMSR 2.2.5.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReductionTypeCode",
+ "Definition":"The code representing the type of reduction being reported (e.g., Across The Board, Sequestration or Other) in detailed financial information.",
+ "Activity Reference":"FFM.010.010 Budget Set-Up and Maintenance;\r\nFFM.090.010 Defining GL Account and Attributes",
+ "Business Capability Reference":"FFMSR 1.1.1.3",
+ "Authoritative and Other Reference(s)":"(27) TFM, United States Standard General Ledger (USSGL), Part 2, Section IV, Account Attribute Definition Report",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-GTAS BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"ATB - Across The Board reduction;\r\nOTR - Reductions other than ATB and SEQ;\r\nSEQ - Sequestration;\r\nXXX - N.A.",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReferredDebtBalanceAmount",
+ "Definition":"Total amount of the delinquent debt referred to Debt Management Services.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RegionName",
+ "Definition":"The foreign state, territory, or province name.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReimbursableFlagIndicator",
+ "Definition":"Indicates whether amounts for goods, services, and joint project support are financed by offsetting collections.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(27) TFM, United States Standard General Ledger (USSGL), Part 2, Section IV, Account Attribute Definition Report",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nFFM-GTAS BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"D - Direct;\r\nR - Reimbursable",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RelationshipToPrimaryDebtorCode",
+ "Definition":"Defines the relationship of the debtor to the primary debtor.",
+ "Activity Reference":"FFM.060.010 Payer Set-Up and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReportedBankActivity",
+ "Definition":"Contains the detail necessary to identify bank activity reported by commercial banks, Federal Reserve Banks, and Treasury offices.",
+ "Activity Reference":"FFM.030.130 Payment Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReportedToCreditBureauDate",
+ "Definition":"The date the case was last reported to the credit bureaus by the Creditor Agency.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReportedToIRS_OnForm_1099C_Amount",
+ "Definition":"Reported to IRS on Form 1099-C: The dollar amount of debts that the agency reported to the IRS on IRS Form 1099-C as potential income to a debtor or debtors during the most recent tax year (previous calendar year). Agencies must submit a Form 1099-C for all closed-out debts in a given calendar year no later than the end of February of the subsequent calendar year. For example, if a debt is written off in March 2004, and the agency decides to terminate all collection efforts in June 2005, the debt amount could be reported to IRS any time after termination of collection but before the end of February 2006. Most agencies wait to file 1099-Cs until after the close of the tax year. Assuming this is the agency's practice, in this example, the agency would report on this line in the 2nd quarter, FY 2006 TROR, and that number would not change over the next three quarters.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.020 Delinquent Debt Write-off and Close-out",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReportedToIRS_OnForm_1099C_Number",
+ "Definition":"Reported to IRS on Form 1099-C: The number of debts that the agency reported to the IRS on IRS Form 1099-C as potential income to a debtor or debtors during the most recent tax year (previous calendar year). Agencies must submit a Form 1099-C for all closed-out debts in a given calendar year no later than the end of February of the subsequent calendar year. For example, if a debt is written off in March 2004, and the agency decides to terminate all collection efforts in June 2005, the debt amount could be reported to IRS any time after termination of collection but before the end of February 2006. Most agencies wait to file 1099-Cs until after the close of the tax year. Assuming this is the agency's practice, in this example, the agency would report on this line in the 2nd quarter, FY 2006 TROR, and that number would not change over the next three quarters.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReportingCode",
+ "Definition":"An Agency Location Code that is designated as the parent for one of more children Agency Location Codes, responsible for reporting accounting transactions for those children.",
+ "Activity Reference":"FFM.110.040 Financial Performance and Operational Reporting",
+ "Business Capability Reference":"FFMSR 1.3.1.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReportingDetail",
+ "Definition":"Contains information about a specific reporting payment record.",
+ "Activity Reference":"FFM.110.040 Financial Performance and Operational Reporting",
+ "Business Capability Reference":"FFMSR 1.3.1.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReportingEntityCode",
+ "Definition":"This code identifies the entity for which the TROR report is being prepared. It is unique for each reporting entity. The first two digits identify the agency; the next two digits identify the bureau; and the remaining digits identify the entity. ",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.4.1;\r\nFFMSR 2.2.6.1;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReportingFinancialReportingEntityCode",
+ "Definition":"The Summary Debt Accounting System (SDAS) Reporting Entity who reports the collection and disbursement activity related to Treasury securities.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.070.030 Delinquent Debt Reporting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.040 Financial Performance and Operational Reporting",
+ "Business Capability Reference":"FFMSR 1.3.1.2;\r\nFFMSR 2.2.6.2;\r\nFFMSR 2.3.2.1;\r\nFFMSR 2.3.2.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReportingStatusTimestamp",
+ "Definition":"The date and time at which point the Reporting Status (Payment, Collection, or Intragovernmental Payments and Collections) record was created.",
+ "Activity Reference":"FFM.110.010 Treasury Reporting;\r\nFFM.110.040 Financial Performance and Operational Reporting",
+ "Business Capability Reference":"FFMSR 1.1.5.4;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.3.2.1;\r\nFFMSR 2.3.2.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReportingSubprogramName",
+ "Definition":"The name of a subprogram or component of a reporting program.",
+ "Activity Reference":"FFM.040.020 Revenue Reporting;\r\nFFM.060.040 Public Receipt Processing;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 1.1.5.5;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReportingSummary",
+ "Definition":"Contains the fields to support the GWA System to become the system of record, to have one central point to retrieve all financial information, and to streamline reporting and reconciliation of Fund Balance with Treasury (FBWT) information for the Federal Program Agencies.",
+ "Activity Reference":"FFM.100.010 Reconciliation of General Ledger and Sub-ledgers;\r\nFFM.100.030 Reconciliation with Treasury",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.3.1.3;\r\nFFMSR 2.3.2.2 ",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReportingTransactionEffectiveDate",
+ "Definition":"The date upon which the Agency Location Code actually began (or will begin) reporting Payment transactions.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReportingTypeCode",
+ "Definition":"Indicates at the TAS level activity related to non-Federal ownership interest or statutory dedication of specifically identified revenues to designated activities.",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control;\r\nFFM.040.020 Revenue Reporting;\r\nFFM.060.020 Public Receivable Set-up and Invoicing;\r\nFFM.060.040 Public Receipt Processing;\r\nFFM.090.010 General Ledger Set-up and Maintenance;\r\nFFM.090.030 Accrual and Liability Processing;\r\nFFM.090.040 Period End Closing;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.2;\r\nFFMSR 1.1.2.1;\r\nFFMSR 1.1.5.1;\r\nFFMSR 1.1.5.4;\r\nFFMSR 1.1.5.5;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.1.1.3;\r\nFFMSR 2.1.2.3;\r\nFFMSR 2.2.2.6",
+ "Authoritative and Other Reference(s)":"(27) TFM, Volume I, Supplement: United States Standard General Ledger (USSGL), Section IV, USSGL Account Attributes, Account Attribute Definition Report; \r\n(31) TFM Volume I, Part 2, Chapter 4700 Federal Entity Reporting Requirements for the Financial Report of the United States Government;\r\n",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"E - Dedicated Collection;\r\nF - Fiduciary;\r\nU - Undesignated",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyAccountingClassificationReferenceIdentifier",
+ "Definition":"ACRN is the number associated with the Buyer's line of Accounting/Accounting Classification.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Accounting Classification Reference Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyAccountingIdentifier",
+ "Definition":"The Agency Accounting Identifier Code identifies the Requesting Agency accounting system responsible for recording the accounting event. The Agency Accounting Identifier Code is intended to be an accounting system identifier, and therefore must be assigned to only one accounting system.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Accounting Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyActivityAddressCode",
+ "Definition":"The Activity Address Code (AAC) of the Requesting entity.",
+ "Activity Reference":"FFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Activity Address Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyActivityIdentifier",
+ "Definition":"The series of events, tasks, or units of work that are linked to perform a specific Requesting Agency objective. For assisted acquisitions, list key project and/or acquisition milestones as planned at time of signing the intragovernmental agreement.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Activity Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyAdditionalAccountingClassification",
+ "Definition":"Details additional accounting information used by the Requesting Agencies for internal tracking.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Additional Accounting Classification"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyAdditionalInformation",
+ "Definition":"Any additional information for the Requesting Agency not covered in other areas. For assisted acquisitions please include information required in the OMB FAR policy including but not limited to unique restrictions.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Additional Information"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyAgreementTrackingNumber",
+ "Definition":"The internal Requesting Agency tracking number for the intragovernmental agreement.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agreement Tracking Number"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyAssistedAcquisitions",
+ "Definition":"The Requesting Agency lists or references the organizations (Offices, Bureaus, Divisions, etc.) that are authorized to request acquisition assistance for this IAA.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Assisted Acquisitions"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyAttachmentDateTime",
+ "Definition":"The time and date the Requesting Agency file was uploaded into G-Invoicing. ",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date;\r\n\r\nG-Invoicing: Requesting Attachment Date/Time"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyAttachmentFileAlias",
+ "Definition":"The descriptive name for a Requesting Agency's attachment which is different from the name assigned to the file itself. ",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Attachment File Alias"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyAttachmentFileName",
+ "Definition":"The actual name of the Requesting Agency's attachment file.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Attachment File Name"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyAttachmentIdentifier",
+ "Definition":"The identifier that links a Requesting Agency transaction to a file attachment.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Attachment Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyBudgetFiscalYear",
+ "Definition":"The Requesting Agency's budget or financial year, as opposed to a calendar year. The U.S. Government's fiscal year runs from October 1 of the prior year through September 30 of the next year. For example, FY 2015 was from October 2014 through September 2015.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Budget Fiscal Year"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyBudgetLineItem",
+ "Definition":"Identifies further Requesting Agency sub-divisions of the Treasury Account Fund Symbol appropriation, below the Budget Sub Activity Level.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Budget Line Item"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyBusinessEventTypeCode",
+ "Definition":"BETC field for the Requesting Agency used to identify the type of event that is recorded against a Treasury Account Symbol and to implement CARS business rules for the posting of events to the TAS. Required for ALCs designated as CARS Reporters.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Business Event Type Code (BETC)"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyBusinessUnit1",
+ "Definition":"This is used to control access for Requesting Agency Business Unit 1 to the intragovernmental agreement information. ",
+ "Activity Reference":"FFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Business Unit"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyBusinessUnit2",
+ "Definition":"This is used to control access for Requesting Agency Business Unit 2 to the intragovernmental agreement information. ",
+ "Activity Reference":"FFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Cost Center"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyBusinessUnit3",
+ "Definition":"This is used to control access for Requesting Agency Business Unit 3 to the intragovernmental agreement information. ",
+ "Activity Reference":"FFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Department ID"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyClauses",
+ "Definition":"Identifies any additional Requesting Agency clause(s) for intragovernmental agreements.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Clauses"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyComments",
+ "Definition":"The Requesting Agency comments associated with the intragovernmental order.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Comments"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyComponentTASAgencyIdentifier",
+ "Definition":"The Treasury Account Symbol (TAS) component that identifies the department, agency or establishment of the U.S. Government that is responsible for the Requesting Agency TAS. Agency Identifier is also used apart from the TAS to identify a major department or independent agency of the Federal government.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Component TAS AID"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyComponentTASAgencyTransferAuthority",
+ "Definition":"Department Transfer of the Requesting Agency. Agency identifier of the agency receiving funds through an allocation transfer.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Component TAS ATA"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyComponentTASAvailabilityTypeCode",
+ "Definition":"Availability Type of the Requesting Agency. Identifies no-year accounts \"X\", clearing/suspense accounts \"F\", Treasury's central summary general ledger accounts \"A\" and merged-surplus accounts \"M.\"",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"A - Treasury central summary general ledger accunts;\r\nF - Clearing/suspense accounts;\r\nM - Merged-surplus accounts;\r\nX - No-year accounts",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Component TAS A"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyComponentTASBPeriodOfAvailability",
+ "Definition":"The Treasury Account Symbol (TAS) component that identifies the first year of availability under law that a Requesting Agency account may incur new obligations, in annual and multiyear accounts.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Component TAS BPOA"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyComponentTASEPeriodOfAvailability",
+ "Definition":"Ending Period of Availability (Fiscal Year) of the Requesting Agency. In annual and multi-year funds, identifies the last year of availability under law that an appropriation account may incur new obligations.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Component TAS EPOA"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyComponentTASMainAccount",
+ "Definition":"Main Account of the Requesting Agency. Identifies an available receipt of other Treasury defined subdivision of the Main Account Code.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Component TAS MAIN"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyComponentTASSubClass",
+ "Definition":"Sub Class of the Requesting Agency. Programmatic breakdown of the account for Treasury publication purposes.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Component TAS SP"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyComponentTASSubdivision",
+ "Definition":"The Treasury Account Symbol (TAS) component that identifies an available receipt or other Treasury-defined subdivision of the Requesting Agency main account.\r\n",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Component TAS SUB"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyCostCenterIdentifier",
+ "Definition":"The Requesting Agency cost center which clearly defines the responsibility area where costs are incurred.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Cost Center Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyCostElementCode",
+ "Definition":"The classification of the Cost Element for the Requesting Agency organization's revenues, expenses or consumable resources. Cost Element Code only relates to primary cost. Cost Element Code does not relate to secondary cost which is identified as agency specific and not enterprise-level.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Cost Element Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyDisbursingIdentifierCode",
+ "Definition":"The Agency Disbursing Identifier is assigned to the Requesting Agency's disbursing office by the Treasury Department. The Agency Disbursing Identifier is an identification number that indicates authority to receive and disburse public funds and issue checks on the United States Treasury.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Disbursing Identifier Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyFAIN",
+ "Definition":"The Federal Award Identification Number (FAIN) is a unique number assigned to a financial assistance award by the awarding agency. This number will identify the Requesting Agency award in several systems including: ASAP.gov, USASpending.gov, and Grants.gov. This number along with the CFDS will allow for more precise tracking of grant obligations and payments.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Federal Award Identification Number (FAIN)"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyFinalApprovalSignedDate",
+ "Definition":"The date on which the Requesting Agency official provided the final signature for the General Terms and Conditions (GT&C) for the intragovernmental agreement. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date;\r\n\r\nG-Invoicing: Requesting Final Approval Signed Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyFunctionalArea",
+ "Definition":"Functional Area is a logical division of a Requesting Agency Component's business operations. It represents the Functions the Component performs.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Functional Area"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyFundingCenterIdentifier",
+ "Definition":"The funding center is a clearly defined responsibility area within the Requesting Agency organizational unit to which budget authority is assigned.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Funding Center Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyFundingOfficialDateSigned",
+ "Definition":"The date that the Requesting Agency's Funding Official signs the intragovernmental order. The order becomes effective on the date it is signed by both the Requesting Agency and Servicing Agency Officials.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date;\r\n\r\nG-Invoicing: Requesting Agency Funding Official Date Signed"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyGroupIdentifier",
+ "Definition":"Unique identifier for a Requesting Agency organizational group.",
+ "Activity Reference":"FFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Group Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyGroupName",
+ "Definition":"A unique and recognizable name for a Requesting Agency organizational group.",
+ "Activity Reference":"FFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Group Name"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyIdentifier",
+ "Definition":"The Treasury Account Symbol (TAS) component that identifies the department, agency or establishment of the Requesting Agency that is responsible for the TAS. Agency Identifier is also used apart from the TAS to identify a major department or independent agency of the Federal government.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyInitialApprovalSignedDate",
+ "Definition":"The date on which the Requesting Agency official provided the initial signature for the General Terms and Conditions (GT&C) for the intragovernmental agreement.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date;\r\n\r\nG-Invoicing: Requesting Initial Approval Signed Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyIntragovernmentalFlag",
+ "Definition":"An Indicator is used to flag the Requesting Agency expenditures incurred for a designated TAFS account that are considered reimbursable to the account.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"D - Direct;\r\nR - Reimbursable",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Reimbursable Flag: R (reimbursable), D (direct)"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyLocationCode",
+ "Definition":"Unique identifier Agency Location Code (ALC) for a federal agency buying goods and/or services.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(129) Treasury Bureau of Fiscal Service Shared Accounting Module (SAM) Service: Treasury Account Symbol (TAS-BETC)\r\n\r\nhttps://www.fiscal.treasury.gov/sam/ ",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Location Code (ALC), Requesting Agency ALC"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyObjectClassCode",
+ "Definition":"A code for the Requesting Agency which describes the \"nature\" of the service or article for which obligations are first incurred, regardless of the purpose, function, or program.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Object Class Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyOrderNumber",
+ "Definition":"This is the intragovernmental order number associated with the Requesting Agency's system. No specific syntax. Leverages the Component based syntax.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Order Number"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyPersonEmail",
+ "Definition":"The email address for the person belonging to the Requesting Agency.",
+ "Activity Reference":"FFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information;\r\nIntragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing:\r\nDelivery / Shipping Information for Product POC Email Address,\r\nPrepared Email,\r\nRequesting Agency Funding Official Email Address,\r\nRequesting Agency POC Email Address,\r\nRequesting Agency Program Official Email Address,\r\nRequesting Final Approval Signed Email"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyPersonFax",
+ "Definition":"The fax number for the person belonging to the Requesting Agency.",
+ "Activity Reference":"FFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information;\r\nIntragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing:\r\nRequesting Agency Funding Official Fax Number;\r\nRequesting Agency POC Fax Number,\r\nRequesting Agency Program Official Fax Number,\r\nRequesting Final Approval Signed Fax,\r\nRequesting Initial Approval Signed Fax"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyPersonName",
+ "Definition":"The name of the person belonging to the Requesting Agency. ",
+ "Activity Reference":"FFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information;\r\nIntragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing:\r\nAttachment Updated By,\r\nDelivery / Shipping Information for Product POC Name,\r\nPrepared By Name,\r\nPrepared Name,\r\nRequesting Agency Funding Official Name,\r\nRequesting Agency POC Name,\r\nRequesting Agency Program Official Name,\r\nRequesting Agency Prepared Name,\r\nRequesting Final Approval Signed Name,\r\nRequesting Initial Approval Signed Name\r\n"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyPersonPhone",
+ "Definition":"The telephone number for the person belonging to the Requesting Agency. ",
+ "Activity Reference":"FFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information;\r\nIntragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing:\r\nDelivery / Shipping Information for Product POC Telephone Number,\r\nPrepared By Phone,\r\nPrepared Phone,\r\nRequesting Agency Funding Official Telephone Number,\r\nRequesting Agency POC Telephone Number,\r\nRequesting Agency Prepared Phone,\r\nRequesting Agency Program Official Telephone Number,\r\nRequesting Final Approval Signed Phone,\r\nRequesting Initial Approval Signed Phone"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyPersonTitle",
+ "Definition":"The title of the person belonging to the Requesting Agency.",
+ "Activity Reference":"FFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information;\r\nIntragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: \r\nDelivery / Shipping Information for Product POC Title,\r\nRequesting Agency Funding Official Title,\r\nRequesting Agency Program Official Title,\r\nRequesting Final Approval Signed Title,\r\nRequesting Initial Approval Signed Title"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyPersonTypeCode",
+ "Definition":"The code that describes the type of person belonging to the Requesting Agency.",
+ "Activity Reference":"FFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information;\r\nIntragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Attachment Update POC;\r\nDelivery POC;\r\nFinal Approver;\r\nFunding Official;\r\nInitial Approver;\r\nPoint of Contact;\r\nPreparer;\r\nProgram Official",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing:\r\nAttachment Updated By,\r\nDelivery / Shipping Information for Product POC Name,\r\nPrepared By Name,\r\nPrepared Name,\r\nRequesting Agency Funding Official Name,\r\nRequesting Agency POC Name,\r\nRequesting Agency Program Official Name,\r\nRequesting Agency Prepared Name,\r\nRequesting Final Approval Signed Name,\r\nRequesting Initial Approval Signed Name"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyProgramAuthorityCitation",
+ "Definition":"This is the citation associated with the authority that grants the Requesting Agency program authority.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Program Authority Citation"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyProgramAuthorityTitle",
+ "Definition":"This is the title associated with the authority that grants the Requesting Agency program authority.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Program Authority Title"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyProgramOfficialDateSigned",
+ "Definition":"The date that the Requesting Agency Program Official signs the intragovernmental order. The order becomes effective on the date it is signed by both the Requesting Agency and Servicing Agency Officials.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Program Official Date Signed"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyProjectIdentifier",
+ "Definition":"The planned undertaking of work to be performed or product to be produced by the Requesting Agency having a finite beginning and end. Attachments can be leveraged to communicate key milestones that need to be captured between trading partners.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Project Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyRoles",
+ "Definition":"References the respective roles and responsibilities that the Requesting Agency must carry out to ensure the effective management and fulfillment of the IAA requirements. This includes if a contract or order awarded pursuant to this IAA is terminated, cancelled, a dispute or protest arises from specifications, solicitation, award, performance, or termination of the IAA. Appropriate action will be taken in accordance with the terms of the contract and applicable laws and regulations. Agencies should review the terms and conditions annually for IAAs that are longer than one year in length and execute amendments as necessary. If they cannot agree about a material aspect of the IAA, they must agree to engage in an effort to reach mutual agreement in the proper interpretation of the IAA. Please reference the G-Invoicing User Guide for processes including amendments, termination rights, and intragovernmental disputes due to interpretation.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Roles"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencySecurityCooperation",
+ "Definition":"Security Cooperation Customer represents the Requesting Agency's country receiving the product and/or service in the Foreign Military Sales (FMS) transaction.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Security Cooperation (formerly Foregin Military Sales (FMS) Customer Code)"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencySecurityCooperationCaseDesignator",
+ "Definition":"Security Cooperation Case Designator is used to reflect an FMS contractual sales agreement (Letter of Offer and Acceptance), on behalf of the Requesting Agency, between the U.S. and an eligible foreign country.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Security Cooperation Case Designator"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencySecurityCooperationCaseLineItemIdentifier",
+ "Definition":"The Security Cooperation Case Line Item Identifier is used to identify a detailed Requesting Agency line item requirement contained within the Letter of Offer and Acceptance.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Security Cooperation Case Line Item Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencySecurityCooperationImplementingAgencyCode",
+ "Definition":"Security Cooperation Implementing Agency Code: For the Requesting Agency, the single character alpha code which identifies the U.S. Military Department or Agency which has negotiated or facilitated a foreign military sales case on behalf of the U.S. Government. The majority of FMS cases are implemented by the Army (IA Code B), Navy (IA Code P) or Air Force (IA Code D).",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Security Cooperation Implementing Agency (IA) Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencySubAllocation",
+ "Definition":"Sub-Allocation Holder Identifies an organization to which funds have been sub-allocated on behalf of the Requesting Agency. ",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Sub-Allocation"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyUniqueEntityIdentifer",
+ "Definition":"The distinct number or other identifier of the Requesting Agency which is used to identify a specific commercial, nonprofit, or Government entity.",
+ "Activity Reference":"FFM.060.010 Payer Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Unique Entity Identifer"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyURI",
+ "Definition":"An agency defined identifier that (when provided) is unique for every reported action for the Requesting Agency.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Unique Record Identifier (URI)"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RequestingAgencyWorkOrderNumber",
+ "Definition":"Identifies a Requesting Agency's individual unit of work, batch, or lot of a distinct product or service. ",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing – Intragovernmental Payments",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Requesting Agency Work Order Number"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RevenueSourceCode",
+ "Definition":"A code identifying the type or source of revenue when the general ledger account is not sufficiently descriptive for internal agency purposes.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.040.010 Revenue Processing;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 1.1.5.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Agency Defined",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReversalAmount",
+ "Definition":"The reversal amount.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection;\r\nFFM.090.030 Accrual and Liability Processing ",
+ "Business Capability Reference":"FFMSR 1.1.5.5;\r\nFFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ReversalNotificationDate",
+ "Definition":"The date the offset reversal information is sent to a Creditor Agency.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RoutingTransit2Number",
+ "Definition":"The 9-digit account number assigned by the American Banking Association that the bank or the financial institution has with the Federal Reserve. ",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information;\r\nBanking Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"(43) LexisNexis Risk Solutions, Official ABA Registrar\r\n\r\nUse LexisNexis Risk Solutions because they are ABA's Official Routing Number registrar: https://risk.lexisnexis.com/insights-resources/article/official-aba-registrar",
+ "Related Data Element Reference(s)":"Common: RoutingTransitNumber"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RoutingTransit3Number",
+ "Definition":"The 9-digit account number assigned by the American Banking Association that the bank or the financial institution has with the Federal Reserve. ",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information;\r\nBanking Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"(43) LexisNexis Risk Solutions, Official ABA Registrar\r\n\r\nUse LexisNexis Risk Solutions because they are ABA's Official Routing Number registrar: https://risk.lexisnexis.com/insights-resources/article/official-aba-registrar",
+ "Related Data Element Reference(s)":"Common: RoutingTransitNumber"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"RoutingTransitNumber",
+ "Definition":"The 9-digit account number assigned by the American Banking Association that the bank or the financial institution has with the Federal Reserve. ",
+ "Activity Reference":"FFM.030.010 Payee Setup and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(11) FAR 4.1102, System for Award Management: Policy;\r\n(54) FAR 4.11, System for Award Management (SAM)",
+ "Data Group Name":"FFM Transaction Information;\r\nBanking Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nGSA SAM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"(43) LexisNexis Risk Solutions, Official ABA Registrar\r\n\r\nUse LexisNexis Risk Solutions because they are ABA's Official Routing Number registrar: https://risk.lexisnexis.com/insights-resources/article/official-aba-registrar",
+ "Related Data Element Reference(s)":"Common: RoutingTransitNumber"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServiceClassCode",
+ "Definition":"The code that identifies whether the ACH entries in the batch are debits, credits, or both.",
+ "Activity Reference":"FFM.090.020 General Ledger Posting;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity",
+ "Business Capability Reference":"FFMSR 1.1.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyAccountingClassificationReferenceIdentifier",
+ "Definition":"ACRN is the number associated with the Seller's line of Accounting/Accounting Classification.",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Accounting Classification Reference Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyAccountingIdentifier",
+ "Definition":"The Agency Accounting Identifier Code identifies the Servicing Agency accounting system responsible for recording the accounting event. The Agency Accounting Identifier Code is intended to be an accounting system identifier, and therefore must be assigned to only one accounting system.",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Accounting Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyActivityAddressCode",
+ "Definition":"The Activity Address Code (AAC) of the Servicing entity.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Activity Address Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyActivityIdentifier",
+ "Definition":"The series of events, tasks, or units of work that are linked to perform a specific Servicing Agency objective. For assisted acquisitions, list key project and/or acquisition milestones as planned at time of signing the agreement.",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Activity Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyAdditionalAccountingClassification",
+ "Definition":"Details additional accounting information used by the Servicing Agencies for internal tracking.",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Additional Accounting Classification"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyAdditionalInformation",
+ "Definition":"Any additional information for the Servicing Agency not covered in other areas. For assisted acquisitions please include information required in the OMB FAR policy including but not limited to unique restrictions.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Additional Information"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyAdvancePaymentAuthorityCitation",
+ "Definition":"For agreements with Advance Payment allowed, free-form text stating the Servicing Agency’s specific authority that allows advances",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Advance Payment Authority Citation"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyAdvancePaymentAuthorityTitle",
+ "Definition":"For agreements with Advance Payment allowed, free-form text stating the Servicing Agency’s specific authority that allows advances",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Advance Payment Authority Title"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyAgreementTrackingNumber",
+ "Definition":"The internal Servicing Agency tracking number for the agreement.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agreement Tracking Number"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyAssistedAcquisitions",
+ "Definition":"The Servicing Agency lists or references the organizations (Offices, Bureaus, Divisions, etc.) that are authorized to provide acquisition assistance for this IAA.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Assisted Acquisitions"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyAttachmentDateTime",
+ "Definition":"The time and date the Servicing Agency file was uploaded into G-Invoicing. ",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Attachment Date/Time"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyAttachmentFileAlias",
+ "Definition":"The descriptive name for a Servicing Agency attachment which is different from the name assigned to the file itself. ",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Attachment File Alias"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyAttachmentFileName",
+ "Definition":"The actual name of the Servicing Agency attachment file.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Attachment File Name"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyAttachmentIdentifier",
+ "Definition":"The identifier that links a Servicing Agency transaction to a file attachment.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.060.070 Intragovernmental Receivable Set-Up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Attachment Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyBudgetFiscalYear",
+ "Definition":"The Servicing Agency budget or financial year, as opposed to a calendar year. The U.S. Government's fiscal year runs from October 1 of the prior year through September 30 of the next year. For example, FY 2015 was from October 2014 through September 2015.",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Budget Fiscal Year"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyBudgetLineItem",
+ "Definition":"Identifies further Servicing Agency sub-divisions of the Treasury Account Fund Symbol appropriation, below the Budget Sub Activity Level.",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Budget Line Item"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyBusinessEventTypeCode",
+ "Definition":"BETC field for the Servicing Agency used to identify the type of event that is recorded against a Treasury Account Symbol and to implement CARS business rules for the posting of events to the TAS. Required for ALCs designated as CARS Reporters.",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Business Event Type Code (BETC)"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyBusinessUnit1",
+ "Definition":"This is used to control access for Servicing Agency Business Unit 1 to the intragovernmental agreement information. ",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Business Unit"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyBusinessUnit2",
+ "Definition":"This is used to control access for Servicing Agency Business Unit 2 to the intragovernmental agreement information. ",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Cost Center"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyBusinessUnit3",
+ "Definition":"This is used to control access for Servicing Agency Business Unit 3 to the intragovernmental agreement information. ",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Department ID"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyClauses",
+ "Definition":"Identifies any additional Servicing Agency clause(s) for intragovernmental agreements.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Clauses"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyComments",
+ "Definition":"The Servicing Agency comments associated with the intragovernmental order. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Comments"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyComponentTASAgencyIdentifier",
+ "Definition":"The Treasury Account Symbol (TAS) component that identifies the department, agency or establishment of the U.S. Government that is responsible for the Servicing Agency TAS. Agency Identifier is also used apart from the TAS to identify a major department or independent agency of the Federal government.",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Component TAS AID"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyComponentTASAgencyTransferAuthority",
+ "Definition":"Department Transfer of the Servicing Agency. Agency identifier of the agency receiving funds through an allocation transfer.",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Component TAS ATA"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyComponentTASAvailabilityTypeCode",
+ "Definition":"Availability Type of the Servicing Agency. Identifies no-year accounts \"X\", clearing/suspense accounts \"F\", Treasury's central summary general ledger accounts \"A\" and merged-surplus accounts \"M.\"",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"A - Treasury central summary general ledger accunts;\r\nF - Clearing/suspense accounts;\r\nM - Merged-surplus accounts;\r\nX - No-year accounts",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Component TAS A"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyComponentTASBPeriodOfAvailability",
+ "Definition":"The Treasury Account Symbol (TAS) component that identifies the first year of availability under law that a Servicing Agency account may incur new obligations, in annual and multiyear accounts.",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Component TAS BPOA"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyComponentTASEPeriodOfAvailability",
+ "Definition":"Ending Period of Availability (Fiscal Year) of the Servicing Agency. In annual and multi-year funds, identifies the last year of availability under law that an appropriation account may incur new obligations.",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Component TAS EPOA"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyComponentTASMainAccount",
+ "Definition":"Main Account of the Servicing Agency. Identifies an available receipt of other Treasury defined subdivision of the Main Account Code.",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Component TAS MAIN"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyComponentTASSubClass",
+ "Definition":"Sub Class of the Servicing Agency. Programmatic breakdown of the account for Treasury publication purposes.",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Component TAS SP"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyComponentTASSubdivision",
+ "Definition":"The Treasury Account Symbol (TAS) component that identifies an available receipt or other Treasury-defined subdivision of the Servicing Agency main account.\r\n",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Component TAS SUB"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyCostCenterIdentifier",
+ "Definition":"The cost center which clearly defines the Servicing Agency responsibility area where costs are incurred.",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Cost Center Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyCostElementCode",
+ "Definition":"The classification of the Cost Element for the Servicing Agency organization's revenues, expenses or consumable resources. Cost Element Code only relates to primary cost. Cost Element Code does not relate to secondary cost which is identified as agency specific and not enterprise-level.",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Cost Element Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyDisbursingIdentifierCode",
+ "Definition":"The Agency Disbursing Identifier is assigned to the Servicing Agency disbursing office by the Treasury Department. The Agency Disbursing Identifier is an identification number that indicates authority to receive and disburse public funds and issue checks on the United States Treasury.",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Disbursing Identifier Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyFAIN",
+ "Definition":"The Federal Award Identification Number (FAIN) is a unique number assigned to a financial assistance award by the awarding agency. This number will identify the Servicing Agency award in several systems including: ASAP.gov, USASpending.gov, and Grants.gov. This number along with the CFDS will allow for more precise tracking of grant obligations and payments.",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Federal Award Identification Number (FAIN)"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyFinalApprovalSignedDate",
+ "Definition":"The date the Servicing Agency official provided the final signature for the General Terms and Conditions (GT&C) of the intragovernmental agreement. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date;\r\n\r\nG-Invoicing: Servicing Final Approval Signed Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyFunctionalArea",
+ "Definition":"Functional Area is a logical division of a Servicing Agency Component's business operations. It represents the Functions the Component performs.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Functional Area"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyFundingCenterIdentifier",
+ "Definition":"The funding center is a clearly defined responsibility area within the Servicing Agency organizational unit to which budget authority is assigned.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Funding Center Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyFundingOfficialDateSigned",
+ "Definition":"The date that the Servicing Agency Funding Official signs the intragovernmental order. The order becomes effective on the date it is signed by both the Requesting Agency and Servicing Agency Officials.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date;\r\n\r\nG-Invoicing: Servicing Agency Funding Official Date Signed"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyGroupIdentifier",
+ "Definition":"Unique identifier for a Servicing Agency organizational group",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Group Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyGroupName",
+ "Definition":"A unique and recognizable name for a Servicing Agency organizational group.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Group Name"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyIdentifier",
+ "Definition":"The Treasury Account Symbol (TAS) component that identifies the department, agency or establishment of the Servicing Agency that is responsible for the TAS. Agency Identifier is also used apart from the TAS to identify a major department or independent agency of the Federal government.",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyInitialApprovalSignedDate",
+ "Definition":"The date the Servicing Agency official provided the initial signature for the General Terms and Conditions (GT&C) of the intragovernmental agreement. ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date;\r\n\r\nG-Invoicing: Servicing Initial Approval Signed Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyLocationCode",
+ "Definition":"Unique identifier Agency Location Code (ALC) for a federal agency selling goods and/or services.",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(129) Treasury Bureau of Fiscal Service Shared Accounting Module (SAM) Service: Treasury Account Symbol (TAS-BETC)\r\n\r\nhttps://www.fiscal.treasury.gov/sam/ ",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Location Code (ALC), Servicing Agency ALC"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyObjectClassCode",
+ "Definition":"A code for the Servicing Agency which describes the \"nature\" of the service or article for which obligations are first incurred, regardless of the purpose, function, or program.",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Object Class Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyOrderNumber",
+ "Definition":"This is the intragovernmental order number associated with the Servicing Agency system. No specific syntax. Leverages the Component based syntax.",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Order Number"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyPersonEmail",
+ "Definition":"The email address for the person belonging to the Servicing Agency.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information;\r\nIntragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing:\r\nDelivery / Shipping Information for Product POC Email Address,\r\nPrepared Email,\r\nServicing Agency Funding Official Email Address,\r\nServicing Agency POC Email Address,\r\nServicing Agency Prepared Email,\r\nServicing Agency Program Official Email Address,\r\nServicing Final Approval Signed Email,\r\nServicing Initial Approval Signed Email"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyPersonFax",
+ "Definition":"The fax number for the person belonging to the Servicing Agency.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information;\r\nIntragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing:\r\nServicing Agency Funding Official Fax Number,\r\nServicing Agency POC Fax Number,\r\nServicing Agency Program Official Fax NumbServicing Final Approval Signed Fax,\r\nServicing Initial Approval Signed Fax"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyPersonName",
+ "Definition":"The name of the person belonging to the Servicing Agency. ",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information;\r\nIntragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing:\r\nAttachment Updated By,\r\nDelivery / Shipping Information for Product POC Name,\r\nPrepared By Name,\r\nPrepared Name,\r\nServicing Agency Funding Official Name,\r\nServicing Agency POC Name,\r\nServicing Agency Prepared Name,\r\nServicing Agency Program Official Name,\r\nServicing Final Approval Signed Name,\r\nServicing Initial Approval Signed Name"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyPersonPhone",
+ "Definition":"The telephone number for the person belonging to the Servicing Agency. ",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information;\r\nIntragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing:\r\nDelivery / Shipping Information for Product POC Telephone Number,\r\nPrepared By Phone,\r\nPrepared Phone,\r\nServicing Agency Funding Official Telephone Number,\r\nServicing Agency POC Telephone Number,\r\nServicing Agency Prepared Phone,\r\nServicing Agency Program Official Telephone Number,\r\nServicing Final Approval Signed Phone,\r\nServicing Initial Approval Signed Phone"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyPersonTitle",
+ "Definition":"The title of the person belonging to the Servicing Agency.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information;\r\nIntragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing:\r\nDelivery / Shipping Information for Product POC Title,\r\nServicing Agency Funding Official Title,\r\nServicing Agency Program Official Title,\r\nServicing Final Approval Signed Title,\r\nServicing Initial Approval Signed Title"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyPersonTypeCode",
+ "Definition":"The code that describes the type of person belonging to the Servicing Agency.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information;\r\nIntragovernmental Order Information;\r\nIntragovernmental Performance Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Attachment Update POC;\r\nShipping POC;\r\nFinal Approver;\r\nFunding Official;\r\nInitial Approver;\r\nPoint of Contact;\r\nPreparer;\r\nProgram Official",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing:\r\nAttachment Updated By,\r\nDelivery / Shipping Information for Product POC Name,\r\nPrepared By Name,\r\nPrepared Name,\r\nServicing Agency Funding Official Name,\r\nServicing Agency POC Name,\r\nServicing Agency Prepared Name,\r\nServicing Agency Program Official Name,\r\nServicing Final Approval Signed Name,\r\nServicing Initial Approval Signed Name"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyProgramAuthorityCitation",
+ "Definition":"This is the citation associated with the authority that grants the Servicing Agency program authority",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Program Authority Citation"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyProgramAuthorityTitle",
+ "Definition":"This is the title associated with the authority that grants the Servicing Agency program authority.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Program Authority Title"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyProgramOfficialDateSigned",
+ "Definition":"The date that the Servicing Agency Program Official signs the intragovernmental order. The order becomes effective on the date it is signed by both the Requesting Agency and Servicing Agency Officials.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Program Official Date Signed"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyProjectIdentifier",
+ "Definition":"The planned undertaking of work to be performed or product to be produced by the Servicing Agency having a finite beginning and end. Attachments can be leveraged to communicate key milestones that need to be captured between trading partners.",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Project Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyReimbursableFlag",
+ "Definition":"An indicator is used to flag the Servicing Agency expenditures incurred for a designated TAFS account that are considered reimbursable to the account.",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"D - Direct;\r\nR - Reimbursable",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Reimbursable Flag: R (reimbursable), D (direct)"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyRoles",
+ "Definition":"References the respective roles and responsibilities that the Servicing Agency must carry out to ensure the effective management and fulfillment of the IAA requirements. This includes if a contract or order awarded pursuant to this IAA is terminated, cancelled, a dispute or protest arises from specifications, solicitation, award, performance, or termination of the IAA. Appropriate action will be taken in accordance with the terms of the contract and applicable laws and regulations. Agencies should review the terms and conditions annually for IAAs that are longer than one year in length and execute amendments as necessary. If they cannot agree about a material aspect of the IAA, they must agree to engage in an effort to reach mutual agreement in the proper interpretation of the IAA. Please reference the G-Invoicing User Guide for processes including amendments, termination rights, and intragovernmental disputes due to interpretation.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental GTC Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Roles"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencySecurityCooperation",
+ "Definition":"Security Cooperation Customer represents the Servicing Agency's country providing the product and/or service in the Foreign Military Sales (FMS) transaction..",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Security Cooperation (formerly Foregin Military Sales (FMS) Customer Code)"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencySecurityCooperationCaseDesignator",
+ "Definition":"Security Cooperation Case Designator is used to reflect an FMS contractual sales agreement (Letter of Offer and Acceptance), on behalf of the Servicing Agency, between the U.S. and an eligible foreign country.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Security Cooperation Case Designator"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencySecurityCooperationCaseLineItemIdentifier",
+ "Definition":"The Security Cooperation Case Line Item Identifier is used to identify a detailed Servicing Agency line item requirement contained within the Letter of Offer and Acceptance.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Security Cooperation Case Line Item Identifier"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencySecurityCooperationImplementingAgencyCode",
+ "Definition":"Security Cooperation Implementing Agency Code: For the Servicing Agency, the single character alpha code which identifies the US Military Department or Agency which has negotiated or facilitated a foreign military sales case on behalf of the US Government. The majority of FMS cases are implemented by the Army (IA Code B), Navy (IA Code P) or Air Force (IA Code D).",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Security Cooperation Implementing Agency (IA) Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencySubAllocation",
+ "Definition":"Sub-Allocation Holder Identifies an organization to which funds have been sub-allocated on behalf of the Servicing Agency. ",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Sub-Allocation"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyUniqueEntityIdentifer",
+ "Definition":"The distinct number or other identifier of the Servicing Agency which is used to identify a specific commercial, nonprofit, or Government entity.",
+ "Activity Reference":"FFM.030.010 Payee Set-up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Unique Entity Identifer"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyURI",
+ "Definition":"An agency defined identifier that (when provided) is unique for every reported action for the Servicing Agency.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Unique Record Identifier (URI)"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"ServicingAgencyWorkOrderNumber",
+ "Definition":"Identifies a Servicing Agency individual unit of work, batch, or lot of a distinct product or service. ",
+ "Activity Reference":"FFM.060.070 Intragovernmental Receivable Set-Up and Maintenance;\r\nFFM.060.080 Intragovernmental Receivable Settlement",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"Intragovernmental Order Information",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"G-Invoicing: Servicing Agency Work Order Number"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"SettlementDate",
+ "Definition":"The date the payment or prepayment was paid.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 1.1.2.1",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"SettlementReceiptDate",
+ "Definition":"The date that a settlement gateway or provider receives financial data for processing.",
+ "Activity Reference":"FFM.030.130 Payment Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"SettlementStatusCode",
+ "Definition":"The settlement status code that identifies how the transaction was settled.",
+ "Activity Reference":"FFM.060.040 Public Receipt Processing",
+ "Business Capability Reference":"FFMSR 1.1.5.4",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"SourceDocumentDescription",
+ "Definition":"A brief description associated with the source document (e.g., requisition, order, or invoice).",
+ "Activity Reference":"FFM.100.010 Reconciliation of General Ledger and Subledgers\r\n",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"SourceDocumentLineDescription",
+ "Definition":"A brief description associated with a line item in a source document (e.g., requisition, order, or invoice).",
+ "Activity Reference":"FFM.100.010 Reconciliation of General Ledger and Subledgers",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"SourceDocumentLineIdentifier",
+ "Definition":"The identifier of the line item in a source document (e.g., requisition, order, or invoice).",
+ "Activity Reference":"FFM.100.010 Reconciliation of General Ledger and Subledgers",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"SourceDocumentModificationIdentifier",
+ "Definition":"An identifier issued by an agency that uniquely identifies a modification or amendment to an order, intragovernmental agreement, travel authorization, etc.",
+ "Activity Reference":"FFM.100.010 Reconciliation of General Ledger and Subledgers",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"SpendingAuthorityFromOffsettingCollectionsAmountTotal_CPE",
+ "Definition":"Spending authority from offsetting collections is a type of budget authority that permits obligations and outlays to be financed by offsetting collections.\r\n\r\nOffsetting collections mean payments to the Government that, by law, are credited directly to expenditure accounts and deducted from gross budget authority and outlays of the expenditure account, rather than added to receipts. Usually, they are authorized to be spent for the purposes of the account without further action by Congress. They usually result from business-like transactions with the public, including payments from the public in exchange for goods and services, reimbursements for damages, and gifts or donations of money to the Government and from intragovernmental transactions with other Government accounts. The authority to spend offsetting collections is a form of budget authority.\r\n\r\n\r\n",
+ "Activity Reference":"FFM.010.030 Budgetary Reporting",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: SpendingAuthorityFromOffsettingCollectionsAmountTotal_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"StatusOfBudgetaryResourcesTotal_CPE",
+ "Definition":"This element addresses the status of budgetary resources and includes the total of obligated and unobligated balances, at the reported date. The value should equal the Budget Authority Available Amount Total for the TAS at Current Period End.",
+ "Activity Reference":"FFM.010.030 Budgetary Reporting",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: StatusOfBudgetaryResourcesTotal_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"StatuteOfLimitationsExpirationDate",
+ "Definition":"The date the debt is no longer legally collectable through the Department of Justice (according to the Creditor Agency).",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"SubAccountCode",
+ "Definition":"This is a component of the TAS. Identifies a Treasury-defined subdivision of the main account. This field cannot be blank. Subaccount 000 indicates the Parent account.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(17) OMB Circular A-11, Preparation, Submission, and Execution of the Budget\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov;\r\n(125) TFM Volume I, Part 2, Chapter 4700, Appendix 8 Intra-Governmental Transaction (IGT) Buy/Sell",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information;\r\nTreasury Account Symbol (TAS) Information;\r\nIntragovernmental Organization Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nFFM-DATA Act Files BIE;\r\nFFM-GTAS BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"000",
+ "Domain Values":"(129) Treasury Bureau of Fiscal Service Shared Accounting Module (SAM) Service: Treasury Account Symbol (TAS-BETC)\r\n\r\nhttps://www.fiscal.treasury.gov/sam/ ",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: SubAccountCode;\r\n\r\nG-Invoicing: Sub Account Code"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"SubAccountRoutingNumber",
+ "Definition":"The routing number (RTN) used to segregate transaction activity, that is reported directly to the Treasury Master Account, to accommodate reporting and operational needs. It is also referred to as a SubAccount Customer Identification Number (CIN) by the Federal Reserve or as a Tier 2 RTN by Treasury.",
+ "Activity Reference":"FFM.100.010 Reconciliation of General Ledger and Sub-ledgers;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity;\r\nFFM.110.010 Treasury Reporting ",
+ "Business Capability Reference":"FFMSR 1.1.4.1;\r\nFFMSR 1.1.4.3;\r\nFFMSR 2.3.2.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"Sub-levelPrefixCode",
+ "Definition":"The Treasury Account Symbol (TAS) component that denotes the programmatic breakdown of the account for Treasury publication purposes.",
+ "Activity Reference":"FFM.090.040 Period End Closing ",
+ "Business Capability Reference":"FFMSR 1.1.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"SubmitterDetail",
+ "Definition":"Contains the sending trading partner submitter name.",
+ "Activity Reference":"FFM.060.040 Public Receipt Processing;\r\nFFM.060.050.Public Receivable Monitoring and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.4.1;\r\nFFMSR 2.2.5.1;\r\nFFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"SubObjectClass",
+ "Definition":"According to OMB Circular A-11, Section 83, \"Object classes are categories in a classification system that presents obligations by the items or services purchased by the Federal Government.\" The Budget Object Class (BOC) Information Data Group consists of four components that combine to create a 7-digit BOC. The Sub-Object Class component of the BOC consists of the third and fourth characters of the 7-digit BOC. When concatenated, the Major Object Class, the Minor Object Class, and the Sub-Object Class create the four-character string known as Object Class for GTAS and DATA Act reporting. Note: as of 2022, the fourth character is a constant zero, reserved for future use.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(33) DATA Act Information Model Schema (DAIMS);\r\n(46) OMB Circular A-11, Section 83;\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information;\r\nBudget Object Class (BOC) Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nFFM-DATA Act Files BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":2,
+ "Max Length":2,
+ "Example Value":"",
+ "Domain Values":"(46) OMB Circular A-11, Section 83;\r\n\r\nhttps://www.whitehouse.gov/wp-content/uploads/2018/06/s83.pdf",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: ObjectClass"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"SubsetOfEndingBalanceInterestAndLateChargesAmount",
+ "Definition":"Interest & Late Charges: The dollar amount of interest and late charges associated with the total outstanding receivables due from the public, at the end of the reporting period, i.e., reported in Part I, Section A, line 7, \"Ending Balance\". This amount includes both the current and previous fiscal years' interest and late charges.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.5.5;\r\nFFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"SubsetOfEndingBalanceRescheduledDebtDelinquentAmount",
+ "Definition":"Rescheduled Debt - Delinquent: The dollar amount of rescheduled debts for which payments have not been received according to new or modified terms of an agreement to repay the debt. Note: The amount entered here should be the original amount of the delinquency, unless the terms of the repayment agreement do not provide for reinstating the total amount of the original debt.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.5.7;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"SubsetOfEndingBalanceRescheduledDebtNonDelinquentAmount",
+ "Definition":"Rescheduled Debt - Non-Delinquent: The dollar amount of rescheduled debt for which payments are being received according to new or modified terms of an agreement to repay the debt.",
+ "Activity Reference":"FFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"SubsetOfEndingBalanceRescheduledDebtNonDelinquentNumber",
+ "Definition":"Rescheduled Debt - Non-Delinquent: The number of rescheduled debt for which payments are being received according to new or modified terms of an agreement to repay the debt.",
+ "Activity Reference":"FFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"SubsetOfEndingBalanceStateAndLocalGovernmentAmount",
+ "Definition":"State and Local Government: The dollar amount of receivables owed to the U.S. government by State governments and local governments or governmental entities, including public schools, colleges and universities.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.6.1;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"SubsetOfEndingBalanceStateAndLocalGovernmentNumber",
+ "Definition":"State and Local Government: The number of receivables owed to the U.S. government by State governments and local governments or governmental entities, including public schools, colleges and universities.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.6.1;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"SummaryAccountingDate",
+ "Definition":"Indicates a specific date related to a business line within a Reported Summaries container.",
+ "Activity Reference":"FFM.040.020 Revenue Reporting;\r\nFFM.060.040 Public Receipt Processing;\r\nFFM.070.030 Delinquent Debt Reporting;\r\nFFM.090.030 Accrual and Liability Processing",
+ "Business Capability Reference":"FFMSR 1.1.5.4;\r\nFFMSR 1.1.5.5;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"SummaryBankInfo",
+ "Definition":"Contains a routing number for an account.",
+ "Activity Reference":"FFM.030.130 Payment Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"SummaryID",
+ "Definition":"The identifier for the summary record. A receiving system can use this value to reconcile updates to an existing record and qualify new records. A sending system can used this value to reconcile acknowledgements for the submitted records.",
+ "Activity Reference":"FFM.060.040 Public Receipt Processing;\r\nFFM.100.030 Reconciliation with Treasury",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.3.1.3 ",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"TAS_AccountTypeCode",
+ "Definition":"Indicates what type of account the TAS is.",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control",
+ "Business Capability Reference":"FFMSR 2.1.1.3",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"CXPND - Clearing Accounts;\r\nDEPST - Deposit Fund;\r\nEXPND - Expenditure;\r\nUAPPR - Unappropriated Receipt;\r\nURCPT - Unavailable Receipt\r\n",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"TAS_StatusCode",
+ "Definition":"Expired - time period the budget authority is no longer available for new obligations but is still available for disbursement. Unexpired - time period the budget authority is available for incurring \"new\" obligations. Annual budget authority lasts for up to one fiscal year. Multi-year authority lasts for longer periods. No-year authority last indefinitely. Canceled - time period after the last expired year, the account is closed, and the balances are canceled. The authority to disburse is canceled and is no longer available for any purpose.",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control;\r\nFFM.090.010 General Ledger Set-up and Maintenance;\r\nFFM.090.040 Period End Closing;\r\nFFM.100.010 Reconciliation of General Ledger and Sub-ledgers;\r\nFFM.100.030 Reconciliation with Treasury;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 1.1.1.3;\r\nFFMSR 1.1.2.1;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.1.1.3;\r\nFFMSR 2.1.2.3;\r\nFFMSR 2.2.2.6;\r\nFFMSR 2.3.1.1;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(17) OMB Circular A-11, Preparation, Submission, and Execution of the Budget;\r\n(27) TFM, Volume I, Supplement: United States Standard General Ledger (USSGL), Section IV, USSGL Account Attributes, Account Attribute Definition Report\r\n",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"C - Canceled;\r\nE - Expired;\r\nU - Unexpired",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"TAS_StatusTransitioningCode",
+ "Definition":"Expiring - Applies to annual and multi-year accounts only. TAS Status Transitioning Flag is set to expiring in period 12 of the ending year of availability. Canceling - Applies to \r\nannual and multi-year accounts. For annual and multi-year accounts, the TAS Status Transitioning Flag is set to cancelling in period 12 of the 5th expired year.",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control;\r\nFFM.090.010 General Ledger Set-up and Maintenance;\r\nFFM.090.040 Period End Closing;\r\nFFM.100.010 Reconciliation of General Ledger and Sub-ledgers;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.030 Cash Forecasting and Reporting\r\n ",
+ "Business Capability Reference":"FFMSR 1.1.1.3;\r\nFFMSR 1.1.2.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.1.2.3;\r\nFFMSR 2.2.2.6;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(17) OMB Circular A-11, Preparation, Submission, and Execution of the Budget;\r\n(27) TFM, Volume I, Supplement: United States Standard General Ledger (USSGL), Section IV, USSGL Account Attributes, Account Attribute Definition Report\r\n",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"K - Canceling;\r\nN - Not applicable;\r\nX - Expiring",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"TaxableAmount",
+ "Definition":"The taxable amount of the transaction, e.g. bill, order, invoice.",
+ "Activity Reference":"FFM.060.020 Public Receivable Setup and Billing Invoicing",
+ "Business Capability Reference":"FFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"TaxCategory",
+ "Definition":"The categorization which indicates the type of IRS tax.",
+ "Activity Reference":"FFM.040.010 Revenue Processing;\r\nFFM.040.020 Revenue Reporting;\r\nFFM.060.020 Public Receivable Set-up and Invoicing;\r\nFFM.060.040 Public Receipt Processing;\r\nFFM.070.010 Delinquent Debt Collection;\r\nFFM.090.030 Accrual and Liability Processing",
+ "Business Capability Reference":"FFMSR 1.1.5.1;\r\nFFMSR 1.1.5.4",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"TOP_Data",
+ "Definition":"Container for the Treasury Offset Program",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"TotalBudgetaryResources_CPE",
+ "Definition":"Budgetary resources mean amounts available to incur obligations in a given year. Budgetary resources consist of new budget authority and unobligated balances of budget authority provided in previous years.",
+ "Activity Reference":"FFM.010.030 Budgetary Reporting",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: TotalBudgetaryResources_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"TradingPartnerAgencyIdentifier",
+ "Definition":"Represents the agency identifier of the other department, agency, or establishment of the U. S. government involved in transactions with the reporting entity. Required if the Fed/Non-Federal Indicator = F or G.",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control;\r\nFFM.060.040 Public Receipt Processing;\r\nFFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.090.010 General Ledger Set-up and Maintenance;\r\nFFM.090.030 Accrual and Liability Processing;\r\nFFM.090.040 Period End Closing;\r\nFFM.100.010 Reconciliation of General Ledger and Sub-ledgers;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.030 Cash Forecasting and Reporting;\r\nFFM.110.040 Financial Performance and Operational Reporting",
+ "Business Capability Reference":"FFMSR 1.1.1.2;\r\nFFMSR 1.1.2.1;\r\nFFMSR 1.1.5.4;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.1.2.3;\r\nFFMSR 2.2.2.6;\r\nFFMSR 2.2.5.1;\r\nFFMSR 2.2.6.2;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(27) TFM, Volume I, Supplement: United States Standard General Ledger (USSGL), Section IV, USSGL Account Attributes, Account Attribute Definition Report; \r\n(31) TFM Volume I, Part 2, Chapter 4700 Federal Entity Reporting Requirements for the Financial Report of the United States Government ",
+ "Data Group Name":"FFM Transaction Information;\r\nTrading Partner Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nFFM-GTAS BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(129) Treasury Bureau of Fiscal Service Shared Accounting Module (SAM) Service: Treasury Account Symbol (TAS-BETC)\r\n\r\nhttps://www.fiscal.treasury.gov/sam/ ",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"TradingPartnerBusinessEventTypeCode",
+ "Definition":"Represents the business event type code for the other department, agency, or establishment of the U.S. Government involved in transactions with the reporting entity. ",
+ "Activity Reference":"FFM.090.030 Accrual and Liability Processing;\r\nFFM.090.040 Period End Closing;\r\nFFM.100.010 Reconciliation of General Ledger and Sub-ledgers;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity;\r\nFFM.100.030 Reconciliation with Treasury;\r\nFFM.110.010 Treasury Reporting",
+ "Business Capability Reference":"FFMSR 1.1.2.1;\r\nFFMSR 1.1.4.1;\r\nFFMSR 1.1.4.3;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.3.1.1;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"FFM Transaction Information;\r\nTrading Partner Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(130) Treasury Bureau of Fiscal Service, BETC Guidance\r\n\r\n https://www.fiscal.treasury.gov/files/cars/betc-guidance.xlsx ",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"TradingPartnerMainAccountCode",
+ "Definition":"Represents the treasury main account code of the other department, agency, or establishment of the U. S. Government involved in transactions with the reporting entity. Required if the Fed/Non-Federal Indicator = F.",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control;\r\nFFM.060.050.Public Receivable Monitoring and Maintenance;\r\nFFM.090.010 General Ledger Set-up and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.090.030 Accrual and Liability Processing;\r\nFFM.090.040 Period End Closing;\r\nFFM.100.010 Reconciliation of General Ledger and Sub-ledgers;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 1.1.1.2;\r\nFFMSR 1.1.2.1;\r\nFFMSR 1.1.5.4;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.1.2.3;\r\nFFMSR 2.2.2.6",
+ "Authoritative and Other Reference(s)":"(27) TFM, Volume I, Supplement: United States Standard General Ledger (USSGL), Section IV, USSGL Account Attributes, Account Attribute Definition Report; \r\n(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(31) TFM Volume I, Part 2, Chapter 4700 Federal Entity Reporting Requirements for the Financial Report of the United States Government",
+ "Data Group Name":"FFM Transaction Information;\r\nTrading Partner Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nFFM-GTAS BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(129) Treasury Bureau of Fiscal Service Shared Accounting Module (SAM) Service: Treasury Account Symbol (TAS-BETC)\r\n\r\nhttps://www.fiscal.treasury.gov/sam/ ",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"TransactionIdentificationDate",
+ "Definition":"The date of the transaction (ex. Deposit date of a payment, effective date of the adjustment, etc.). It is the effective date of the transaction.",
+ "Activity Reference":"FFM.030.030 Payment Processing - Intragovernmental Payments;\r\nFFM.030.040 Payment Processing - Payroll Payments;\r\nFFM.030.050 Payment Processing - Travel TDY and Local Payments;\r\nFFM.030.060 Payment Processing - Travel PCS Payments;\r\nFFM.030.070 Payment Processing - Commercial Payments;\r\nFFM.030.080 Payment Processing - Grant Payments;\r\nFFM.030.090 Payment Processing - Loan Payments;\r\nFFM.030.100 Payment Processing - Other Payments (Foreign and Miscellaneous Payments);\r\nFFM.030.110 Payment Disbursement;\r\nFFM.030.120 Payment Confirmation;\r\nFFM.040.010 Revenue Processing;\r\nFFM.040.020 Revenue Reporting;\r\nFFM.060.020 Public Receivable Set-up and Invoicing;\r\nFFM.060.040 Public Receipt Processing;\r\nFFM.070.010 Delinquent Debt Collection;\r\nFFM.090.030 Accrual and Liability Processing;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity;\r\nFFM.100.010 Reconciliation of General Ledger and Sub-ledgers;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 1.1.4.3;\r\nFFMSR 1.1.5.4;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.1.5.4;\r\nFFMSR 2.2.1.2;\r\nFFMSR 2.2.1.4;\r\nFFMSR 2.2.2.4;\r\nFFMSR 2.2.2.5;\r\nFFMSR 2.2.2.6;\r\nFFMSR 2.2.4.1;\r\nFFMSR 2.2.4.3;\r\nFFMSR 2.2.5.1;\r\nFFMSR 2.2.5.7;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"FFM Transaction Information",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE\r\n",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"YYYYMMDD",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"Common: Date"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"TransactionObligatedAmount",
+ "Definition":"The definition for this element appears in Section 20 (https://obamawhitehouse.archives.gov/sites/default/files/omb/assets/a11_current_year/s20.pdf) of OMB Circular A-11 issued June 2015; a brief summary from A-11 appears below. \r\n\r\nObligation means a binding agreement that will result in outlays, immediately or in the future. Budgetary resources must be available before obligations can be incurred legally.",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing - Intragovernmental Payments;\r\nFFM.030.040 Payment Processing - Payroll Payments;\r\nFFM.030.050 Payment Processing - Travel TDY and Local Payments;\r\nFFM.030.060 Payment Processing - Travel PCS Payments;\r\nFFM.030.070 Payment Processing - Commercial Payments;\r\nFFM.030.080 Payment Processing - Grant Payments;\r\nFFM.030.090 Payment Processing - Loan Payments;\r\nFFM.030.100 Payment Processing - Other Payments (Foreign and Miscellaneous Payments);\r\nFFM.040.010 Revenue Processing;\r\nFFM.040.020 Revenue Reporting",
+ "Business Capability Reference":"FFMSR 2.2.1.2;\r\nFFMSR 1.1.5.1",
+ "Authoritative and Other Reference(s)":"(17) OMB Circular A-11, Preparation, Submission, and Execution of the Budget;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: TransactionObligatedAmount"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"TransferAmount",
+ "Definition":"The amount of funds (to be) transferred between a deposit account at an agent or depositary and a routing number (RTN) that the Federal Reserve maintains for Treasury.",
+ "Activity Reference":"FFM.060.050.Public Receivable Monitoring and Maintenance",
+ "Business Capability Reference":"FFMSR 2.2.6.1;\r\nFFMSR 2.2.6.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"TransferSummaryIdentifier",
+ "Definition":"The unique identifier for a Transfer Summary.",
+ "Activity Reference":"FFM.100.020 Reconciliation of Intragovernmental Activity",
+ "Business Capability Reference":"FFMSR 1.1.4.1;\r\nFFMSR 1.1.4.3",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"TreasuryAccountSymbol",
+ "Definition":"The Treasury Account Symbol is an identification code assigned by Treasury, in collaboration with OMB and the owner agency, to an individual appropriation, receipt, or other fund account. ",
+ "Activity Reference":"FFM.030.020 Obligation Management;\r\nFFM.030.030 Payment Processing - Intragovernmental Payments;\r\nFFM.030.040 Payment Processing - Payroll Payments;\r\nFFM.030.050 Payment Processing - Travel TDY and Local Payments;\r\nFFM.030.060 Payment Processing - Travel PCS Payments;\r\nFFM.030.070 Payment Processing - Commercial Payments;\r\nFFM.030.080 Payment Processing - Grant Payments;\r\nFFM.030.090 Payment Processing - Loan Payments;\r\nFFM.030.100 Payment Processing - Other Payments (Foreign and Miscellaneous Payments);\r\nFFM.090.020 General Ledger Posting;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity;\r\nFFM.110.010 Treasury Reporting\r\n",
+ "Business Capability Reference":"FFMSR 1.1.2.1;\r\nFFMSR 2.2.1.2;\r\nFFMSR 2.3.2.2",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(31) TFM Volume I, Part 2, Chapter 4700 Federal Entity Reporting Requirements for the Financial Report of the United States Government",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(132) TFM, Volume 1, Part 2, Chapter 1500, Descriptions of Accounts Relating to Financial Operations\r\n\r\nhttps://tfm.fiscal.treasury.gov/v1/p2/c150 ",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"TreasuryReportOnReceivablesAndDebtCollectionActivities",
+ "Definition":"Container element for TROR reports",
+ "Activity Reference":"FFM.060.060 Public Receivable and Collection Reporting;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"TreasuryReportOnReceivablesDebtCategoryName",
+ "Definition":"The name of a classification of receivable debt based on the type of activity receiving the debt and reported on the Treasury Report on Receivables. This includes Commercial, Consumer, Foreign sovereign government, and State and Local Government categories.",
+ "Activity Reference":"FFM.060.040 Public Receipt Processing;\r\nFFM.070.010 Delinquent Debt Collection;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 1.1.5.1;\r\nFFMSR 2.2.5.1;\r\nFFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(104) TFM Volume I, Part 3, Chapter 7000 Section 7120, Reporting Requirements, and the Instructional Workbook for Preparing the Treasury Report on Receivables and Debt Collection Activities, Parts I and II referenced therein",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"See Authoritative Reference",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"UnobligatedBalance_CPE",
+ "Definition":"Unobligated balance means the cumulative amount of budget authority that remains available for obligation under law in unexpired accounts. The term “expired balances available for adjustment only” refers to unobligated amounts in expired accounts.\r\n \r\n\r\n",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: UnobligatedBalance_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"URI",
+ "Definition":"Unique Record Identifier. An agency defined identifier that (when provided) is unique for every reported action.",
+ "Activity Reference":"FFM.100.030 Reconciliation with Treasury;\r\nFFM.110.010 Treasury Reporting",
+ "Business Capability Reference":"FFMSR 1.3.1.2;\r\nFFMSR 2.3.1.1",
+ "Authoritative and Other Reference(s)":"(21) OMB M-09-19, Guidance on Data Submission under the Federal Funding Accountability and Transparency Act (FFATA);\r\n(22) OMB M-17-04, Additional Guidance for DATA Act Implementation: Further Requirements for Reporting and Assuring Data Quality;\r\n(24) OMB MPM 2016-03;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: URI"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"USPS_IntelligentMailBarCode",
+ "Definition":"The field used for all intelligent barcode data elements. An agency must work with their Treasury payment servicing center and the US Postal Service to arrange for this service.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.4.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"USSGL_AccountNumber",
+ "Definition":"A six-digit number used to identify a specific U.S. Standard General Ledger account. The USSGL account must be in the USSGL chart of accounts.",
+ "Activity Reference":"FFM.010.010 Budget Setup and Maintenance;\r\nFFM.010.030 Budgetary Reporting;\r\nFFM.090.010 General Ledger Setup and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.040 Financial Performance and Operational Reporting\r\n\r\n",
+ "Business Capability Reference":"FFMSR 1.1.1.1;\r\nFFMSR 1.1.2.2;\r\nFFMSR 1.3.1.1;\r\nFFMSR 1.3.1.2;\r\nFFMSR 1.4.1.1;\r\nFFMSR 2.1.1.1;\r\nFFMSR 2.1.1.3; \r\nFFMSR 2.1.3.1\r\n\r\n",
+ "Authoritative and Other Reference(s)":"(27) TFM, Volume I, Supplement: United States Standard General Ledger (USSGL), Section IV, USSGL Account Attributes, Account Attribute Definition Report; \r\n(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"FFM Transaction Information;\r\nFFM Transaction Line Information;\r\nFFM Transaction Line of Accounting (LOA) Information;\r\nAccount Classification Structure (ACS) Information\r\n",
+ "Business Information Exchange (BIE)":"ACQ-FFM BIE;\r\nFFM-GTAS BIE;\r\nGRM-FFM BIE;\r\nRPM-FFM BIE;\r\nTRT-FFM BIE",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"(27) TFM, USSGL, Part 2, Section IV, Account Attribute Definition Report;\r\n https://tfm.fiscal.treasury.gov/system/files/documents/2022-12/p2sec4_attribdef_2024.pdf",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"Required",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"USSGL_AccountType",
+ "Definition":"Indicates whether the USSGL account is an Asset, Liability, Budgetary, Equity, Expense or Revenue.",
+ "Activity Reference":"FFM.090.010 General Ledger Set-up and Maintenance",
+ "Business Capability Reference":"",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"Asset;\r\nBudgetary;\r\nEquity;\r\nExpense;\r\nLiability;\r\nRevenue",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"USSGL470000_CommitmentsProgramsSubjectToApportionment_CPE",
+ "Definition":"The amount of allotment or lower-level authority committed in anticipation of obligation for programs subject to apportionment.",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"USSGL480100_UndeliveredOrdersObligationsUnpaid_CPE",
+ "Definition":"The amount of goods and/or services ordered, which have not been actually or constructively received and for which amounts have not been prepaid or advanced. This includes amounts specified in other contracts or agreements such as grants, program subsidies, undisbursed loans and claims, and similar events for which an advance or prepayment has not occurred. This account does not close at yearend. (Per USSGL TFM Part 2, Section II, Accounts and Definitions.) ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: USSGL480100_UndeliveredOrdersObligationsUnpaid_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"USSGL480100_UndeliveredOrdersObligationsUnpaid_FYB",
+ "Definition":"The amount of goods and/or services ordered, which have not been actually or constructively received and for which amounts have not been prepaid or advanced. This includes amounts specified in other contracts or agreements such as grants, program subsidies, undisbursed loans and claims, and similar events for which an advance or prepayment has not occurred. This account does not close at yearend. (Per USSGL TFM Part 2, Section II, Accounts and Definitions.) ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: USSGL480100_UndeliveredOrdersObligationsUnpaid_FYB"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"USSGL480200_UndeliveredOrdersObligationsPrepaidAdvanced_CPE",
+ "Definition":"The amount of goods and/or services ordered, which have not been actually or constructively received but have been prepaid or advanced. This includes amounts specified in other contracts or agreements such as grants, program subsidies, undisbursed loans and claims, and similar events for which an advance or prepayment has occurred. This account does not close at yearend. (Per USSGL TFM Part 2, Section II, Accounts and Definitions.)",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: USSGL480200_UndeliveredOrdersObligationsPrepaidAdvanced_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"USSGL480200_UndeliveredOrdersObligationsPrepaidAdvanced_FYB",
+ "Definition":"The amount of goods and/or services ordered, which have not been actually or constructively received but have been prepaid or advanced. This includes amounts specified in other contracts or agreements such as grants, program subsidies, undisbursed loans and claims, and similar events for which an advance or prepayment has occurred. This account does not close at yearend. (Per USSGL TFM Part 2, Section II, Accounts and Definitions.)",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: USSGL480200_UndeliveredOrdersObligationsPrepaidAdvanced_FYB"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"USSGL483100_UndeliveredOrdersObligationsTransferredUnpaid_CPE",
+ "Definition":"The amount of goods and/or services ordered and obligated in one Treasury Appropriation Fund Symbol (TAFS) and transferred to or from another TAFS, which have not been actually or constructively received and not prepaid or advanced at the time of transfer. This includes amounts specified in other contracts or agreements such as grants, program subsidies, undisbursed loans and claims, and similar events for which an advance or prepayment has not occurred. Although the normal balance for this account is credit, it is acceptable for this account to have a debit balance. (Per USSGL TFM Part 2, Section II, Accounts and Definitions.) ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: USSGL483100_UndeliveredOrdersObligationsTransferredUnpaid_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"USSGL483200_UndeliveredOrdersObligationsTransferredPrepaidAdvanced_CPE",
+ "Definition":"The amount of goods and/or services ordered and obligated in one Treasury Appropriation Fund Symbol (TAFS) and transferred to or from another TAFS, which have not been actually or constructively received but have been prepaid or advanced at the time of transfer. This includes amounts specified in other contracts or agreements such as grants, program subsidies, undisbursed loans and claims, and similar events for which an advance or prepayment has not occurred. Although the normal balance for this account is credit, it is acceptable for this account to have a debit balance.(Per USSGL TFM Part 2, Section II, Accounts and Definitions.)",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS:USSGL483200_UndeliveredOrdersObligationsTransferredPrepaidAdvanced_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"USSGL487100_DownwardAdjustmentsOfPriorYearUnpaidUndeliveredOrdersObligationsRecoveries_CPE",
+ "Definition":"The amount of recoveries during the current fiscal year resulting from downward adjustments to obligations originally recorded in a prior fiscal year in USSGL account 480100, \"Undelivered Orders - Obligations, Unpaid.\" (Per USSGL TFM Part 2, Section II, Accounts and Definitions.)",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: USSGL487100_DownwardAdjustmentsOfPriorYearUnpaidUndeliveredOrdersObligationsRecoveries_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"USSGL487200_DownwardAdjustmentsOfPriorYearPrepaidAdvancedUndeliveredOrdersObligationsRefundsCollected_CPE",
+ "Definition":"The amount of cash refunds during the current fiscal year resulting from downward adjustments to obligations that were originally recorded in a prior fiscal year in USSGL account 480200, \"Undelivered Orders - Obligations, Prepaid/Advanced.\" (Per USSGL TFM Part 2, Section II, Accounts and Definitions.)",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: USSGL487200_DownwardAdjustmentsOfPriorYearPrepaidAdvancedUndeliveredOrdersObligationsRefundsCollected_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"USSGL488100_UpwardAdjustmentsOfPriorYearUndeliveredOrdersObligationsUnpaid_CPE",
+ "Definition":"The amount of upward adjustments during the current fiscal year to obligations that were originally recorded in a prior fiscal year in USSGL account 480100,\"Undelivered Orders - Obligations, Unpaid.\" (Per USSGL TFM Part 2, Section II, Accounts and Definitions.) ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: USSGL488100_UpwardAdjustmentsOfPriorYearUndeliveredOrdersObligationsUnpaid_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"USSGL488200_UpwardAdjustmentsOfPriorYearUndeliveredOrdersObligationsPrepaidAdvanced_CPE",
+ "Definition":"The amount of upward adjustments during the current fiscal year to obligations that were originally recorded in a prior fiscal year in USSGL account 480200,\"Undelivered Orders - Obligations, Prepaid/Advanced.\" (Per USSGL TFM Part 2, Section II, Accounts and Definitions.)",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: USSGL488200_UpwardAdjustmentsOfPriorYearUndeliveredOrdersObligationsPrepaidAdvanced_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"USSGL490100_DeliveredOrdersObligationsUnpaid_CPE",
+ "Definition":"The amount accrued or due for: (1) services performed by employees, contractors, vendors, carriers, grantees, lessors, and other government funds; (2) goods and tangible property received; and (3) programs for which no current service performance is required such as annuities, insurance claims, benefit payments, loans, etc. (Per USSGL TFM Part 2, Section II, Accounts and Definitions.) This account does not close at year-end. (Per USSGL TFM Part 2, Section II, Accounts and Definitions.)",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: USSGL490100_DeliveredOrdersObligationsUnpaid_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"USSGL490100_DeliveredOrdersObligationsUnpaid_FYB",
+ "Definition":"The amount accrued or due for: (1) services performed by employees, contractors, vendors, carriers, grantees, lessors, and other government funds; (2) goods and tangible property received; and (3) programs for which no current service performance is required such as annuities, insurance claims, benefit payments, loans, etc. (Per USSGL TFM Part 2, Section II, Accounts and Definitions.) This account does not close at year-end. (Per USSGL TFM Part 2, Section II, Accounts and Definitions.)",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: USSGL490100_DeliveredOrdersObligationsUnpaid_FYB"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"USSGL490200_DeliveredOrdersObligationsPaid_CPE",
+ "Definition":"The amount paid/outlayed for: (1) services performed by employees, contractors, vendors, carriers, grantees, lessors, and other government funds; (2) goods and tangible property received; and (3) programs for which no current service performance is required such as annuities, insurance claims, benefit payments, loans, etc. (Per USSGL TFM Part 2, Section II, Accounts and Definitions.)",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: USSGL490200_DeliveredOrdersObligationsPaid_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"USSGL490800_AuthorityOutlayedNotYetDisbursed_CPE",
+ "Definition":"The amount of authority outlayed but not yet disbursed. Use only in specific circumstances, such as for interest on certain Bureau of the Fiscal Service securities. This account does not close at yearend. (Per USSGL TFM Part 2, Section II, Accounts and Definitions.)",
+ "Activity Reference":"FFM.030.130 Payment Reporting",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: USSGL490800_AuthorityOutlayedNotYetDisbursed_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"USSGL490800_AuthorityOutlayedNotYetDisbursed_FYB",
+ "Definition":"The amount of authority outlayed but not yet disbursed. Use only in specific circumstances, such as for interest on certain Bureau of the Fiscal Service securities. This account does not close at yearend. (Per USSGL TFM Part 2, Section II, Accounts and Definitions.)",
+ "Activity Reference":"FFM.030.130 Payment Reporting",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: USSGL490800_AuthorityOutlayedNotYetDisbursed_FYB"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"USSGL493100_DeliveredOrdersObligationsTransferredUnpaid_CPE",
+ "Definition":"The amount in USSGL account 490100, \"Delivered Orders - Obligations, Unpaid,\" transferred during the fiscal year to or from another Treasury Appropriation Fund Symbol. This includes amounts accrued or due for: (1) services performed by employees, contractors, vendors, carriers, grantees, lessors, and other government funds; (2) goods and tangible property received; and (3) programs for which no current service performance is required such as annuities, insurance claims, benefit payments, loans, etc. Although the normal balance for this account is credit, it is acceptable in certain instances for this account to have a debit balance. (Per USSGL TFM Part 2, Section II, Accounts and Definitions.) ",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: USSGL493100_DeliveredOrdersObligationsTransferredUnpaid_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"USSGL497100_DownwardAdjustmentsOfPriorYearUnpaidDeliveredOrdersObligationsRecoveries_CPE",
+ "Definition":"The amount of recoveries that were originally recorded in a prior fiscal year during the fiscal year resulting from downward adjustments to USSGL account 490100, \"Delivered Orders - Obligations, Unpaid.\" (Per USSGL TFM Part 2, Section II, Accounts and Definitions.)",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: USSGL497100_DownwardAdjustmentsOfPriorYearUnpaidDeliveredOrdersObligationsRecoveries_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"USSGL497200_DownwardAdjustmentsOfPriorYearPaidDeliveredOrdersObligationsRefundsCollected_CPE",
+ "Definition":"The amount of cash refunds during the fiscal year resulting from downward adjustments to USSGL account 490200, \"Delivered Orders - Obligations, Paid,\" that were originally recorded in a prior fiscal year. (Per USSGL TFM Part 2, Section II, Accounts and Definitions.)",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: USSGL497200_DownwardAdjustmentsOfPriorYearPaidDeliveredOrdersObligationsRefundsCollected_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"USSGL498100_UpwardAdjustmentsOfPriorYearDeliveredOrdersObligationsUnpaid_CPE",
+ "Definition":"The amount of upward adjustments during the fiscal year to USSGL account 490100, \"Delivered Orders - Obligations, Unpaid,\" or USSGL account 490200, \"Delivered Orders - Obligations, Paid,\" that were originally recorded in a prior fiscal year. (Per USSGL TFM Part 2, Section II, Accounts and Definitions.)",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: USSGL498100_UpwardAdjustmentsOfPriorYearDeliveredOrdersObligationsUnpaid_CP"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"USSGL498200_UpwardAdjustmentsOfPriorYearDeliveredOrdersObligationsPaid_CPE",
+ "Definition":"The amount of upward adjustments that were originally recorded in a prior fiscal year paid/outlayed during the fiscal year to USSGL account 490100, \"Delivered Orders - Obligations, Unpaid,\" or USSGL account 490200, \"Delivered Orders - Obligations, Paid.\" (Per USSGL TFM Part 2, Section II, Accounts and Definitions.)",
+ "Activity Reference":"FFM.030.020 Obligation Management",
+ "Business Capability Reference":"FFMSR 2.1.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry;\r\n(33) DATA Act Information Model Schema (DAIMS);\r\n(48) TFM, Volume I, Part 2, Chapter 6000 Agency Reporting Requirements for USAspending.gov",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-DATA Act Files BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":"DAIMS: USSGL498200_UpwardAdjustmentsOfPriorYearDeliveredOrdersObligationsPaid_CPE"
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"WaiverDeniedIndicator",
+ "Definition":"Indicates whether a request for a disability waiver was denied prior to referral to Cross-Servicing.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"WirePayeeBankInfo",
+ "Definition":"Contains the payee bank information for a wire payment.",
+ "Activity Reference":"FFM.030.130 Payment Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"WireReporting",
+ "Definition":"Contains the reporting wire payment information.",
+ "Activity Reference":"FFM.030.130 Payment Reporting;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 2.2.3.1",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"WriteOffAmount",
+ "Definition":"The amount of delinquent debt currently not collectable or closed out. ",
+ "Activity Reference":"FFM.070.020 Delinquent Debt Write-off and Closeout;\r\nFFM.070.030 Delinquent Debt Reporting",
+ "Business Capability Reference":"FFMSR 2.2.6.1",
+ "Authoritative and Other Reference(s)":"(104) TFM Volume I, Part 3, Chapter 7000 Section 7120, Reporting Requirements, and the Instructional Workbook for Preparing the Treasury Report on Receivables and Debt Collection Activities, Parts I and II referenced therein",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"X",
+ "Data Type":"",
+ "Element Format":"Output should be displayed using decimal point and hundredths of dollars",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"WrittenOffIndicator",
+ "Definition":"Indicates whether or not the Creditor Agency has written off the debt, but it is not closed out.",
+ "Activity Reference":"FFM.070.010 Delinquent Debt Collection",
+ "Business Capability Reference":"FFMSR 2.2.5.1;\r\nFFMSR 2.2.5.7",
+ "Authoritative and Other Reference(s)":"(29) TFM, Volume I, Part 6, Chapter 2100 Fiscal Service Data Registry",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ },
+ {
+ "Functional Area":"FFM",
+ "Functional Area Steward":"FFM",
+ "Data Element Label":"YearOfBudgetAuthorityIndicator",
+ "Definition":"Identifies whether outlays are from the new budget authority (NEW) or from budget authority carried forward from the prior year (BAL). This is derived from the funding source year and used for expenditure TAS that are not credit financing TAS. ",
+ "Activity Reference":"FFM.010.020 Fund Allocation and Control;\r\nFFM.090.010 General Ledger Set-up and Maintenance;\r\nFFM.090.020 General Ledger Posting;\r\nFFM.090.030 Accrual and Liability Processing;\r\nFFM.090.040 Period End Closing;\r\nFFM.100.010 Reconciliation of General Ledger and Sub-ledgers;\r\nFFM.100.020 Reconciliation of Intragovernmental Activity;\r\nFFM.110.010 Treasury Reporting;\r\nFFM.110.020 Financial Statement Preparation;\r\nFFM.110.030 Cash Forecasting and Reporting",
+ "Business Capability Reference":"FFMSR 1.1.1.3;\r\nFFMSR 1.1.2.1;\r\nFFMSR 1.1.5.4;\r\nFFMSR 1.3.1.2;\r\nFFMSR 2.1.2.3;\r\nFFMSR 2.2.2.6;\r\nFFMSR 2.3.2.1",
+ "Authoritative and Other Reference(s)":"(17) OMB Circular A-11, Preparation, Submission, and Execution of the Budget;\r\n(27) TFM, Volume I, Supplement: United States Standard General Ledger (USSGL), Section IV, USSGL Account Attributes, Account Attribute Definition Report\r\n",
+ "Data Group Name":"",
+ "Business Information Exchange (BIE)":"FFM-GTAS BIE",
+ "Core FS Pre-Built Business Report Data Element":"",
+ "Data Type":"",
+ "Element Format":"",
+ "Min Length":"",
+ "Max Length":"",
+ "Example Value":"",
+ "Domain Values":"BAL - Outlays from balances brought forward;\r\nNEW - Outlays from new budget authority",
+ "Core FS \r\n Pre-Loaded Master Reference Data":"",
+ "Validations":"",
+ "Related Data Element Reference(s)":""
+ }
+ ]
+
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
index ee334453a..bdd2334a5 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,5083 +1,642 @@
{
"name": "federalist-uswds-jekyll",
"version": "1.3.0",
- "lockfileVersion": 1,
+ "lockfileVersion": 3,
"requires": true,
- "dependencies": {
- "@babel/code-frame": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
- "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==",
- "requires": {
- "@babel/highlight": "^7.10.4"
- }
- },
- "@babel/helper-module-imports": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz",
- "integrity": "sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw==",
- "requires": {
- "@babel/types": "^7.10.4"
- }
- },
- "@babel/helper-validator-identifier": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
- "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw=="
- },
- "@babel/highlight": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
- "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
- "requires": {
- "@babel/helper-validator-identifier": "^7.10.4",
- "chalk": "^2.0.0",
- "js-tokens": "^4.0.0"
- },
+ "packages": {
+ "": {
+ "name": "federalist-uswds-jekyll",
+ "version": "1.3.0",
"dependencies": {
- "ansi-styles": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "requires": {
- "color-convert": "^1.9.0"
- }
- },
- "chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
- "requires": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
- }
- },
- "supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
- "requires": {
- "has-flag": "^3.0.0"
- }
- }
- }
- },
- "@babel/runtime": {
- "version": "7.11.0",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.11.0.tgz",
- "integrity": "sha512-qArkXsjJq7H+T86WrIFV0Fnu/tNOkZ4cgXmjkzAu3b/58D5mFIO8JH/y77t7C9q0OdDRdh9s7Ue5GasYssxtXw==",
- "requires": {
- "regenerator-runtime": "^0.13.4"
- }
- },
- "@babel/types": {
- "version": "7.11.0",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz",
- "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==",
- "requires": {
- "@babel/helper-validator-identifier": "^7.10.4",
- "lodash": "^4.17.19",
- "to-fast-properties": "^2.0.0"
- }
- },
- "@emotion/babel-utils": {
- "version": "0.6.10",
- "resolved": "https://registry.npmjs.org/@emotion/babel-utils/-/babel-utils-0.6.10.tgz",
- "integrity": "sha512-/fnkM/LTEp3jKe++T0KyTszVGWNKPNOUJfjNKLO17BzQ6QPxgbg3whayom1Qr2oLFH3V92tDymU+dT5q676uow==",
- "requires": {
- "@emotion/hash": "^0.6.6",
- "@emotion/memoize": "^0.6.6",
- "@emotion/serialize": "^0.9.1",
- "convert-source-map": "^1.5.1",
- "find-root": "^1.1.0",
- "source-map": "^0.7.2"
+ "@uswds/uswds": "3.8.1",
+ "dompurify": "^3.2.6",
+ "dot-prop": "^5.3.0",
+ "uswds": "~2.11.0"
},
- "dependencies": {
- "@emotion/hash": {
- "version": "0.6.6",
- "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.6.6.tgz",
- "integrity": "sha512-ojhgxzUHZ7am3D2jHkMzPpsBAiB005GF5YU4ea+8DNPybMk01JJUM9V9YRlF/GE95tcOm8DxQvWA2jq19bGalQ=="
- },
- "@emotion/memoize": {
- "version": "0.6.6",
- "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.6.6.tgz",
- "integrity": "sha512-h4t4jFjtm1YV7UirAFuSuFGyLa+NNxjdkq6DpFLANNQY5rHueFZHVY+8Cu1HYVP6DrheB0kv4m5xPjo7eKT7yQ=="
- },
- "@emotion/serialize": {
- "version": "0.9.1",
- "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.9.1.tgz",
- "integrity": "sha512-zTuAFtyPvCctHBEL8KZ5lJuwBanGSutFEncqLn/m9T1a6a93smBStK+bZzcNPgj4QS8Rkw9VTwJGhRIUVO8zsQ==",
- "requires": {
- "@emotion/hash": "^0.6.6",
- "@emotion/memoize": "^0.6.6",
- "@emotion/unitless": "^0.6.7",
- "@emotion/utils": "^0.8.2"
- }
- },
- "@emotion/unitless": {
- "version": "0.6.7",
- "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.6.7.tgz",
- "integrity": "sha512-Arj1hncvEVqQ2p7Ega08uHLr1JuRYBuO5cIvcA+WWEQ5+VmkOE3ZXzl04NbQxeQpWX78G7u6MqxKuNX3wvYZxg=="
- },
- "@emotion/utils": {
- "version": "0.8.2",
- "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.8.2.tgz",
- "integrity": "sha512-rLu3wcBWH4P5q1CGoSSH/i9hrXs7SlbRLkoq9IGuoPYNGQvDJ3pt/wmOM+XgYjIDRMVIdkUWt0RsfzF50JfnCw=="
- },
- "source-map": {
- "version": "0.7.3",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
- "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="
- }
- }
- },
- "@emotion/cache": {
- "version": "10.0.29",
- "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-10.0.29.tgz",
- "integrity": "sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==",
- "requires": {
- "@emotion/sheet": "0.9.4",
- "@emotion/stylis": "0.8.5",
- "@emotion/utils": "0.11.3",
- "@emotion/weak-memoize": "0.2.5"
- }
- },
- "@emotion/core": {
- "version": "10.0.28",
- "resolved": "https://registry.npmjs.org/@emotion/core/-/core-10.0.28.tgz",
- "integrity": "sha512-pH8UueKYO5jgg0Iq+AmCLxBsvuGtvlmiDCOuv8fGNYn3cowFpLN98L8zO56U0H1PjDIyAlXymgL3Wu7u7v6hbA==",
- "requires": {
- "@babel/runtime": "^7.5.5",
- "@emotion/cache": "^10.0.27",
- "@emotion/css": "^10.0.27",
- "@emotion/serialize": "^0.11.15",
- "@emotion/sheet": "0.9.4",
- "@emotion/utils": "0.11.3"
- }
- },
- "@emotion/css": {
- "version": "10.0.27",
- "resolved": "https://registry.npmjs.org/@emotion/css/-/css-10.0.27.tgz",
- "integrity": "sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==",
- "requires": {
- "@emotion/serialize": "^0.11.15",
- "@emotion/utils": "0.11.3",
- "babel-plugin-emotion": "^10.0.27"
- }
- },
- "@emotion/hash": {
- "version": "0.8.0",
- "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz",
- "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow=="
- },
- "@emotion/is-prop-valid": {
- "version": "0.8.8",
- "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz",
- "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==",
- "requires": {
- "@emotion/memoize": "0.7.4"
+ "devDependencies": {
+ "rimraf": "^3.0.2"
}
},
- "@emotion/memoize": {
- "version": "0.7.4",
- "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz",
- "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw=="
- },
- "@emotion/serialize": {
- "version": "0.11.16",
- "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz",
- "integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==",
- "requires": {
- "@emotion/hash": "0.8.0",
- "@emotion/memoize": "0.7.4",
- "@emotion/unitless": "0.7.5",
- "@emotion/utils": "0.11.3",
- "csstype": "^2.5.7"
- }
- },
- "@emotion/sheet": {
- "version": "0.9.4",
- "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-0.9.4.tgz",
- "integrity": "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA=="
- },
- "@emotion/styled": {
- "version": "10.0.27",
- "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-10.0.27.tgz",
- "integrity": "sha512-iK/8Sh7+NLJzyp9a5+vIQIXTYxfT4yB/OJbjzQanB2RZpvmzBQOHZWhpAMZWYEKRNNbsD6WfBw5sVWkb6WzS/Q==",
- "requires": {
- "@emotion/styled-base": "^10.0.27",
- "babel-plugin-emotion": "^10.0.27"
- }
- },
- "@emotion/styled-base": {
- "version": "10.0.31",
- "resolved": "https://registry.npmjs.org/@emotion/styled-base/-/styled-base-10.0.31.tgz",
- "integrity": "sha512-wTOE1NcXmqMWlyrtwdkqg87Mu6Rj1MaukEoEmEkHirO5IoHDJ8LgCQL4MjJODgxWxXibGR3opGp1p7YvkNEdXQ==",
- "requires": {
- "@babel/runtime": "^7.5.5",
- "@emotion/is-prop-valid": "0.8.8",
- "@emotion/serialize": "^0.11.15",
- "@emotion/utils": "0.11.3"
- }
- },
- "@emotion/stylis": {
- "version": "0.8.5",
- "resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz",
- "integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ=="
- },
- "@emotion/unitless": {
- "version": "0.7.5",
- "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz",
- "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg=="
- },
- "@emotion/utils": {
- "version": "0.11.3",
- "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz",
- "integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw=="
- },
- "@emotion/weak-memoize": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz",
- "integrity": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA=="
- },
- "@iarna/toml": {
- "version": "2.2.5",
- "resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz",
- "integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg=="
- },
- "@nodelib/fs.scandir": {
+ "node_modules/@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
- "requires": {
+ "license": "MIT",
+ "dependencies": {
"@nodelib/fs.stat": "2.0.5",
"run-parallel": "^1.1.9"
+ },
+ "engines": {
+ "node": ">= 8"
}
},
- "@nodelib/fs.stat": {
+ "node_modules/@nodelib/fs.stat": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
- "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
+ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 8"
+ }
},
- "@nodelib/fs.walk": {
+ "node_modules/@nodelib/fs.walk": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
- "requires": {
+ "license": "MIT",
+ "dependencies": {
"@nodelib/fs.scandir": "2.1.5",
"fastq": "^1.6.0"
- }
- },
- "@types/hoist-non-react-statics": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz",
- "integrity": "sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==",
- "requires": {
- "@types/react": "*",
- "hoist-non-react-statics": "^3.3.0"
- }
- },
- "@types/node": {
- "version": "8.10.59",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.59.tgz",
- "integrity": "sha512-8RkBivJrDCyPpBXhVZcjh7cQxVBSmRk9QM7hOketZzp6Tg79c0N8kkpAIito9bnJ3HCVCHVYz+KHTEbfQNfeVQ=="
- },
- "@types/parse-json": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz",
- "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA=="
- },
- "@types/prop-types": {
- "version": "15.7.3",
- "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz",
- "integrity": "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw=="
- },
- "@types/react": {
- "version": "16.9.44",
- "resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.44.tgz",
- "integrity": "sha512-BtLoJrXdW8DVZauKP+bY4Kmiq7ubcJq+H/aCpRfvPF7RAT3RwR73Sg8szdc2YasbAlWBDrQ6Q+AFM0KwtQY+WQ==",
- "requires": {
- "@types/prop-types": "*",
- "csstype": "^3.0.2"
},
- "dependencies": {
- "csstype": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.2.tgz",
- "integrity": "sha512-ofovWglpqoqbfLNOTBNZLSbMuGrblAf1efvvArGKOZMBrIoJeu5UsAipQolkijtyQx5MtAzT/J9IHj/CEY1mJw=="
- }
- }
- },
- "@types/unist": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.3.tgz",
- "integrity": "sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ=="
- },
- "@types/vfile": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/@types/vfile/-/vfile-3.0.2.tgz",
- "integrity": "sha512-b3nLFGaGkJ9rzOcuXRfHkZMdjsawuDD0ENL9fzTophtBg8FJHSGbH7daXkEpcwy3v7Xol3pAvsmlYyFhR4pqJw==",
- "requires": {
- "@types/node": "*",
- "@types/unist": "*",
- "@types/vfile-message": "*"
- }
- },
- "@types/vfile-message": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/@types/vfile-message/-/vfile-message-2.0.0.tgz",
- "integrity": "sha512-GpTIuDpb9u4zIO165fUy9+fXcULdD8HFRNli04GehoMVbeNq7D6OBnqSmg3lxZnC+UvgUhEWKxdKiwYUkGltIw==",
- "requires": {
- "vfile-message": "*"
- }
- },
- "@types/zen-observable": {
- "version": "0.8.0",
- "resolved": "https://registry.npmjs.org/@types/zen-observable/-/zen-observable-0.8.0.tgz",
- "integrity": "sha512-te5lMAWii1uEJ4FwLjzdlbw3+n0FZNOvFXHxQDKeT0dilh7HOzdMzV2TrJVUzq8ep7J4Na8OUYPRLSQkJHAlrg=="
- },
- "@wry/context": {
- "version": "0.4.4",
- "resolved": "https://registry.npmjs.org/@wry/context/-/context-0.4.4.tgz",
- "integrity": "sha512-LrKVLove/zw6h2Md/KZyWxIkFM6AoyKp71OqpH9Hiip1csjPVoD3tPxlbQUNxEnHENks3UGgNpSBCAfq9KWuag==",
- "requires": {
- "@types/node": ">=6",
- "tslib": "^1.9.3"
+ "engines": {
+ "node": ">= 8"
}
},
- "@wry/equality": {
- "version": "0.1.11",
- "resolved": "https://registry.npmjs.org/@wry/equality/-/equality-0.1.11.tgz",
- "integrity": "sha512-mwEVBDUVODlsQQ5dfuLUS5/Tf7jqUKyhKYHmVi4fPB6bDMOfWvUPJmKgS1Z7Za/sOI3vzWt4+O7yCiL/70MogA==",
- "requires": {
- "tslib": "^1.9.3"
- }
+ "node_modules/@types/trusted-types": {
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz",
+ "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==",
+ "license": "MIT",
+ "optional": true
},
- "a11y": {
- "version": "0.5.1",
- "resolved": "https://registry.npmjs.org/a11y/-/a11y-0.5.1.tgz",
- "integrity": "sha512-13P4B2q+18a/vlQ5wGuSLrVLWAwWFiShz0KdJRAsWqYGIkYdAqLfY/xKf60Q6RBfRFAJMLWAzNQk08dX2oPYmw==",
- "dev": true,
- "requires": {
- "accessibility-developer-tools": "^2.6.0",
- "chalk": "^1.0.0",
- "each-async": "^1.1.0",
- "globby": "^6.1.0",
- "humanize-url": "^1.0.0",
- "indent-string": "^3.1.0",
- "log-symbols": "^1.0.1",
- "meow": "^3.3.0",
- "parse-json": "^2.1.0",
- "phantomjs-polyfill": "0.0.2",
- "phantomjs-prebuilt": "^2.1.12",
- "protocolify": "^2.0.0",
- "update-notifier": "^2.0.0"
- },
+ "node_modules/@uswds/uswds": {
+ "version": "3.8.1",
+ "resolved": "https://registry.npmjs.org/@uswds/uswds/-/uswds-3.8.1.tgz",
+ "integrity": "sha512-bKG/B9mJF1v0yoqth48wQDzST5Xyu3OxxpePIPDyhKWS84oDrCehnu3Z88JhSjdIAJMl8dtjtH8YvdO9kZUpAg==",
+ "license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
- "globby": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz",
- "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=",
- "dev": true,
- "requires": {
- "array-union": "^1.0.1",
- "glob": "^7.0.3",
- "object-assign": "^4.0.1",
- "pify": "^2.0.0",
- "pinkie-promise": "^2.0.0"
- }
- }
+ "classlist-polyfill": "1.2.0",
+ "object-assign": "4.1.1",
+ "receptor": "1.0.0",
+ "resolve-id-refs": "0.1.0"
+ },
+ "engines": {
+ "node": ">= 4"
}
},
- "abbrev": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
- "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
- },
- "accessibility-developer-tools": {
- "version": "2.12.0",
- "resolved": "https://registry.npmjs.org/accessibility-developer-tools/-/accessibility-developer-tools-2.12.0.tgz",
- "integrity": "sha1-PaDM6dbsY3OWS4TzXbfPw996tRQ=",
- "dev": true
- },
- "aggregate-error": {
+ "node_modules/aggregate-error": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz",
"integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
- "requires": {
+ "license": "MIT",
+ "dependencies": {
"clean-stack": "^2.0.0",
"indent-string": "^4.0.0"
},
- "dependencies": {
- "indent-string": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
- "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg=="
- }
+ "engines": {
+ "node": ">=8"
}
},
- "ajv": {
- "version": "6.10.2",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz",
- "integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==",
- "requires": {
- "fast-deep-equal": "^2.0.1",
- "fast-json-stable-stringify": "^2.0.0",
- "json-schema-traverse": "^0.4.1",
- "uri-js": "^4.2.2"
+ "node_modules/aggregate-error/node_modules/clean-stack": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
+ "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
}
},
- "ajv-errors": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz",
- "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ=="
- },
- "ajv-keywords": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
- "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ=="
- },
- "ansi-align": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz",
- "integrity": "sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=",
- "dev": true,
- "requires": {
- "string-width": "^2.0.0"
+ "node_modules/aggregate-error/node_modules/indent-string": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
+ "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
}
},
- "ansi-regex": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
- "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
- "dev": true
- },
- "ansi-styles": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
- "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
- "dev": true
+ "node_modules/balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "license": "MIT"
},
- "apollo-cache": {
- "version": "1.3.5",
- "resolved": "https://registry.npmjs.org/apollo-cache/-/apollo-cache-1.3.5.tgz",
- "integrity": "sha512-1XoDy8kJnyWY/i/+gLTEbYLnoiVtS8y7ikBr/IfmML4Qb+CM7dEEbIUOjnY716WqmZ/UpXIxTfJsY7rMcqiCXA==",
- "requires": {
- "apollo-utilities": "^1.3.4",
- "tslib": "^1.10.0"
+ "node_modules/brace-expansion": {
+ "version": "1.1.12",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
+ "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
}
},
- "apollo-cache-inmemory": {
- "version": "1.6.6",
- "resolved": "https://registry.npmjs.org/apollo-cache-inmemory/-/apollo-cache-inmemory-1.6.6.tgz",
- "integrity": "sha512-L8pToTW/+Xru2FFAhkZ1OA9q4V4nuvfoPecBM34DecAugUZEBhI2Hmpgnzq2hTKZ60LAMrlqiASm0aqAY6F8/A==",
- "requires": {
- "apollo-cache": "^1.3.5",
- "apollo-utilities": "^1.3.4",
- "optimism": "^0.10.0",
- "ts-invariant": "^0.4.0",
- "tslib": "^1.10.0"
+ "node_modules/braces": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
+ "license": "MIT",
+ "dependencies": {
+ "fill-range": "^7.1.1"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "apollo-client": {
- "version": "2.6.10",
- "resolved": "https://registry.npmjs.org/apollo-client/-/apollo-client-2.6.10.tgz",
- "integrity": "sha512-jiPlMTN6/5CjZpJOkGeUV0mb4zxx33uXWdj/xQCfAMkuNAC3HN7CvYDyMHHEzmcQ5GV12LszWoQ/VlxET24CtA==",
- "requires": {
- "@types/zen-observable": "^0.8.0",
- "apollo-cache": "1.3.5",
- "apollo-link": "^1.0.0",
- "apollo-utilities": "1.3.4",
- "symbol-observable": "^1.0.2",
- "ts-invariant": "^0.4.0",
- "tslib": "^1.10.0",
- "zen-observable": "^0.8.0"
- }
+ "node_modules/classlist-polyfill": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/classlist-polyfill/-/classlist-polyfill-1.2.0.tgz",
+ "integrity": "sha512-GzIjNdcEtH4ieA2S8NmrSxv7DfEV5fmixQeyTmqmRmRJPGpRBaSnA2a0VrCjyT8iW8JjEdMbKzDotAJf+ajgaQ==",
+ "license": "Unlicense"
},
- "apollo-link": {
- "version": "1.2.14",
- "resolved": "https://registry.npmjs.org/apollo-link/-/apollo-link-1.2.14.tgz",
- "integrity": "sha512-p67CMEFP7kOG1JZ0ZkYZwRDa369w5PIjtMjvrQd/HnIV8FRsHRqLqK+oAZQnFa1DDdZtOtHTi+aMIW6EatC2jg==",
- "requires": {
- "apollo-utilities": "^1.3.0",
- "ts-invariant": "^0.4.0",
- "tslib": "^1.9.3",
- "zen-observable-ts": "^0.8.21"
- }
+ "node_modules/concat-map": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
+ "license": "MIT"
},
- "apollo-link-context": {
- "version": "1.0.20",
- "resolved": "https://registry.npmjs.org/apollo-link-context/-/apollo-link-context-1.0.20.tgz",
- "integrity": "sha512-MLLPYvhzNb8AglNsk2NcL9AvhO/Vc9hn2ZZuegbhRHGet3oGr0YH9s30NS9+ieoM0sGT11p7oZ6oAILM/kiRBA==",
- "requires": {
- "apollo-link": "^1.2.14",
- "tslib": "^1.9.3"
+ "node_modules/del": {
+ "version": "6.1.1",
+ "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz",
+ "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==",
+ "license": "MIT",
+ "dependencies": {
+ "globby": "^11.0.1",
+ "graceful-fs": "^4.2.4",
+ "is-glob": "^4.0.1",
+ "is-path-cwd": "^2.2.0",
+ "is-path-inside": "^3.0.2",
+ "p-map": "^4.0.0",
+ "rimraf": "^3.0.2",
+ "slash": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "apollo-link-http": {
- "version": "1.5.17",
- "resolved": "https://registry.npmjs.org/apollo-link-http/-/apollo-link-http-1.5.17.tgz",
- "integrity": "sha512-uWcqAotbwDEU/9+Dm9e1/clO7hTB2kQ/94JYcGouBVLjoKmTeJTUPQKcJGpPwUjZcSqgYicbFqQSoJIW0yrFvg==",
- "requires": {
- "apollo-link": "^1.2.14",
- "apollo-link-http-common": "^0.2.16",
- "tslib": "^1.9.3"
+ "node_modules/del/node_modules/array-union": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
+ "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
}
},
- "apollo-link-http-common": {
- "version": "0.2.16",
- "resolved": "https://registry.npmjs.org/apollo-link-http-common/-/apollo-link-http-common-0.2.16.tgz",
- "integrity": "sha512-2tIhOIrnaF4UbQHf7kjeQA/EmSorB7+HyJIIrUjJOKBgnXwuexi8aMecRlqTIDWcyVXCeqLhUnztMa6bOH/jTg==",
- "requires": {
- "apollo-link": "^1.2.14",
- "ts-invariant": "^0.4.0",
- "tslib": "^1.9.3"
+ "node_modules/del/node_modules/globby": {
+ "version": "11.1.0",
+ "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
+ "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
+ "license": "MIT",
+ "dependencies": {
+ "array-union": "^2.1.0",
+ "dir-glob": "^3.0.1",
+ "fast-glob": "^3.2.9",
+ "ignore": "^5.2.0",
+ "merge2": "^1.4.1",
+ "slash": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "apollo-utilities": {
- "version": "1.3.4",
- "resolved": "https://registry.npmjs.org/apollo-utilities/-/apollo-utilities-1.3.4.tgz",
- "integrity": "sha512-pk2hiWrCXMAy2fRPwEyhvka+mqwzeP60Jr1tRYi5xru+3ko94HI9o6lK0CT33/w4RDlxWchmdhDCrvdr+pHCig==",
- "requires": {
- "@wry/equality": "^0.1.2",
- "fast-json-stable-stringify": "^2.0.0",
- "ts-invariant": "^0.4.0",
- "tslib": "^1.10.0"
+ "node_modules/del/node_modules/is-path-inside": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
+ "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
}
},
- "argparse": {
- "version": "1.0.10",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
- "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
- "requires": {
- "sprintf-js": "~1.0.2"
+ "node_modules/dir-glob": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
+ "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
+ "license": "MIT",
+ "dependencies": {
+ "path-type": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "array-find-index": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz",
- "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=",
- "dev": true
- },
- "array-union": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
- "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=",
- "dev": true,
- "requires": {
- "array-uniq": "^1.0.1"
+ "node_modules/dompurify": {
+ "version": "3.2.6",
+ "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.2.6.tgz",
+ "integrity": "sha512-/2GogDQlohXPZe6D6NOgQvXLPSYBqIWMnZ8zzOhn09REE4eyAzb+Hed3jhoM9OkuaJ8P6ZGTTVWQKAi8ieIzfQ==",
+ "license": "(MPL-2.0 OR Apache-2.0)",
+ "optionalDependencies": {
+ "@types/trusted-types": "^2.0.7"
}
},
- "array-uniq": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
- "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=",
- "dev": true
- },
- "asap": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
- "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY="
+ "node_modules/domready": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/domready/-/domready-1.0.8.tgz",
+ "integrity": "sha512-uIzsOJUNk+AdGE9a6VDeessoMCzF8RrZvJCX/W8QtyfgdR6Uofn/MvRonih3OtCO79b2VDzDOymuiABrQ4z3XA=="
},
- "asn1": {
- "version": "0.2.4",
- "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz",
- "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==",
- "dev": true,
- "requires": {
- "safer-buffer": "~2.1.0"
+ "node_modules/dot-prop": {
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz",
+ "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==",
+ "license": "MIT",
+ "dependencies": {
+ "is-obj": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "assert-plus": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
- "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=",
- "dev": true
- },
- "asynckit": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
- "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=",
- "dev": true
- },
- "aws-sign2": {
- "version": "0.7.0",
- "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
- "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=",
- "dev": true
- },
- "aws4": {
- "version": "1.10.0",
- "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.10.0.tgz",
- "integrity": "sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA==",
- "dev": true
+ "node_modules/elem-dataset": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/elem-dataset/-/elem-dataset-2.0.0.tgz",
+ "integrity": "sha512-e7gieGopWw5dMdEgythH3lUS7nMizutPDTtkzfQW/q2gCvFnACyNnK3ytCncAXKxdBXQWcXeKaYTTODiMnp8mw==",
+ "license": "MIT"
},
- "babel-plugin-emotion": {
- "version": "10.0.33",
- "resolved": "https://registry.npmjs.org/babel-plugin-emotion/-/babel-plugin-emotion-10.0.33.tgz",
- "integrity": "sha512-bxZbTTGz0AJQDHm8k6Rf3RQJ8tX2scsfsRyKVgAbiUPUNIRtlK+7JxP+TAd1kRLABFxe0CFm2VdK4ePkoA9FxQ==",
- "requires": {
- "@babel/helper-module-imports": "^7.0.0",
- "@emotion/hash": "0.8.0",
- "@emotion/memoize": "0.7.4",
- "@emotion/serialize": "^0.11.16",
- "babel-plugin-macros": "^2.0.0",
- "babel-plugin-syntax-jsx": "^6.18.0",
- "convert-source-map": "^1.5.0",
- "escape-string-regexp": "^1.0.5",
- "find-root": "^1.1.0",
- "source-map": "^0.5.7"
+ "node_modules/element-closest": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/element-closest/-/element-closest-2.0.2.tgz",
+ "integrity": "sha512-QCqAWP3kwj8Gz9UXncVXQGdrhnWxD8SQBSeZp5pOsyCcQ6RpL738L1/tfuwBiMi6F1fYkxqPnBrFBR4L+f49Cg==",
+ "license": "CC0-1.0",
+ "engines": {
+ "node": ">=4.0.0"
}
},
- "babel-plugin-macros": {
- "version": "2.8.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz",
- "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==",
- "requires": {
- "@babel/runtime": "^7.7.2",
- "cosmiconfig": "^6.0.0",
- "resolve": "^1.12.0"
+ "node_modules/fast-glob": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz",
+ "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==",
+ "license": "MIT",
+ "dependencies": {
+ "@nodelib/fs.stat": "^2.0.2",
+ "@nodelib/fs.walk": "^1.2.3",
+ "glob-parent": "^5.1.2",
+ "merge2": "^1.3.0",
+ "micromatch": "^4.0.4"
+ },
+ "engines": {
+ "node": ">=8.6.0"
}
},
- "babel-plugin-syntax-jsx": {
- "version": "6.18.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz",
- "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY="
+ "node_modules/fastq": {
+ "version": "1.17.1",
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz",
+ "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==",
+ "license": "ISC",
+ "dependencies": {
+ "reusify": "^1.0.4"
+ }
},
- "bail": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz",
- "integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ=="
+ "node_modules/fill-range": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
+ "license": "MIT",
+ "dependencies": {
+ "to-regex-range": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
},
- "balanced-match": {
+ "node_modules/fs.realpath": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
- "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c="
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
+ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
+ "license": "ISC"
},
- "bcrypt-pbkdf": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
- "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=",
- "dev": true,
- "requires": {
- "tweetnacl": "^0.14.3"
+ "node_modules/glob": {
+ "version": "7.2.3",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
+ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
+ "deprecated": "Glob versions prior to v9 are no longer supported",
+ "license": "ISC",
+ "dependencies": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ },
+ "engines": {
+ "node": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "big.js": {
- "version": "5.2.2",
- "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
- "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ=="
- },
- "boxen": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz",
- "integrity": "sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==",
- "dev": true,
- "requires": {
- "ansi-align": "^2.0.0",
- "camelcase": "^4.0.0",
- "chalk": "^2.0.1",
- "cli-boxes": "^1.0.0",
- "string-width": "^2.0.0",
- "term-size": "^1.2.0",
- "widest-line": "^2.0.0"
- },
+ "node_modules/glob-parent": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+ "license": "ISC",
"dependencies": {
- "ansi-styles": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "dev": true,
- "requires": {
- "color-convert": "^1.9.0"
- }
- },
- "camelcase": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz",
- "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=",
- "dev": true
- },
- "chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
- "dev": true,
- "requires": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
- }
- },
- "supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
- "dev": true,
- "requires": {
- "has-flag": "^3.0.0"
- }
- }
+ "is-glob": "^4.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
}
},
- "brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "requires": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
+ "node_modules/graceful-fs": {
+ "version": "4.2.11",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
+ "license": "ISC"
},
- "braces": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
- "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
- "requires": {
- "fill-range": "^7.0.1"
+ "node_modules/ignore": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
+ "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 4"
}
},
- "buffer-crc32": {
- "version": "0.2.13",
- "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
- "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=",
- "dev": true
- },
- "buffer-from": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz",
- "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==",
- "dev": true
- },
- "callsites": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
- "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="
- },
- "camelcase-keys": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz",
- "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=",
- "dev": true,
- "requires": {
- "camelcase": "^2.0.0",
- "map-obj": "^1.0.0"
- },
+ "node_modules/inflight": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
+ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
+ "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
+ "license": "ISC",
"dependencies": {
- "camelcase": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz",
- "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=",
- "dev": true
- }
+ "once": "^1.3.0",
+ "wrappy": "1"
}
},
- "capture-stack-trace": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz",
- "integrity": "sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==",
- "dev": true
- },
- "caseless": {
- "version": "0.12.0",
- "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
- "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=",
- "dev": true
- },
- "ccount": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/ccount/-/ccount-1.0.5.tgz",
- "integrity": "sha512-MOli1W+nfbPLlKEhInaxhRdp7KVLFxLN5ykwzHgLsLI3H3gs5jjFAK4Eoj3OzzcxCtumDaI8onoVDeQyWaNTkw=="
- },
- "chain-function": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/chain-function/-/chain-function-1.0.1.tgz",
- "integrity": "sha512-SxltgMwL9uCko5/ZCLiyG2B7R9fY4pDZUw7hJ4MhirdjBLosoDqkWABi3XMucddHdLiFJMb7PD2MZifZriuMTg=="
+ "node_modules/inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
+ "license": "ISC"
},
- "chalk": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
- "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
- "dev": true,
- "requires": {
- "ansi-styles": "^2.2.1",
- "escape-string-regexp": "^1.0.2",
- "has-ansi": "^2.0.0",
- "strip-ansi": "^3.0.0",
- "supports-color": "^2.0.0"
+ "node_modules/is-extglob": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "character-entities": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz",
- "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw=="
- },
- "character-entities-html4": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-1.1.4.tgz",
- "integrity": "sha512-HRcDxZuZqMx3/a+qrzxdBKBPUpxWEq9xw2OPZ3a/174ihfrQKVsFhqtthBInFy1zZ9GgZyFXOatNujm8M+El3g=="
- },
- "character-entities-legacy": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz",
- "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA=="
- },
- "character-reference-invalid": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz",
- "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg=="
- },
- "ci-info": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz",
- "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==",
- "dev": true
- },
- "classlist-polyfill": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/classlist-polyfill/-/classlist-polyfill-1.2.0.tgz",
- "integrity": "sha1-k1vC39lFiodrJ5YXUUY4vKqWSi4="
- },
- "classnames": {
- "version": "2.2.6",
- "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz",
- "integrity": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q=="
- },
- "clean-stack": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
- "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A=="
- },
- "cli-boxes": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz",
- "integrity": "sha1-T6kXw+WclKAEzWH47lCdplFocUM=",
- "dev": true
- },
- "codemirror": {
- "version": "5.56.0",
- "resolved": "https://registry.npmjs.org/codemirror/-/codemirror-5.56.0.tgz",
- "integrity": "sha512-MfKVmYgifXjQpLSgpETuih7A7WTTIsxvKfSLGseTY5+qt0E1UD1wblZGM6WLenORo8sgmf+3X+WTe2WF7mufyw=="
- },
- "collapse-white-space": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.6.tgz",
- "integrity": "sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ=="
+ "node_modules/is-glob": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
+ "license": "MIT",
+ "dependencies": {
+ "is-extglob": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
},
- "color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
- "requires": {
- "color-name": "1.1.3"
+ "node_modules/is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.12.0"
}
},
- "color-name": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
+ "node_modules/is-obj": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
+ "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
},
- "combined-stream": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
- "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
- "dev": true,
- "requires": {
- "delayed-stream": "~1.0.0"
+ "node_modules/is-path-cwd": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz",
+ "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
}
},
- "comma-separated-tokens": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz",
- "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw=="
+ "node_modules/keyboardevent-key-polyfill": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/keyboardevent-key-polyfill/-/keyboardevent-key-polyfill-1.1.0.tgz",
+ "integrity": "sha512-NTDqo7XhzL1fqmUzYroiyK2qGua7sOMzLav35BfNA/mPUSCtw8pZghHFMTYR9JdnJ23IQz695FcaM6EE6bpbFQ==",
+ "license": "CC0-1.0"
},
- "common-tags": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz",
- "integrity": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw=="
+ "node_modules/matches-selector": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/matches-selector/-/matches-selector-1.2.0.tgz",
+ "integrity": "sha512-c4vLwYWyl+Ji+U43eU/G5FwxWd4ZH0ePUsFs5y0uwD9HUEFBXUQ1zUUan+78IpRD+y4pUfG0nAzNM292K7ItvA==",
+ "license": "MIT"
},
- "concat-map": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
- "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
+ "node_modules/merge2": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
+ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 8"
+ }
},
- "concat-stream": {
- "version": "1.6.2",
- "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
- "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
- "dev": true,
- "requires": {
- "buffer-from": "^1.0.0",
- "inherits": "^2.0.3",
- "readable-stream": "^2.2.2",
- "typedarray": "^0.0.6"
+ "node_modules/micromatch": {
+ "version": "4.0.8",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
+ "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
+ "license": "MIT",
+ "dependencies": {
+ "braces": "^3.0.3",
+ "picomatch": "^2.3.1"
+ },
+ "engines": {
+ "node": ">=8.6"
}
},
- "configstore": {
+ "node_modules/minimatch": {
"version": "3.1.2",
- "resolved": "https://registry.npmjs.org/configstore/-/configstore-3.1.2.tgz",
- "integrity": "sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw==",
- "dev": true,
- "requires": {
- "dot-prop": "^4.1.0",
- "graceful-fs": "^4.1.2",
- "make-dir": "^1.0.0",
- "unique-string": "^1.0.0",
- "write-file-atomic": "^2.0.0",
- "xdg-basedir": "^3.0.0"
- },
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+ "license": "ISC",
"dependencies": {
- "dot-prop": {
- "version": "4.2.1",
- "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.1.tgz",
- "integrity": "sha512-l0p4+mIuJIua0mhxGoh4a+iNL9bmeK5DvnSVQa6T0OhrVmaEa1XScX5Etc673FePCJOArq/4Pa2cLGODUWTPOQ==",
- "dev": true,
- "requires": {
- "is-obj": "^1.0.0"
- }
- },
- "is-obj": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz",
- "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=",
- "dev": true
- }
+ "brace-expansion": "^1.1.7"
+ },
+ "engines": {
+ "node": "*"
}
},
- "connected-react-router": {
- "version": "6.8.0",
- "resolved": "https://registry.npmjs.org/connected-react-router/-/connected-react-router-6.8.0.tgz",
- "integrity": "sha512-E64/6krdJM3Ag3MMmh2nKPtMbH15s3JQDuaYJvOVXzu6MbHbDyIvuwLOyhQIuP4Om9zqEfZYiVyflROibSsONg==",
- "requires": {
- "prop-types": "^15.7.2"
+ "node_modules/object-assign": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "consolidated-events": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/consolidated-events/-/consolidated-events-2.0.2.tgz",
- "integrity": "sha512-2/uRVMdRypf5z/TW/ncD/66l75P5hH2vM/GR8Jf8HLc2xnfJtmina6F6du8+v4Z2vTrMo7jC+W1tmEEuuELgkQ=="
- },
- "convert-source-map": {
- "version": "1.7.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz",
- "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==",
- "requires": {
- "safe-buffer": "~5.1.1"
- }
- },
- "copy-text-to-clipboard": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/copy-text-to-clipboard/-/copy-text-to-clipboard-2.2.0.tgz",
- "integrity": "sha512-WRvoIdnTs1rgPMkgA2pUOa/M4Enh2uzCwdKsOMYNAJiz/4ZvEJgmbF4OmninPmlFdAWisfeh0tH+Cpf7ni3RqQ=="
- },
- "core-js": {
- "version": "1.2.7",
- "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz",
- "integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY="
- },
- "core-util-is": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
- "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=",
- "dev": true
- },
- "cosmiconfig": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz",
- "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==",
- "requires": {
- "@types/parse-json": "^4.0.0",
- "import-fresh": "^3.1.0",
- "parse-json": "^5.0.0",
- "path-type": "^4.0.0",
- "yaml": "^1.7.2"
- },
- "dependencies": {
- "parse-json": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.0.1.tgz",
- "integrity": "sha512-ztoZ4/DYeXQq4E21v169sC8qWINGpcosGv9XhTDvg9/hWvx/zrFkc9BiWxR58OJLHGk28j5BL0SDLeV2WmFZlQ==",
- "requires": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-better-errors": "^1.0.1",
- "lines-and-columns": "^1.1.6"
- }
- },
- "path-type": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
- "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="
- }
- }
- },
- "create-emotion": {
- "version": "9.2.12",
- "resolved": "https://registry.npmjs.org/create-emotion/-/create-emotion-9.2.12.tgz",
- "integrity": "sha512-P57uOF9NL2y98Xrbl2OuiDQUZ30GVmASsv5fbsjF4Hlraip2kyAvMm+2PoYUvFFw03Fhgtxk3RqZSm2/qHL9hA==",
- "requires": {
- "@emotion/hash": "^0.6.2",
- "@emotion/memoize": "^0.6.1",
- "@emotion/stylis": "^0.7.0",
- "@emotion/unitless": "^0.6.2",
- "csstype": "^2.5.2",
- "stylis": "^3.5.0",
- "stylis-rule-sheet": "^0.0.10"
- },
- "dependencies": {
- "@emotion/hash": {
- "version": "0.6.6",
- "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.6.6.tgz",
- "integrity": "sha512-ojhgxzUHZ7am3D2jHkMzPpsBAiB005GF5YU4ea+8DNPybMk01JJUM9V9YRlF/GE95tcOm8DxQvWA2jq19bGalQ=="
- },
- "@emotion/memoize": {
- "version": "0.6.6",
- "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.6.6.tgz",
- "integrity": "sha512-h4t4jFjtm1YV7UirAFuSuFGyLa+NNxjdkq6DpFLANNQY5rHueFZHVY+8Cu1HYVP6DrheB0kv4m5xPjo7eKT7yQ=="
- },
- "@emotion/stylis": {
- "version": "0.7.1",
- "resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.7.1.tgz",
- "integrity": "sha512-/SLmSIkN13M//53TtNxgxo57mcJk/UJIDFRKwOiLIBEyBHEcipgR6hNMQ/59Sl4VjCJ0Z/3zeAZyvnSLPG/1HQ=="
- },
- "@emotion/unitless": {
- "version": "0.6.7",
- "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.6.7.tgz",
- "integrity": "sha512-Arj1hncvEVqQ2p7Ega08uHLr1JuRYBuO5cIvcA+WWEQ5+VmkOE3ZXzl04NbQxeQpWX78G7u6MqxKuNX3wvYZxg=="
- }
- }
- },
- "create-error-class": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz",
- "integrity": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=",
- "dev": true,
- "requires": {
- "capture-stack-trace": "^1.0.0"
- }
- },
- "create-react-class": {
- "version": "15.6.3",
- "resolved": "https://registry.npmjs.org/create-react-class/-/create-react-class-15.6.3.tgz",
- "integrity": "sha512-M+/3Q6E6DLO6Yx3OwrWjwHBnvfXXYA7W+dFjt/ZDBemHO1DDZhsalX/NUtnTYclN6GfnBDRh4qRHjcDHmlJBJg==",
- "requires": {
- "fbjs": "^0.8.9",
- "loose-envify": "^1.3.1",
- "object-assign": "^4.1.1"
- }
- },
- "create-react-context": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/create-react-context/-/create-react-context-0.3.0.tgz",
- "integrity": "sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw==",
- "requires": {
- "gud": "^1.0.0",
- "warning": "^4.0.3"
- }
- },
- "cross-spawn": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz",
- "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=",
- "dev": true,
- "requires": {
- "lru-cache": "^4.0.1",
- "shebang-command": "^1.2.0",
- "which": "^1.2.9"
- }
- },
- "crypto-random-string": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz",
- "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=",
- "dev": true
- },
- "csstype": {
- "version": "2.6.13",
- "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.13.tgz",
- "integrity": "sha512-ul26pfSQTZW8dcOnD2iiJssfXw0gdNVX9IJDH/X3K5DGPfj+fUYe3kB+swUY6BF3oZDxaID3AJt+9/ojSAE05A=="
- },
- "currently-unhandled": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz",
- "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=",
- "dev": true,
- "requires": {
- "array-find-index": "^1.0.1"
- }
- },
- "dashdash": {
- "version": "1.14.1",
- "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
- "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
- "dev": true,
- "requires": {
- "assert-plus": "^1.0.0"
- }
- },
- "debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "dev": true,
- "requires": {
- "ms": "2.0.0"
- }
- },
- "decamelize": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
- "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=",
- "dev": true
- },
- "deep-extend": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
- "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
- "dev": true
- },
- "define-properties": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
- "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==",
- "requires": {
- "object-keys": "^1.0.12"
- }
- },
- "del": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/del/-/del-6.0.0.tgz",
- "integrity": "sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==",
- "requires": {
- "globby": "^11.0.1",
- "graceful-fs": "^4.2.4",
- "is-glob": "^4.0.1",
- "is-path-cwd": "^2.2.0",
- "is-path-inside": "^3.0.2",
- "p-map": "^4.0.0",
- "rimraf": "^3.0.2",
- "slash": "^3.0.0"
- },
- "dependencies": {
- "graceful-fs": {
- "version": "4.2.6",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz",
- "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ=="
- },
- "is-path-inside": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
- "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ=="
- }
- }
- },
- "delayed-stream": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
- "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=",
- "dev": true
- },
- "detab": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/detab/-/detab-2.0.3.tgz",
- "integrity": "sha512-Up8P0clUVwq0FnFjDclzZsy9PadzRn5FFxrr47tQQvMHqyiFYVbpH8oXDzWtF0Q7pYy3l+RPmtBl+BsFF6wH0A==",
- "requires": {
- "repeat-string": "^1.5.4"
- }
- },
- "diacritics": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/diacritics/-/diacritics-1.3.0.tgz",
- "integrity": "sha1-PvqHMj67hj5mls67AILUj/PW96E="
- },
- "dir-glob": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
- "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
- "requires": {
- "path-type": "^4.0.0"
- },
- "dependencies": {
- "path-type": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
- "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="
- }
- }
- },
- "direction": {
- "version": "0.1.5",
- "resolved": "https://registry.npmjs.org/direction/-/direction-0.1.5.tgz",
- "integrity": "sha1-zl15f5fib4vnvv9T99xA4cGp7Ew="
- },
- "dnd-core": {
- "version": "7.7.0",
- "resolved": "https://registry.npmjs.org/dnd-core/-/dnd-core-7.7.0.tgz",
- "integrity": "sha512-+YqwflWEY1MEAEl2QiEiRaglYkCwIZryyQwximQGuTOm/ns7fS6Lg/i7OCkrtjM10D5FhArf/VUHIL4ZaRBK0g==",
- "requires": {
- "asap": "^2.0.6",
- "invariant": "^2.2.4",
- "redux": "^4.0.1"
- }
- },
- "dom-helpers": {
- "version": "3.4.0",
- "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz",
- "integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==",
- "requires": {
- "@babel/runtime": "^7.1.2"
- }
- },
- "dom-walk": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz",
- "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w=="
- },
- "domready": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/domready/-/domready-1.0.8.tgz",
- "integrity": "sha1-kfJS5Ze2Wvd+dFriTdAYXV4m1Yw="
- },
- "dot-prop": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz",
- "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==",
- "requires": {
- "is-obj": "^2.0.0"
- }
- },
- "duplexer3": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz",
- "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=",
- "dev": true
- },
- "each-async": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/each-async/-/each-async-1.1.1.tgz",
- "integrity": "sha1-3uUim98KtrogEqOV4bhpq/iBNHM=",
- "dev": true,
- "requires": {
- "onetime": "^1.0.0",
- "set-immediate-shim": "^1.0.0"
- }
- },
- "ecc-jsbn": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
- "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=",
- "dev": true,
- "requires": {
- "jsbn": "~0.1.0",
- "safer-buffer": "^2.1.0"
- }
- },
- "elem-dataset": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/elem-dataset/-/elem-dataset-2.0.0.tgz",
- "integrity": "sha512-e7gieGopWw5dMdEgythH3lUS7nMizutPDTtkzfQW/q2gCvFnACyNnK3ytCncAXKxdBXQWcXeKaYTTODiMnp8mw=="
- },
- "element-closest": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/element-closest/-/element-closest-2.0.2.tgz",
- "integrity": "sha1-cqdAoQdFM4LijfnOXbtajfD5Zuw="
- },
- "emojis-list": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
- "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q=="
- },
- "emotion": {
- "version": "9.2.12",
- "resolved": "https://registry.npmjs.org/emotion/-/emotion-9.2.12.tgz",
- "integrity": "sha512-hcx7jppaI8VoXxIWEhxpDW7I+B4kq9RNzQLmsrF6LY8BGKqe2N+gFAQr0EfuFucFlPs2A9HM4+xNj4NeqEWIOQ==",
- "requires": {
- "babel-plugin-emotion": "^9.2.11",
- "create-emotion": "^9.2.12"
- },
- "dependencies": {
- "@emotion/hash": {
- "version": "0.6.6",
- "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.6.6.tgz",
- "integrity": "sha512-ojhgxzUHZ7am3D2jHkMzPpsBAiB005GF5YU4ea+8DNPybMk01JJUM9V9YRlF/GE95tcOm8DxQvWA2jq19bGalQ=="
- },
- "@emotion/memoize": {
- "version": "0.6.6",
- "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.6.6.tgz",
- "integrity": "sha512-h4t4jFjtm1YV7UirAFuSuFGyLa+NNxjdkq6DpFLANNQY5rHueFZHVY+8Cu1HYVP6DrheB0kv4m5xPjo7eKT7yQ=="
- },
- "@emotion/stylis": {
- "version": "0.7.1",
- "resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.7.1.tgz",
- "integrity": "sha512-/SLmSIkN13M//53TtNxgxo57mcJk/UJIDFRKwOiLIBEyBHEcipgR6hNMQ/59Sl4VjCJ0Z/3zeAZyvnSLPG/1HQ=="
- },
- "babel-plugin-emotion": {
- "version": "9.2.11",
- "resolved": "https://registry.npmjs.org/babel-plugin-emotion/-/babel-plugin-emotion-9.2.11.tgz",
- "integrity": "sha512-dgCImifnOPPSeXod2znAmgc64NhaaOjGEHROR/M+lmStb3841yK1sgaDYAYMnlvWNz8GnpwIPN0VmNpbWYZ+VQ==",
- "requires": {
- "@babel/helper-module-imports": "^7.0.0",
- "@emotion/babel-utils": "^0.6.4",
- "@emotion/hash": "^0.6.2",
- "@emotion/memoize": "^0.6.1",
- "@emotion/stylis": "^0.7.0",
- "babel-plugin-macros": "^2.0.0",
- "babel-plugin-syntax-jsx": "^6.18.0",
- "convert-source-map": "^1.5.0",
- "find-root": "^1.1.0",
- "mkdirp": "^0.5.1",
- "source-map": "^0.5.7",
- "touch": "^2.0.1"
- }
- }
- }
- },
- "encoding": {
- "version": "0.1.13",
- "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz",
- "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==",
- "requires": {
- "iconv-lite": "^0.6.2"
- }
- },
- "error-ex": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
- "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
- "requires": {
- "is-arrayish": "^0.2.1"
- }
- },
- "es-abstract": {
- "version": "1.17.6",
- "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz",
- "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==",
- "requires": {
- "es-to-primitive": "^1.2.1",
- "function-bind": "^1.1.1",
- "has": "^1.0.3",
- "has-symbols": "^1.0.1",
- "is-callable": "^1.2.0",
- "is-regex": "^1.1.0",
- "object-inspect": "^1.7.0",
- "object-keys": "^1.1.1",
- "object.assign": "^4.1.0",
- "string.prototype.trimend": "^1.0.1",
- "string.prototype.trimstart": "^1.0.1"
- }
- },
- "es-to-primitive": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
- "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
- "requires": {
- "is-callable": "^1.1.4",
- "is-date-object": "^1.0.1",
- "is-symbol": "^1.0.2"
- }
- },
- "es6-promise": {
- "version": "4.2.8",
- "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz",
- "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==",
- "dev": true
- },
- "escape-html": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
- "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg="
- },
- "escape-string-regexp": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
- },
- "esprima": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
- "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
- },
- "esrever": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/esrever/-/esrever-0.2.0.tgz",
- "integrity": "sha1-lunSj08bGnZ4TNXUkOquAQ50B7g="
- },
- "execa": {
- "version": "0.7.0",
- "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz",
- "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=",
- "dev": true,
- "requires": {
- "cross-spawn": "^5.0.1",
- "get-stream": "^3.0.0",
- "is-stream": "^1.1.0",
- "npm-run-path": "^2.0.0",
- "p-finally": "^1.0.0",
- "signal-exit": "^3.0.0",
- "strip-eof": "^1.0.0"
- }
- },
- "exenv": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/exenv/-/exenv-1.2.2.tgz",
- "integrity": "sha1-KueOhdmJQVhnCwPUe+wfA72Ru50="
- },
- "extend": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
- "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="
- },
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "requires": {
- "is-extendable": "^0.1.0"
- }
- },
- "extract-zip": {
- "version": "1.7.0",
- "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz",
- "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==",
- "dev": true,
- "requires": {
- "concat-stream": "^1.6.2",
- "debug": "^2.6.9",
- "mkdirp": "^0.5.4",
- "yauzl": "^2.10.0"
- }
- },
- "extsprintf": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
- "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=",
- "dev": true
- },
- "fast-deep-equal": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz",
- "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk="
- },
- "fast-glob": {
- "version": "3.2.7",
- "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz",
- "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==",
- "requires": {
- "@nodelib/fs.stat": "^2.0.2",
- "@nodelib/fs.walk": "^1.2.3",
- "glob-parent": "^5.1.2",
- "merge2": "^1.3.0",
- "micromatch": "^4.0.4"
- }
- },
- "fast-json-stable-stringify": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz",
- "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I="
- },
- "fast-levenshtein": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
- "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc="
- },
- "fastq": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.11.1.tgz",
- "integrity": "sha512-HOnr8Mc60eNYl1gzwp6r5RoUyAn5/glBolUzP/Ez6IFVPMPirxn/9phgL6zhOtaTy7ISwPvQ+wT+hfcRZh/bzw==",
- "requires": {
- "reusify": "^1.0.4"
- }
- },
- "fbjs": {
- "version": "0.8.17",
- "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-0.8.17.tgz",
- "integrity": "sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90=",
- "requires": {
- "core-js": "^1.0.0",
- "isomorphic-fetch": "^2.1.1",
- "loose-envify": "^1.0.0",
- "object-assign": "^4.1.0",
- "promise": "^7.1.1",
- "setimmediate": "^1.0.5",
- "ua-parser-js": "^0.7.18"
- }
- },
- "fd-slicer": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
- "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=",
- "dev": true,
- "requires": {
- "pend": "~1.2.0"
- }
- },
- "file-url": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/file-url/-/file-url-2.0.2.tgz",
- "integrity": "sha1-6VF4TXkJUSfTcTApqwY/QIGMoq4=",
- "dev": true
- },
- "fill-range": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
- "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
- "requires": {
- "to-regex-range": "^5.0.1"
- }
- },
- "find-root": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz",
- "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng=="
- },
- "focus-group": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/focus-group/-/focus-group-0.3.1.tgz",
- "integrity": "sha1-4PMu2GsNq91v/OvfiY7LMuR/7c4="
- },
- "for-each": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz",
- "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==",
- "requires": {
- "is-callable": "^1.1.3"
- }
- },
- "forever-agent": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
- "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=",
- "dev": true
- },
- "form-data": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
- "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
- "dev": true,
- "requires": {
- "asynckit": "^0.4.0",
- "combined-stream": "^1.0.6",
- "mime-types": "^2.1.12"
- }
- },
- "fs-extra": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz",
- "integrity": "sha1-zTzl9+fLYUWIP8rjGR6Yd/hYeVA=",
- "dev": true,
- "requires": {
- "graceful-fs": "^4.1.2",
- "jsonfile": "^2.1.0",
- "klaw": "^1.0.0"
- }
- },
- "fs.realpath": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
- "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
- },
- "function-bind": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
- "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
- },
- "fuzzy": {
- "version": "0.1.3",
- "resolved": "https://registry.npmjs.org/fuzzy/-/fuzzy-0.1.3.tgz",
- "integrity": "sha1-THbsL/CsGjap3M+aAN+GIweNTtg="
- },
- "get-document": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/get-document/-/get-document-1.0.0.tgz",
- "integrity": "sha1-SCG85m8cJMsDMWAr5strEsTwHEs="
- },
- "get-stdin": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz",
- "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=",
- "dev": true
- },
- "get-stream": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
- "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=",
- "dev": true
- },
- "get-window": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/get-window/-/get-window-1.1.2.tgz",
- "integrity": "sha512-yjWpFcy9fjhLQHW1dPtg9ga4pmizLY8y4ZSHdGrAQ1NU277MRhnGnnLPxe19X8W5lWVsCZz++5xEuNozWMVmTw==",
- "requires": {
- "get-document": "1"
- }
- },
- "getpass": {
- "version": "0.1.7",
- "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
- "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=",
- "dev": true,
- "requires": {
- "assert-plus": "^1.0.0"
- }
- },
- "glob": {
- "version": "7.1.6",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
- "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
- "requires": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.0.4",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
- }
- },
- "glob-parent": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
- "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
- "requires": {
- "is-glob": "^4.0.1"
- }
- },
- "global": {
- "version": "4.4.0",
- "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz",
- "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==",
- "requires": {
- "min-document": "^2.19.0",
- "process": "^0.11.10"
- }
- },
- "global-dirs": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz",
- "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=",
- "dev": true,
- "requires": {
- "ini": "^1.3.4"
- }
- },
- "globby": {
- "version": "11.0.4",
- "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz",
- "integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==",
- "requires": {
- "array-union": "^2.1.0",
- "dir-glob": "^3.0.1",
- "fast-glob": "^3.1.1",
- "ignore": "^5.1.4",
- "merge2": "^1.3.0",
- "slash": "^3.0.0"
- },
- "dependencies": {
- "array-union": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
- "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="
- }
- }
- },
- "got": {
- "version": "6.7.1",
- "resolved": "https://registry.npmjs.org/got/-/got-6.7.1.tgz",
- "integrity": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=",
- "dev": true,
- "requires": {
- "create-error-class": "^3.0.0",
- "duplexer3": "^0.1.4",
- "get-stream": "^3.0.0",
- "is-redirect": "^1.0.0",
- "is-retry-allowed": "^1.0.0",
- "is-stream": "^1.0.0",
- "lowercase-keys": "^1.0.0",
- "safe-buffer": "^5.0.1",
- "timed-out": "^4.0.0",
- "unzip-response": "^2.0.1",
- "url-parse-lax": "^1.0.0"
- }
- },
- "gotrue-js": {
- "version": "0.9.26",
- "resolved": "https://registry.npmjs.org/gotrue-js/-/gotrue-js-0.9.26.tgz",
- "integrity": "sha512-UC1MIyyjfPxwpyd8X/xeigtUUaHI3+0dXvUEjymBfN3wE2MUfANVyTtO5HMwlBGlEFwbXuH0D1h6EExcvm/nug==",
- "requires": {
- "micro-api-client": "^3.2.1"
- }
- },
- "graceful-fs": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz",
- "integrity": "sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==",
- "dev": true
- },
- "graphql": {
- "version": "14.7.0",
- "resolved": "https://registry.npmjs.org/graphql/-/graphql-14.7.0.tgz",
- "integrity": "sha512-l0xWZpoPKpppFzMfvVyFmp9vLN7w/ZZJPefUicMCepfJeQ8sMcztloGYY9DfjVPo6tIUDzU5Hw3MUbIjj9AVVA==",
- "requires": {
- "iterall": "^1.2.2"
- }
- },
- "graphql-tag": {
- "version": "2.11.0",
- "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.11.0.tgz",
- "integrity": "sha512-VmsD5pJqWJnQZMUeRwrDhfgoyqcfwEkvtpANqcoUG8/tOLkwNgU9mzub/Mc78OJMhHjx7gfAMTxzdG43VGg3bA=="
- },
- "gray-matter": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.2.tgz",
- "integrity": "sha512-7hB/+LxrOjq/dd8APlK0r24uL/67w7SkYnfwhNFwg/VDIGWGmduTDYf3WNstLW2fbbmRwrDGCVSJ2isuf2+4Hw==",
- "requires": {
- "js-yaml": "^3.11.0",
- "kind-of": "^6.0.2",
- "section-matter": "^1.0.0",
- "strip-bom-string": "^1.0.0"
- }
- },
- "gud": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/gud/-/gud-1.0.0.tgz",
- "integrity": "sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw=="
- },
- "har-schema": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
- "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=",
- "dev": true
- },
- "har-validator": {
- "version": "5.1.3",
- "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz",
- "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==",
- "dev": true,
- "requires": {
- "ajv": "^6.5.5",
- "har-schema": "^2.0.0"
- }
- },
- "has": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
- "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
- "requires": {
- "function-bind": "^1.1.1"
- }
- },
- "has-ansi": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
- "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=",
- "dev": true,
- "requires": {
- "ansi-regex": "^2.0.0"
- }
- },
- "has-flag": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
- },
- "has-symbols": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
- "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg=="
- },
- "hasha": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/hasha/-/hasha-2.2.0.tgz",
- "integrity": "sha1-eNfL/B5tZjA/55g3NlmEUXsvbuE=",
- "dev": true,
- "requires": {
- "is-stream": "^1.0.1",
- "pinkie-promise": "^2.0.0"
- }
- },
- "hast-util-embedded": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/hast-util-embedded/-/hast-util-embedded-1.0.5.tgz",
- "integrity": "sha512-0FfLHmfArWOizbdwjL+Rc9QIBzqP80juicNl4S4NEPq5OYWBCgYrtYDPUDoSyQQ9IQlBn9W7++fpYQNzZSq/wQ==",
- "requires": {
- "hast-util-is-element": "^1.0.0"
- }
- },
- "hast-util-from-parse5": {
- "version": "5.0.3",
- "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-5.0.3.tgz",
- "integrity": "sha512-gOc8UB99F6eWVWFtM9jUikjN7QkWxB3nY0df5Z0Zq1/Nkwl5V4hAAsl0tmwlgWl/1shlTF8DnNYLO8X6wRV9pA==",
- "requires": {
- "ccount": "^1.0.3",
- "hastscript": "^5.0.0",
- "property-information": "^5.0.0",
- "web-namespaces": "^1.1.2",
- "xtend": "^4.0.1"
- }
- },
- "hast-util-has-property": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/hast-util-has-property/-/hast-util-has-property-1.0.4.tgz",
- "integrity": "sha512-ghHup2voGfgFoHMGnaLHOjbYFACKrRh9KFttdCzMCbFoBMJXiNi2+XTrPP8+q6cDJM/RSqlCfVWrjp1H201rZg=="
- },
- "hast-util-is-element": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-1.0.4.tgz",
- "integrity": "sha512-NFR6ljJRvDcyPP5SbV7MyPBgF47X3BsskLnmw1U34yL+X6YC0MoBx9EyMg8Jtx4FzGH95jw8+c1VPLHaRA0wDQ=="
- },
- "hast-util-parse-selector": {
- "version": "2.2.4",
- "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-2.2.4.tgz",
- "integrity": "sha512-gW3sxfynIvZApL4L07wryYF4+C9VvH3AUi7LAnVXV4MneGEgwOByXvFo18BgmTWnm7oHAe874jKbIB1YhHSIzA=="
- },
- "hast-util-to-html": {
- "version": "7.1.1",
- "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-7.1.1.tgz",
- "integrity": "sha512-Ujqj0hGuo3dIQKilkbauAv5teOqPvhaSLEgs1lgApFT0812e114KiffV8XfE4ttR8dRPqxNOIJOMu6SKOVOGlg==",
- "requires": {
- "ccount": "^1.0.0",
- "comma-separated-tokens": "^1.0.0",
- "hast-util-is-element": "^1.0.0",
- "hast-util-whitespace": "^1.0.0",
- "html-void-elements": "^1.0.0",
- "property-information": "^5.0.0",
- "space-separated-tokens": "^1.0.0",
- "stringify-entities": "^3.0.1",
- "unist-util-is": "^4.0.0",
- "xtend": "^4.0.0"
- },
- "dependencies": {
- "unist-util-is": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.0.2.tgz",
- "integrity": "sha512-Ofx8uf6haexJwI1gxWMGg6I/dLnF2yE+KibhD3/diOqY2TinLcqHXCV6OI5gFVn3xQqDH+u0M625pfKwIwgBKQ=="
- }
- }
- },
- "hast-util-to-mdast": {
- "version": "7.1.1",
- "resolved": "https://registry.npmjs.org/hast-util-to-mdast/-/hast-util-to-mdast-7.1.1.tgz",
- "integrity": "sha512-MXD6n7sxvmg1ntpugcGAE0AD+SrZWUqlJgLjYZr93697s3TWgsrs/PGXcgk/E7mvcj4q85tZy5grsMDKzmqBxA==",
- "requires": {
- "extend": "^3.0.0",
- "hast-util-has-property": "^1.0.0",
- "hast-util-is-element": "^1.0.0",
- "hast-util-to-text": "^2.0.0",
- "mdast-util-phrasing": "^2.0.0",
- "mdast-util-to-string": "^1.0.0",
- "rehype-minify-whitespace": "^4.0.3",
- "repeat-string": "^1.6.1",
- "trim-trailing-lines": "^1.1.0",
- "unist-util-visit": "^2.0.0",
- "xtend": "^4.0.1"
- },
- "dependencies": {
- "unist-util-is": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.0.2.tgz",
- "integrity": "sha512-Ofx8uf6haexJwI1gxWMGg6I/dLnF2yE+KibhD3/diOqY2TinLcqHXCV6OI5gFVn3xQqDH+u0M625pfKwIwgBKQ=="
- },
- "unist-util-visit": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
- "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
- "requires": {
- "@types/unist": "^2.0.0",
- "unist-util-is": "^4.0.0",
- "unist-util-visit-parents": "^3.0.0"
- }
- },
- "unist-util-visit-parents": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.0.tgz",
- "integrity": "sha512-0g4wbluTF93npyPrp/ymd3tCDTMnP0yo2akFD2FIBAYXq/Sga3lwaU1D8OYKbtpioaI6CkDcQ6fsMnmtzt7htw==",
- "requires": {
- "@types/unist": "^2.0.0",
- "unist-util-is": "^4.0.0"
- }
- }
- }
- },
- "hast-util-to-text": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/hast-util-to-text/-/hast-util-to-text-2.0.0.tgz",
- "integrity": "sha512-idXqFGmKInLKcFMbLvh0fldmV94o+aOdXL/z5H5XhPhUp/5vzycu7i15c8V9kC6W3XgGHg2uuiIcRJlWtESVfQ==",
- "requires": {
- "hast-util-is-element": "^1.0.0",
- "repeat-string": "^1.0.0",
- "unist-util-find-after": "^3.0.0"
- }
- },
- "hast-util-whitespace": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-1.0.4.tgz",
- "integrity": "sha512-I5GTdSfhYfAPNztx2xJRQpG8cuDSNt599/7YUn7Gx/WxNMsG+a835k97TDkFgk123cwjfwINaZknkKkphx/f2A=="
- },
- "hastscript": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-5.1.2.tgz",
- "integrity": "sha512-WlztFuK+Lrvi3EggsqOkQ52rKbxkXL3RwB6t5lwoa8QLMemoWfBuL43eDrwOamJyR7uKQKdmKYaBH1NZBiIRrQ==",
- "requires": {
- "comma-separated-tokens": "^1.0.0",
- "hast-util-parse-selector": "^2.0.0",
- "property-information": "^5.0.0",
- "space-separated-tokens": "^1.0.0"
- }
- },
- "history": {
- "version": "4.10.1",
- "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz",
- "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==",
- "requires": {
- "@babel/runtime": "^7.1.2",
- "loose-envify": "^1.2.0",
- "resolve-pathname": "^3.0.0",
- "tiny-invariant": "^1.0.2",
- "tiny-warning": "^1.0.0",
- "value-equal": "^1.0.1"
- }
- },
- "hoist-non-react-statics": {
- "version": "3.3.2",
- "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
- "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==",
- "requires": {
- "react-is": "^16.7.0"
- }
- },
- "hosted-git-info": {
- "version": "2.8.8",
- "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz",
- "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==",
- "dev": true
- },
- "html-void-elements": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-1.0.5.tgz",
- "integrity": "sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w=="
- },
- "http-signature": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
- "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=",
- "dev": true,
- "requires": {
- "assert-plus": "^1.0.0",
- "jsprim": "^1.2.2",
- "sshpk": "^1.7.0"
- }
- },
- "humanize-url": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/humanize-url/-/humanize-url-1.0.1.tgz",
- "integrity": "sha1-9KuZ4NKIF0yk4eUEB8VfuuRk7/8=",
- "dev": true,
- "requires": {
- "normalize-url": "^1.0.0",
- "strip-url-auth": "^1.0.0"
- }
- },
- "iconv-lite": {
- "version": "0.6.2",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.2.tgz",
- "integrity": "sha512-2y91h5OpQlolefMPmUlivelittSWy0rP+oYVpn6A7GwVHNE8AWzoYOBNmlwks3LobaJxgHCYZAnyNo2GgpNRNQ==",
- "requires": {
- "safer-buffer": ">= 2.1.2 < 3.0.0"
- }
- },
- "ieee754": {
- "version": "1.1.13",
- "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz",
- "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg=="
- },
- "ignore": {
- "version": "5.1.8",
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz",
- "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw=="
- },
- "immediate": {
- "version": "3.0.6",
- "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz",
- "integrity": "sha1-nbHb0Pr43m++D13V5Wu2BigN5ps="
- },
- "immer": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/immer/-/immer-3.3.0.tgz",
- "integrity": "sha512-vlWRjnZqoTHuEjadquVHK3GxsXe1gNoATffLEA8Qbrdd++Xb+wHEFiWtwAKTscMBoi1AsvEMXhYRzAXA8Ex9FQ=="
- },
- "immutable": {
- "version": "3.8.2",
- "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.8.2.tgz",
- "integrity": "sha1-wkOZUUVbs5kT2vKBN28VMOEErfM="
- },
- "import-fresh": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz",
- "integrity": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==",
- "requires": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- }
- },
- "import-lazy": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz",
- "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=",
- "dev": true
- },
- "imurmurhash": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
- "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=",
- "dev": true
- },
- "indent-string": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz",
- "integrity": "sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=",
- "dev": true
- },
- "inflight": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
- "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
- "requires": {
- "once": "^1.3.0",
- "wrappy": "1"
- }
- },
- "inherits": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
- "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
- },
- "ini": {
- "version": "1.3.5",
- "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz",
- "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw=="
- },
- "invariant": {
- "version": "2.2.4",
- "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz",
- "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==",
- "requires": {
- "loose-envify": "^1.0.0"
- }
- },
- "is-alphabetical": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz",
- "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg=="
- },
- "is-alphanumeric": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-alphanumeric/-/is-alphanumeric-1.0.0.tgz",
- "integrity": "sha1-Spzvcdr0wAHB2B1j0UDPU/1oifQ="
- },
- "is-alphanumerical": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz",
- "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==",
- "requires": {
- "is-alphabetical": "^1.0.0",
- "is-decimal": "^1.0.0"
- }
- },
- "is-arrayish": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
- "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0="
- },
- "is-buffer": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.4.tgz",
- "integrity": "sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A=="
- },
- "is-callable": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.0.tgz",
- "integrity": "sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw=="
- },
- "is-ci": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz",
- "integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==",
- "dev": true,
- "requires": {
- "ci-info": "^1.5.0"
- }
- },
- "is-date-object": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz",
- "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g=="
- },
- "is-decimal": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz",
- "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw=="
- },
- "is-extendable": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
- "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik="
- },
- "is-extglob": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
- "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI="
- },
- "is-finite": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz",
- "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==",
- "dev": true
- },
- "is-fullwidth-code-point": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
- "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
- "dev": true
- },
- "is-glob": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz",
- "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==",
- "requires": {
- "is-extglob": "^2.1.1"
- }
- },
- "is-hexadecimal": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz",
- "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw=="
- },
- "is-hotkey": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-hotkey/-/is-hotkey-0.1.6.tgz",
- "integrity": "sha512-1+hMr0GLPM0M49UDRt9RgE8i+SM29UY4AGRP6sGz6fThOVXqSrEvTMakolhHMcVizJnPNAoMpEmE+Oi1k2NrZQ=="
- },
- "is-in-browser": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/is-in-browser/-/is-in-browser-1.1.3.tgz",
- "integrity": "sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU="
- },
- "is-installed-globally": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz",
- "integrity": "sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA=",
- "dev": true,
- "requires": {
- "global-dirs": "^0.1.0",
- "is-path-inside": "^1.0.0"
- }
- },
- "is-npm": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz",
- "integrity": "sha1-8vtjpl5JBbQGyGBydloaTceTufQ=",
- "dev": true
- },
- "is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
- },
- "is-obj": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
- "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w=="
- },
- "is-path-cwd": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz",
- "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ=="
- },
- "is-path-inside": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz",
- "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=",
- "dev": true,
- "requires": {
- "path-is-inside": "^1.0.1"
- }
- },
- "is-plain-obj": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz",
- "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4="
- },
- "is-plain-object": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
- "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
- "requires": {
- "isobject": "^3.0.1"
- }
- },
- "is-redirect": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz",
- "integrity": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=",
- "dev": true
- },
- "is-regex": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.0.tgz",
- "integrity": "sha512-iI97M8KTWID2la5uYXlkbSDQIg4F6o1sYboZKKTDpnDQMLtUL86zxhgDet3Q2SriaYsyGqZ6Mn2SjbRKeLHdqw==",
- "requires": {
- "has-symbols": "^1.0.1"
- }
- },
- "is-retry-allowed": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz",
- "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==",
- "dev": true
- },
- "is-stream": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
- "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ="
- },
- "is-symbol": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
- "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
- "requires": {
- "has-symbols": "^1.0.1"
- }
- },
- "is-typedarray": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
- "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=",
- "dev": true
- },
- "is-utf8": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz",
- "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=",
- "dev": true
- },
- "is-whitespace-character": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz",
- "integrity": "sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w=="
- },
- "is-window": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-window/-/is-window-1.0.2.tgz",
- "integrity": "sha1-LIlspT25feRdPDMTOmXYyfVjSA0="
- },
- "is-word-character": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/is-word-character/-/is-word-character-1.0.4.tgz",
- "integrity": "sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA=="
- },
- "isarray": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
- "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
- "dev": true
- },
- "isexe": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
- "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
- "dev": true
- },
- "isobject": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
- "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8="
- },
- "isomorphic-base64": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/isomorphic-base64/-/isomorphic-base64-1.0.2.tgz",
- "integrity": "sha1-9Caq6CVpuopOxcpzrSGkSrHueAM="
- },
- "isomorphic-fetch": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz",
- "integrity": "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=",
- "requires": {
- "node-fetch": "^1.0.1",
- "whatwg-fetch": ">=0.10.0"
- }
- },
- "isstream": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
- "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=",
- "dev": true
- },
- "iterall": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/iterall/-/iterall-1.3.0.tgz",
- "integrity": "sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg=="
- },
- "jquery": {
- "version": "3.5.1",
- "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.5.1.tgz",
- "integrity": "sha512-XwIBPqcMn57FxfT+Go5pzySnm4KWkT1Tv7gjrpT1srtf8Weynl6R273VJ5GjkRb51IzMp5nbaPjJXMWeju2MKg=="
- },
- "js-base64": {
- "version": "2.6.4",
- "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz",
- "integrity": "sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ=="
- },
- "js-sha256": {
- "version": "0.9.0",
- "resolved": "https://registry.npmjs.org/js-sha256/-/js-sha256-0.9.0.tgz",
- "integrity": "sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA=="
- },
- "js-tokens": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
- "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
- },
- "js-yaml": {
- "version": "3.14.0",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz",
- "integrity": "sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==",
- "requires": {
- "argparse": "^1.0.7",
- "esprima": "^4.0.0"
- }
- },
- "jsbn": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
- "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=",
- "dev": true
- },
- "json-parse-better-errors": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
- "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw=="
- },
- "json-schema": {
- "version": "0.2.3",
- "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz",
- "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=",
- "dev": true
- },
- "json-schema-traverse": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
- },
- "json-stringify-safe": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
- "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=",
- "dev": true
- },
- "json5": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
- "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
- "requires": {
- "minimist": "^1.2.0"
- }
- },
- "jsonfile": {
- "version": "2.4.0",
- "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz",
- "integrity": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=",
- "dev": true,
- "requires": {
- "graceful-fs": "^4.1.6"
- }
- },
- "jsprim": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz",
- "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=",
- "dev": true,
- "requires": {
- "assert-plus": "1.0.0",
- "extsprintf": "1.3.0",
- "json-schema": "0.2.3",
- "verror": "1.10.0"
- }
- },
- "jwt-decode": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/jwt-decode/-/jwt-decode-2.2.0.tgz",
- "integrity": "sha1-fYa9VmefWM5qhHBKZX3TkruoGnk="
- },
- "kew": {
- "version": "0.7.0",
- "resolved": "https://registry.npmjs.org/kew/-/kew-0.7.0.tgz",
- "integrity": "sha1-edk9LTM2PW/dKXCzNdkUGtWR15s=",
- "dev": true
- },
- "keyboardevent-key-polyfill": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/keyboardevent-key-polyfill/-/keyboardevent-key-polyfill-1.1.0.tgz",
- "integrity": "sha1-ijGdjkWhMXL8pWKGNy+QwdTHAUw="
- },
- "kind-of": {
- "version": "6.0.3",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
- "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
- },
- "klaw": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz",
- "integrity": "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=",
- "dev": true,
- "requires": {
- "graceful-fs": "^4.1.9"
- }
- },
- "latest-version": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz",
- "integrity": "sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=",
- "dev": true,
- "requires": {
- "package-json": "^4.0.0"
- }
- },
- "lie": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/lie/-/lie-3.1.1.tgz",
- "integrity": "sha1-mkNrLMd0bKWd56QfpGmz77dr2H4=",
- "requires": {
- "immediate": "~3.0.5"
- }
- },
- "lines-and-columns": {
- "version": "1.1.6",
- "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz",
- "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA="
- },
- "load-json-file": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz",
- "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=",
- "dev": true,
- "requires": {
- "graceful-fs": "^4.1.2",
- "parse-json": "^2.2.0",
- "pify": "^2.0.0",
- "pinkie-promise": "^2.0.0",
- "strip-bom": "^2.0.0"
- }
- },
- "loader-utils": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz",
- "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==",
- "requires": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^1.0.1"
- }
- },
- "localforage": {
- "version": "1.9.0",
- "resolved": "https://registry.npmjs.org/localforage/-/localforage-1.9.0.tgz",
- "integrity": "sha512-rR1oyNrKulpe+VM9cYmcFn6tsHuokyVHFaCM3+osEmxaHTbEk8oQu6eGDfS6DQLWi/N67XRmB8ECG37OES368g==",
- "requires": {
- "lie": "3.1.1"
- }
- },
- "lodash": {
- "version": "4.17.19",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
- "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ=="
- },
- "log-symbols": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-1.0.2.tgz",
- "integrity": "sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg=",
- "dev": true,
- "requires": {
- "chalk": "^1.0.0"
- }
- },
- "longest-streak": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz",
- "integrity": "sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg=="
- },
- "loose-envify": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
- "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
- "requires": {
- "js-tokens": "^3.0.0 || ^4.0.0"
- }
- },
- "loud-rejection": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz",
- "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=",
- "dev": true,
- "requires": {
- "currently-unhandled": "^0.4.1",
- "signal-exit": "^3.0.0"
- }
- },
- "lowercase-keys": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz",
- "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==",
- "dev": true
- },
- "lru-cache": {
- "version": "4.1.5",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz",
- "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==",
- "dev": true,
- "requires": {
- "pseudomap": "^1.0.2",
- "yallist": "^2.1.2"
- }
- },
- "make-dir": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz",
- "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==",
- "dev": true,
- "requires": {
- "pify": "^3.0.0"
- },
- "dependencies": {
- "pify": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
- "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
- "dev": true
- }
- }
- },
- "map-obj": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz",
- "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=",
- "dev": true
- },
- "markdown-escapes": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/markdown-escapes/-/markdown-escapes-1.0.4.tgz",
- "integrity": "sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg=="
- },
- "markdown-table": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-1.1.3.tgz",
- "integrity": "sha512-1RUZVgQlpJSPWYbFSpmudq5nHY1doEIv89gBtF0s4gW1GF2XorxcA/70M5vq7rLv0a6mhOUccRsqkwhwLCIQ2Q=="
- },
- "matches-selector": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/matches-selector/-/matches-selector-1.2.0.tgz",
- "integrity": "sha512-c4vLwYWyl+Ji+U43eU/G5FwxWd4ZH0ePUsFs5y0uwD9HUEFBXUQ1zUUan+78IpRD+y4pUfG0nAzNM292K7ItvA=="
- },
- "mdast-util-compact": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/mdast-util-compact/-/mdast-util-compact-1.0.4.tgz",
- "integrity": "sha512-3YDMQHI5vRiS2uygEFYaqckibpJtKq5Sj2c8JioeOQBU6INpKbdWzfyLqFFnDwEcEnRFIdMsguzs5pC1Jp4Isg==",
- "requires": {
- "unist-util-visit": "^1.1.0"
- }
- },
- "mdast-util-definitions": {
- "version": "1.2.5",
- "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-1.2.5.tgz",
- "integrity": "sha512-CJXEdoLfiISCDc2JB6QLb79pYfI6+GcIH+W2ox9nMc7od0Pz+bovcHsiq29xAQY6ayqe/9CsK2VzkSJdg1pFYA==",
- "requires": {
- "unist-util-visit": "^1.0.0"
- }
- },
- "mdast-util-phrasing": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-2.0.0.tgz",
- "integrity": "sha512-G1rNlW/sViwzbBYD7+k3mKGtoWV2v4GBFky66OYHfktHe7Hg9R+hH4xpeoOtjYiwTvle8C8wlKMpgqPCkaeK8Q==",
- "requires": {
- "unist-util-is": "^4.0.0"
- },
- "dependencies": {
- "unist-util-is": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.0.2.tgz",
- "integrity": "sha512-Ofx8uf6haexJwI1gxWMGg6I/dLnF2yE+KibhD3/diOqY2TinLcqHXCV6OI5gFVn3xQqDH+u0M625pfKwIwgBKQ=="
- }
- }
- },
- "mdast-util-to-hast": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-4.0.0.tgz",
- "integrity": "sha512-yOTZSxR1aPvWRUxVeLaLZ1sCYrK87x2Wusp1bDM/Ao2jETBhYUKITI3nHvgy+HkZW54HuCAhHnS0mTcbECD5Ig==",
- "requires": {
- "collapse-white-space": "^1.0.0",
- "detab": "^2.0.0",
- "mdast-util-definitions": "^1.2.0",
- "mdurl": "^1.0.1",
- "trim": "0.0.1",
- "trim-lines": "^1.0.0",
- "unist-builder": "^1.0.1",
- "unist-util-generated": "^1.1.0",
- "unist-util-position": "^3.0.0",
- "unist-util-visit": "^1.1.0",
- "xtend": "^4.0.1"
- }
- },
- "mdast-util-to-string": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz",
- "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A=="
- },
- "mdurl": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz",
- "integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4="
- },
- "memoize-one": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.1.1.tgz",
- "integrity": "sha512-HKeeBpWvqiVJD57ZUAsJNm71eHTykffzcLZVYWiVfQeI1rJtuEaS7hQiEpWfVVk18donPwJEcFKIkCmPJNOhHA=="
- },
- "meow": {
- "version": "3.7.0",
- "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz",
- "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=",
- "dev": true,
- "requires": {
- "camelcase-keys": "^2.0.0",
- "decamelize": "^1.1.2",
- "loud-rejection": "^1.0.0",
- "map-obj": "^1.0.1",
- "minimist": "^1.1.3",
- "normalize-package-data": "^2.3.4",
- "object-assign": "^4.0.1",
- "read-pkg-up": "^1.0.1",
- "redent": "^1.0.0",
- "trim-newlines": "^1.0.0"
- }
- },
- "merge2": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
- "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="
- },
- "micro-api-client": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/micro-api-client/-/micro-api-client-3.3.0.tgz",
- "integrity": "sha512-y0y6CUB9RLVsy3kfgayU28746QrNMpSm9O/AYGNsBgOkJr/X/Jk0VLGoO8Ude7Bpa8adywzF+MzXNZRFRsNPhg=="
- },
- "micromatch": {
- "version": "4.0.4",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz",
- "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==",
- "requires": {
- "braces": "^3.0.1",
- "picomatch": "^2.2.3"
- }
- },
- "mime-db": {
- "version": "1.44.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz",
- "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==",
- "dev": true
- },
- "mime-types": {
- "version": "2.1.27",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz",
- "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==",
- "dev": true,
- "requires": {
- "mime-db": "1.44.0"
- }
- },
- "min-document": {
- "version": "2.19.0",
- "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz",
- "integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=",
- "requires": {
- "dom-walk": "^0.1.0"
- }
- },
- "mini-create-react-context": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/mini-create-react-context/-/mini-create-react-context-0.4.0.tgz",
- "integrity": "sha512-b0TytUgFSbgFJGzJqXPKCFCBWigAjpjo+Fl7Vf7ZbKRDptszpppKxXH6DRXEABZ/gcEQczeb0iZ7JvL8e8jjCA==",
- "requires": {
- "@babel/runtime": "^7.5.5",
- "tiny-warning": "^1.0.3"
- }
- },
- "minimatch": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
- "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
- "requires": {
- "brace-expansion": "^1.1.7"
- }
- },
- "minimist": {
- "version": "1.2.5",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
- "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
- },
- "mkdirp": {
- "version": "0.5.5",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
- "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
- "requires": {
- "minimist": "^1.2.5"
- }
- },
- "moment": {
- "version": "2.27.0",
- "resolved": "https://registry.npmjs.org/moment/-/moment-2.27.0.tgz",
- "integrity": "sha512-al0MUK7cpIcglMv3YF13qSgdAIqxHTO7brRtaz3DlSULbqfazqkc5kEjNrLDOM7fsjshoFIihnU8snrP7zUvhQ=="
- },
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
- "dev": true
- },
- "netlify-cms": {
- "version": "2.10.55",
- "resolved": "https://registry.npmjs.org/netlify-cms/-/netlify-cms-2.10.55.tgz",
- "integrity": "sha512-mlAwJiLQt6aR/PqthrTuXQ86qLlHEgn9M9Ugr224apE5VF7v2JOoB36dWbDn73FA4883aiHTtecy6uwODGVOvA==",
- "requires": {
- "codemirror": "^5.46.0",
- "netlify-cms-app": "^2.12.19",
- "netlify-cms-media-library-cloudinary": "^1.3.5",
- "netlify-cms-media-library-uploadcare": "^0.5.6",
- "react": "^16.8.4",
- "react-dom": "^16.8.4"
- }
- },
- "netlify-cms-app": {
- "version": "2.12.19",
- "resolved": "https://registry.npmjs.org/netlify-cms-app/-/netlify-cms-app-2.12.19.tgz",
- "integrity": "sha512-FnSnwqsTYuEaEqpS/C96WTHHdtnEL5hFYC2yA2k8q1+euK/NdxN9ulLkDL+EV2AqIno9lM0yGDxQ88X0m1ykmQ==",
- "requires": {
- "@emotion/core": "^10.0.9",
- "@emotion/styled": "^10.0.9",
- "immutable": "^3.7.6",
- "lodash": "^4.17.11",
- "moment": "^2.24.0",
- "netlify-cms-backend-bitbucket": "^2.12.1",
- "netlify-cms-backend-git-gateway": "^2.11.1",
- "netlify-cms-backend-github": "^2.11.2",
- "netlify-cms-backend-gitlab": "^2.9.1",
- "netlify-cms-backend-test": "^2.10.1",
- "netlify-cms-core": "^2.30.3",
- "netlify-cms-editor-component-image": "^2.6.3",
- "netlify-cms-lib-auth": "^2.2.9",
- "netlify-cms-lib-util": "^2.11.1",
- "netlify-cms-locales": "^1.17.1",
- "netlify-cms-ui-default": "^2.11.2",
- "netlify-cms-widget-boolean": "^2.3.1",
- "netlify-cms-widget-code": "^1.2.1",
- "netlify-cms-widget-date": "^2.5.2",
- "netlify-cms-widget-datetime": "^2.6.1",
- "netlify-cms-widget-file": "^2.7.1",
- "netlify-cms-widget-image": "^2.7.1",
- "netlify-cms-widget-list": "^2.6.2",
- "netlify-cms-widget-map": "^1.4.1",
- "netlify-cms-widget-markdown": "^2.12.2",
- "netlify-cms-widget-number": "^2.4.2",
- "netlify-cms-widget-object": "^2.5.2",
- "netlify-cms-widget-relation": "^2.8.3",
- "netlify-cms-widget-select": "^2.6.1",
- "netlify-cms-widget-string": "^2.2.4",
- "netlify-cms-widget-text": "^2.3.1",
- "prop-types": "^15.7.2",
- "react-immutable-proptypes": "^2.1.0",
- "uuid": "^3.3.2"
- }
- },
- "netlify-cms-backend-bitbucket": {
- "version": "2.12.1",
- "resolved": "https://registry.npmjs.org/netlify-cms-backend-bitbucket/-/netlify-cms-backend-bitbucket-2.12.1.tgz",
- "integrity": "sha512-W32wYUT1h0C5l4O1GcceYPNTMHFiB0rtUv1emetR1J9eK38aouAd+m/IjB56B6V6M3zqS8lJTAxl9VQ//KyXCw==",
- "requires": {
- "common-tags": "^1.8.0",
- "js-base64": "^2.5.1",
- "semaphore": "^1.1.0",
- "what-the-diff": "^0.6.0"
- }
- },
- "netlify-cms-backend-git-gateway": {
- "version": "2.11.1",
- "resolved": "https://registry.npmjs.org/netlify-cms-backend-git-gateway/-/netlify-cms-backend-git-gateway-2.11.1.tgz",
- "integrity": "sha512-2JFkRLq0VMZ9digyKiW6NXKEy5/yLGErS+Xg0tRbIswhrrHQSrLux6vJO/RPsB9gNp2bmkpSCJNMxY3VCtXEGw==",
- "requires": {
- "gotrue-js": "^0.9.24",
- "ini": "^1.3.5",
- "jwt-decode": "^2.2.0",
- "minimatch": "^3.0.4"
- }
- },
- "netlify-cms-backend-github": {
- "version": "2.11.2",
- "resolved": "https://registry.npmjs.org/netlify-cms-backend-github/-/netlify-cms-backend-github-2.11.2.tgz",
- "integrity": "sha512-teDQ3byGDlr/7xRZpuNpnM+mIudQA8h1X7zTe5ndsJ4Tsci9zKy6C5An2+y5VQYS1e4vx76UocxMzVK4B4ZTZQ==",
- "requires": {
- "apollo-cache-inmemory": "^1.6.2",
- "apollo-client": "^2.6.3",
- "apollo-link-context": "^1.0.18",
- "apollo-link-http": "^1.5.15",
- "common-tags": "^1.8.0",
- "graphql": "^14.4.2",
- "graphql-tag": "^2.10.1",
- "js-base64": "^2.5.1",
- "semaphore": "^1.1.0"
- }
- },
- "netlify-cms-backend-gitlab": {
- "version": "2.9.1",
- "resolved": "https://registry.npmjs.org/netlify-cms-backend-gitlab/-/netlify-cms-backend-gitlab-2.9.1.tgz",
- "integrity": "sha512-LOuVy/zobdkJqlB9HX4ZD3FdXs4nBGvyhCGjfOh2iE+PeakvHGtle8fdw56Vxzb5NYTxpeHT1y9qKE4oBMpAFw==",
- "requires": {
- "js-base64": "^2.5.1",
- "semaphore": "^1.1.0"
- }
- },
- "netlify-cms-backend-test": {
- "version": "2.10.1",
- "resolved": "https://registry.npmjs.org/netlify-cms-backend-test/-/netlify-cms-backend-test-2.10.1.tgz",
- "integrity": "sha512-qpNEvkUjhMS6YybVTbdto9PHl1J5ZIZYKKG5RSsPCFAv+ZM/1kkDZeuBts5rDiLLIfmlfHO3rE2fxC0O+HKFQQ=="
- },
- "netlify-cms-core": {
- "version": "2.30.3",
- "resolved": "https://registry.npmjs.org/netlify-cms-core/-/netlify-cms-core-2.30.3.tgz",
- "integrity": "sha512-fjStbiKzXnAzBw2IVC61q7pSAqTCQYt3Sb2j5G0wDHeZprvSXV2TZCmouxkN9QNaBvDdD9F1KMGJseVr3RmHwA==",
- "requires": {
- "@iarna/toml": "2.2.5",
- "ajv": "^6.10.0",
- "ajv-errors": "^1.0.1",
- "ajv-keywords": "^3.4.1",
- "connected-react-router": "^6.8.0",
- "copy-text-to-clipboard": "^2.0.0",
- "diacritics": "^1.3.0",
- "fuzzy": "^0.1.1",
- "gotrue-js": "^0.9.24",
- "gray-matter": "^4.0.2",
- "history": "^4.7.2",
- "immer": "^3.1.3",
- "js-base64": "^2.5.1",
- "jwt-decode": "^2.1.0",
- "node-polyglot": "^2.3.0",
- "prop-types": "^15.7.2",
- "react": "^16.8.4",
- "react-dnd": "^7.3.2",
- "react-dnd-html5-backend": "^7.2.0",
- "react-dom": "^16.8.4",
- "react-frame-component": "^4.1.0",
- "react-hot-loader": "^4.8.0",
- "react-immutable-proptypes": "^2.1.0",
- "react-is": "16.13.1",
- "react-modal": "^3.8.1",
- "react-polyglot": "^0.7.0",
- "react-redux": "^7.2.0",
- "react-router-dom": "^5.2.0",
- "react-scroll-sync": "^0.8.0",
- "react-sortable-hoc": "^1.0.0",
- "react-split-pane": "^0.1.85",
- "react-topbar-progress-indicator": "^2.0.0",
- "react-virtualized-auto-sizer": "^1.0.2",
- "react-waypoint": "^9.0.3",
- "react-window": "^1.8.5",
- "redux": "^4.0.5",
- "redux-notifications": "^4.0.1",
- "redux-optimist": "^1.0.0",
- "redux-thunk": "^2.3.0",
- "sanitize-filename": "^1.6.1",
- "semaphore": "^1.0.5",
- "tomlify-j0.4": "^3.0.0-alpha.0",
- "url": "^0.11.0",
- "what-input": "^5.1.4",
- "yaml": "^1.8.3"
- }
- },
- "netlify-cms-editor-component-image": {
- "version": "2.6.3",
- "resolved": "https://registry.npmjs.org/netlify-cms-editor-component-image/-/netlify-cms-editor-component-image-2.6.3.tgz",
- "integrity": "sha512-oRFcZRcKVDBWbFyTj8Pye/FGisJuJ+sdX4UGjKfKhMOk4XzDQLBpC+m2Bb52PADmRuhVAExAw3j89vbjsZVMgQ=="
- },
- "netlify-cms-lib-auth": {
- "version": "2.2.9",
- "resolved": "https://registry.npmjs.org/netlify-cms-lib-auth/-/netlify-cms-lib-auth-2.2.9.tgz",
- "integrity": "sha512-HTSFrXJAPXm8rO9khxXFSLqgR0LZLbpKALa/7nwp8/TsBQjBs/Np/But8mB9da3VPMGSlwKJY91/9dE8j04s1g=="
- },
- "netlify-cms-lib-util": {
- "version": "2.11.1",
- "resolved": "https://registry.npmjs.org/netlify-cms-lib-util/-/netlify-cms-lib-util-2.11.1.tgz",
- "integrity": "sha512-PaV5yPpPPBMGpAVjbEgr1y1Zd9cgie8pU4GJkpT89PGY2n7lvf4yEnt5UE56YbR0tuHpOu6M4385kvRG6PRkoA==",
- "requires": {
- "js-sha256": "^0.9.0",
- "localforage": "^1.7.3",
- "semaphore": "^1.1.0"
- }
- },
- "netlify-cms-locales": {
- "version": "1.17.1",
- "resolved": "https://registry.npmjs.org/netlify-cms-locales/-/netlify-cms-locales-1.17.1.tgz",
- "integrity": "sha512-toOz/IEXNtTkQ/T/4Y1hkFTaAU/L/Dtu1plJfQLSBmN8/M8TPYHdzHl9AH4YJ/XqFu1960/Ux4A41VAXETrgvw=="
- },
- "netlify-cms-media-library-cloudinary": {
- "version": "1.3.5",
- "resolved": "https://registry.npmjs.org/netlify-cms-media-library-cloudinary/-/netlify-cms-media-library-cloudinary-1.3.5.tgz",
- "integrity": "sha512-YW9gEN86sVKIz63HG/ORSA+dL5wQIcsKUTg64xhsmPbT2p0IvuougPQhwaDF2jTuFzt5/72k//jGuYGC18U+QA=="
- },
- "netlify-cms-media-library-uploadcare": {
- "version": "0.5.6",
- "resolved": "https://registry.npmjs.org/netlify-cms-media-library-uploadcare/-/netlify-cms-media-library-uploadcare-0.5.6.tgz",
- "integrity": "sha512-QHPdpav03HFejtNMdbn/PXUeC0Z4nUdaGB85BFYvBtw2L+Tzr5oQaL1doLk+pugYSPAwEUL6a9EKQHJdwnuJLQ==",
- "requires": {
- "uploadcare-widget": "^3.7.0",
- "uploadcare-widget-tab-effects": "^1.4.0"
- }
- },
- "netlify-cms-ui-default": {
- "version": "2.11.2",
- "resolved": "https://registry.npmjs.org/netlify-cms-ui-default/-/netlify-cms-ui-default-2.11.2.tgz",
- "integrity": "sha512-2AxPMtt2/qCjdwXdm8gIFUnfp/Tm29YOhFerfHsCrQte6g9Tw/r1VXe34S+5PFKXtVEa0xjYuzXTgW8g+dhpqg==",
- "requires": {
- "react-aria-menubutton": "^6.0.0",
- "react-toggled": "^1.1.2",
- "react-transition-group": "^2.6.0"
- },
- "dependencies": {
- "react-transition-group": {
- "version": "2.9.0",
- "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.9.0.tgz",
- "integrity": "sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==",
- "requires": {
- "dom-helpers": "^3.4.0",
- "loose-envify": "^1.4.0",
- "prop-types": "^15.6.2",
- "react-lifecycles-compat": "^3.0.4"
- }
- }
- }
- },
- "netlify-cms-widget-boolean": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/netlify-cms-widget-boolean/-/netlify-cms-widget-boolean-2.3.1.tgz",
- "integrity": "sha512-XIczNlxzuzqHU/YWuW3gWsJORN5BN8IqH1FYoe/od2Ie3ez7y+NS48nQTS5LlfMTKrSZcT3IKeRdHmq0oLbOEg=="
- },
- "netlify-cms-widget-code": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/netlify-cms-widget-code/-/netlify-cms-widget-code-1.2.1.tgz",
- "integrity": "sha512-Mwj6PSIOTsCmGzbSWMR0SRxYY5Tva6D8XsXJ6xHmZjX4syhaGJBbWqBD0MBzJCijJ3arAeITJ8m0UMfUKp+DWg==",
- "requires": {
- "re-resizable": "^4.11.0",
- "react-codemirror2": "^6.0.0",
- "react-select": "^2.4.3"
- }
- },
- "netlify-cms-widget-date": {
- "version": "2.5.2",
- "resolved": "https://registry.npmjs.org/netlify-cms-widget-date/-/netlify-cms-widget-date-2.5.2.tgz",
- "integrity": "sha512-5XCMjkF2vbj3y1PD/4qpc9tCKtutos2oPBRcK4mfpztg8+Nt9Arz0DlAZqL3K2jPahR/qiUYSQssjUwkhEaaaw==",
- "requires": {
- "react-datetime": "^2.16.3"
- }
- },
- "netlify-cms-widget-datetime": {
- "version": "2.6.1",
- "resolved": "https://registry.npmjs.org/netlify-cms-widget-datetime/-/netlify-cms-widget-datetime-2.6.1.tgz",
- "integrity": "sha512-asJZFtfJOm6cArwzVOer2ZGgnwg0wY3qmHCInp2cQEj5zwpAO5K/763JIZQayejydQc9WdhMjpy4YQTR5UDdcQ=="
- },
- "netlify-cms-widget-file": {
- "version": "2.7.1",
- "resolved": "https://registry.npmjs.org/netlify-cms-widget-file/-/netlify-cms-widget-file-2.7.1.tgz",
- "integrity": "sha512-e9iUnFCZcZjWm/999bsbmH4NHmt2zJg77esZrCy/PNBkcKJyWjitYY67UE330MXuLJm+BKB3h4U6iIMDmGgMkw==",
- "requires": {
- "common-tags": "^1.8.0"
- }
- },
- "netlify-cms-widget-image": {
- "version": "2.7.1",
- "resolved": "https://registry.npmjs.org/netlify-cms-widget-image/-/netlify-cms-widget-image-2.7.1.tgz",
- "integrity": "sha512-y126wnSadFajinFjaDdPX+B6nyDj6ltyv25HZgvSyagCnkH0x8lb84b/UtLCF6jYXEBYB/DY/OImkayPwAHgeA=="
- },
- "netlify-cms-widget-list": {
- "version": "2.6.2",
- "resolved": "https://registry.npmjs.org/netlify-cms-widget-list/-/netlify-cms-widget-list-2.6.2.tgz",
- "integrity": "sha512-G7/e6LX860flv7vGjHx18dHINdVsKFlYg4uY+P4BtXRQ4yRYQX68Z4hDECP4hxwQIgkuR9xERUmOuXTwXQbMnA==",
- "requires": {
- "react-sortable-hoc": "^1.0.0"
- }
- },
- "netlify-cms-widget-map": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/netlify-cms-widget-map/-/netlify-cms-widget-map-1.4.1.tgz",
- "integrity": "sha512-CIBDH4yVkmh5YTmCXenXcYkDNxxe1e6dvvnzCaJfSIoPfhmVCdJUOfwoWmkqwx4bL2X0YpKQ7Q5dDgtTB3V6ZA==",
- "requires": {
- "ol": "^5.3.1"
- }
- },
- "netlify-cms-widget-markdown": {
- "version": "2.12.2",
- "resolved": "https://registry.npmjs.org/netlify-cms-widget-markdown/-/netlify-cms-widget-markdown-2.12.2.tgz",
- "integrity": "sha512-NXmdD+nOTj6+L39xFV5cSGTf9qhZmYRJ4h2D+lvqGi3tDFKe4K6Hw25d1fGiLtE5ql3TDGhcMc8rusD9kOL9AQ==",
- "requires": {
- "is-hotkey": "^0.1.4",
- "mdast-util-definitions": "^1.2.3",
- "mdast-util-to-string": "^1.0.5",
- "re-resizable": "^4.11.0",
- "react-select": "^2.4.3",
- "rehype-parse": "^6.0.0",
- "rehype-remark": "^8.0.0",
- "rehype-stringify": "^7.0.0",
- "remark-parse": "^6.0.3",
- "remark-rehype": "^4.0.0",
- "remark-stringify": "^6.0.4",
- "slate": "^0.47.0",
- "slate-base64-serializer": "^0.2.107",
- "slate-plain-serializer": "^0.7.1",
- "slate-react": "^0.22.0",
- "slate-soft-break": "^0.9.0",
- "unified": "^7.1.0",
- "unist-builder": "^1.0.3",
- "unist-util-visit-parents": "^2.0.1"
- }
- },
- "netlify-cms-widget-number": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/netlify-cms-widget-number/-/netlify-cms-widget-number-2.4.2.tgz",
- "integrity": "sha512-+leVUIAAOwQ67DcvAWZtUbYJt77/n3oChldeB2/c2eY7Gvag6ve1GmTVZwF9dcyopgtO8S1QHv6irHrd2P5ixw=="
- },
- "netlify-cms-widget-object": {
- "version": "2.5.2",
- "resolved": "https://registry.npmjs.org/netlify-cms-widget-object/-/netlify-cms-widget-object-2.5.2.tgz",
- "integrity": "sha512-Bwet/qbDSnpOof28eNtV5Rb8wKTpt1dCbvRBpjZgG4LGGp7o+49P20i6VI82fgbxPY5/7WUfxxP2/awBV1ix4Q=="
- },
- "netlify-cms-widget-relation": {
- "version": "2.8.3",
- "resolved": "https://registry.npmjs.org/netlify-cms-widget-relation/-/netlify-cms-widget-relation-2.8.3.tgz",
- "integrity": "sha512-J7ec/nGM0ydl/qzdSqz38u0oJZ6IgUxh3wptjh0Ada5rlf+oavSrvzqMZHd9Smsg6EzKH9m9jG/gq0qyycN/Hg==",
- "requires": {
- "react-select": "^2.4.2",
- "react-window": "^1.8.5"
- }
- },
- "netlify-cms-widget-select": {
- "version": "2.6.1",
- "resolved": "https://registry.npmjs.org/netlify-cms-widget-select/-/netlify-cms-widget-select-2.6.1.tgz",
- "integrity": "sha512-nSySnrB+m2TL37wftpdPcKWolm+WuBNB0B8XRG6glArutkGzwPimy8RW2tpVnrzJes6fun0cPRXFSqMvcp5IqA==",
- "requires": {
- "react-select": "^2.4.2"
- }
- },
- "netlify-cms-widget-string": {
- "version": "2.2.4",
- "resolved": "https://registry.npmjs.org/netlify-cms-widget-string/-/netlify-cms-widget-string-2.2.4.tgz",
- "integrity": "sha512-hRE13UN4fKeIf45HCZTjmFMSOosMi6MM50y6o/N4pilgRU/jHSgY/M60NBtu9+1pLkQpRMXUjZWtA+z0fC3COQ=="
- },
- "netlify-cms-widget-text": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/netlify-cms-widget-text/-/netlify-cms-widget-text-2.3.1.tgz",
- "integrity": "sha512-3cgd0Gr00pKar0QRJ83pnhBXBtlwZb4RgAYoxPxAgtsTxAtexcLBTTnt/6KtDZYOg9Wd+y9jS/9I6X0MOmzaLA==",
- "requires": {
- "react-textarea-autosize": "^7.1.0"
- }
- },
- "node-fetch": {
- "version": "1.7.3",
- "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz",
- "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==",
- "requires": {
- "encoding": "^0.1.11",
- "is-stream": "^1.0.1"
- }
- },
- "node-polyglot": {
- "version": "2.4.0",
- "resolved": "https://registry.npmjs.org/node-polyglot/-/node-polyglot-2.4.0.tgz",
- "integrity": "sha512-KRzKwzMWm3wSAjOSop7/WwNyzaMkCe9ddkwXTQsIZEJmvEnqy/bCqLpAVw6xBszKfy4iLdYVA0d83L+cIkYPbA==",
- "requires": {
- "for-each": "^0.3.3",
- "has": "^1.0.3",
- "string.prototype.trim": "^1.1.2",
- "warning": "^4.0.3"
- }
- },
- "nopt": {
- "version": "1.0.10",
- "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz",
- "integrity": "sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=",
- "requires": {
- "abbrev": "1"
- }
- },
- "normalize-package-data": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz",
- "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==",
- "dev": true,
- "requires": {
- "hosted-git-info": "^2.1.4",
- "resolve": "^1.10.0",
- "semver": "2 || 3 || 4 || 5",
- "validate-npm-package-license": "^3.0.1"
- }
- },
- "normalize-url": {
- "version": "1.9.1",
- "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz",
- "integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=",
- "dev": true,
- "requires": {
- "object-assign": "^4.0.1",
- "prepend-http": "^1.0.0",
- "query-string": "^4.1.0",
- "sort-keys": "^1.0.0"
- }
- },
- "npm-run-path": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
- "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
- "dev": true,
- "requires": {
- "path-key": "^2.0.0"
- }
- },
- "oauth-sign": {
- "version": "0.9.0",
- "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
- "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==",
- "dev": true
- },
- "object-assign": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
- "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM="
- },
- "object-inspect": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz",
- "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA=="
- },
- "object-keys": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
- "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="
- },
- "object.assign": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz",
- "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==",
- "requires": {
- "define-properties": "^1.1.2",
- "function-bind": "^1.1.1",
- "has-symbols": "^1.0.0",
- "object-keys": "^1.0.11"
- }
- },
- "ol": {
- "version": "5.3.3",
- "resolved": "https://registry.npmjs.org/ol/-/ol-5.3.3.tgz",
- "integrity": "sha512-7eU4x8YMduNcED1D5wI+AMWDRe7/1HmGfsbV+kFFROI9RNABU/6n4osj6Q3trZbxxKnK2DSRIjIRGwRHT/Z+Ww==",
- "requires": {
- "pbf": "3.1.0",
- "pixelworks": "1.1.0",
- "rbush": "2.0.2"
- }
- },
- "once": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
- "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
- "requires": {
- "wrappy": "1"
- }
- },
- "onetime": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz",
- "integrity": "sha1-ofeDj4MUxRbwXs78vEzP4EtO14k=",
- "dev": true
- },
- "optimism": {
- "version": "0.10.3",
- "resolved": "https://registry.npmjs.org/optimism/-/optimism-0.10.3.tgz",
- "integrity": "sha512-9A5pqGoQk49H6Vhjb9kPgAeeECfUDF6aIICbMDL23kDLStBn1MWk3YvcZ4xWF9CsSf6XEgvRLkXy4xof/56vVw==",
- "requires": {
- "@wry/context": "^0.4.0"
- }
- },
- "p-finally": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
- "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
- "dev": true
- },
- "p-map": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
- "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
- "requires": {
- "aggregate-error": "^3.0.0"
- }
- },
- "package-json": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz",
- "integrity": "sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=",
- "dev": true,
- "requires": {
- "got": "^6.7.1",
- "registry-auth-token": "^3.0.1",
- "registry-url": "^3.0.3",
- "semver": "^5.1.0"
- }
- },
- "parent-module": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
- "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
- "requires": {
- "callsites": "^3.0.0"
- }
- },
- "parse-entities": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-1.2.2.tgz",
- "integrity": "sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==",
- "requires": {
- "character-entities": "^1.0.0",
- "character-entities-legacy": "^1.0.0",
- "character-reference-invalid": "^1.0.0",
- "is-alphanumerical": "^1.0.0",
- "is-decimal": "^1.0.0",
- "is-hexadecimal": "^1.0.0"
- }
- },
- "parse-json": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz",
- "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=",
- "dev": true,
- "requires": {
- "error-ex": "^1.2.0"
- }
- },
- "parse5": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz",
- "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug=="
- },
- "path-is-absolute": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
- "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18="
- },
- "path-is-inside": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz",
- "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=",
- "dev": true
- },
- "path-key": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
- "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
- "dev": true
- },
- "path-parse": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz",
- "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw=="
- },
- "path-to-regexp": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz",
- "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==",
- "requires": {
- "isarray": "0.0.1"
- },
- "dependencies": {
- "isarray": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
- "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8="
- }
- }
- },
- "path-type": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz",
- "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=",
- "dev": true,
- "requires": {
- "graceful-fs": "^4.1.2",
- "pify": "^2.0.0",
- "pinkie-promise": "^2.0.0"
- }
- },
- "pbf": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/pbf/-/pbf-3.1.0.tgz",
- "integrity": "sha512-/hYJmIsTmh7fMkHAWWXJ5b8IKLWdjdlAFb3IHkRBn1XUhIYBChVGfVwmHEAV3UfXTxsP/AKfYTXTS/dCPxJd5w==",
- "requires": {
- "ieee754": "^1.1.6",
- "resolve-protobuf-schema": "^2.0.0"
- }
- },
- "pend": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
- "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=",
- "dev": true
- },
- "performance-now": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
- "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns="
- },
- "phantomjs-polyfill": {
- "version": "0.0.2",
- "resolved": "https://registry.npmjs.org/phantomjs-polyfill/-/phantomjs-polyfill-0.0.2.tgz",
- "integrity": "sha1-jGpxY+m8j9n/2+fWBctTUvn7iR4=",
- "dev": true
- },
- "phantomjs-prebuilt": {
- "version": "2.1.16",
- "resolved": "https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.16.tgz",
- "integrity": "sha1-79ISpKOWbTZHaE6ouniFSb4q7+8=",
- "dev": true,
- "requires": {
- "es6-promise": "^4.0.3",
- "extract-zip": "^1.6.5",
- "fs-extra": "^1.0.0",
- "hasha": "^2.2.0",
- "kew": "^0.7.0",
- "progress": "^1.1.8",
- "request": "^2.81.0",
- "request-progress": "^2.0.1",
- "which": "^1.2.10"
- }
- },
- "picomatch": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz",
- "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw=="
- },
- "pify": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
- "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
- "dev": true
- },
- "pinkie": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz",
- "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=",
- "dev": true
- },
- "pinkie-promise": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
- "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=",
- "dev": true,
- "requires": {
- "pinkie": "^2.0.0"
- }
- },
- "pixelworks": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/pixelworks/-/pixelworks-1.1.0.tgz",
- "integrity": "sha1-Hwla1I3Ki/ihyCWOAJIDGkTyLKU="
- },
- "prepend-http": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz",
- "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=",
- "dev": true
- },
- "process": {
- "version": "0.11.10",
- "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
- "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI="
- },
- "process-nextick-args": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
- "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
- "dev": true
- },
- "progress": {
- "version": "1.1.8",
- "resolved": "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz",
- "integrity": "sha1-4mDHj2Fhzdmw5WzD4Khd4Xx6V74=",
- "dev": true
- },
- "promise": {
- "version": "7.3.1",
- "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz",
- "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==",
- "requires": {
- "asap": "~2.0.3"
- }
- },
- "prop-types": {
- "version": "15.7.2",
- "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz",
- "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==",
- "requires": {
- "loose-envify": "^1.4.0",
- "object-assign": "^4.1.1",
- "react-is": "^16.8.1"
- }
- },
- "property-information": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/property-information/-/property-information-5.5.0.tgz",
- "integrity": "sha512-RgEbCx2HLa1chNgvChcx+rrCWD0ctBmGSE0M7lVm1yyv4UbvbrWoXp/BkVLZefzjrRBGW8/Js6uh/BnlHXFyjA==",
- "requires": {
- "xtend": "^4.0.0"
- }
- },
- "protocol-buffers-schema": {
- "version": "3.4.0",
- "resolved": "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.4.0.tgz",
- "integrity": "sha512-G/2kcamPF2S49W5yaMGdIpkG6+5wZF0fzBteLKgEHjbNzqjZQ85aAs1iJGto31EJaSTkNvHs5IXuHSaTLWBAiA=="
- },
- "protocolify": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/protocolify/-/protocolify-2.0.0.tgz",
- "integrity": "sha1-NpsmhREknXxewExwfIkWwfYkGZg=",
- "dev": true,
- "requires": {
- "file-url": "^2.0.0",
- "prepend-http": "^1.0.4"
- }
- },
- "pseudomap": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz",
- "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=",
- "dev": true
- },
- "psl": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz",
- "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==",
- "dev": true
- },
- "punycode": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
- "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="
- },
- "qs": {
- "version": "6.5.2",
- "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz",
- "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==",
- "dev": true
- },
- "query-string": {
- "version": "4.3.4",
- "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz",
- "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=",
- "dev": true,
- "requires": {
- "object-assign": "^4.1.0",
- "strict-uri-encode": "^1.0.0"
- }
- },
- "querystring": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz",
- "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA="
- },
- "queue-microtask": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
- "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="
- },
- "quickselect": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-1.1.1.tgz",
- "integrity": "sha512-qN0Gqdw4c4KGPsBOQafj6yj/PA6c/L63f6CaZ/DCF/xF4Esu3jVmKLUDYxghFx8Kb/O7y9tI7x2RjTSXwdK1iQ=="
- },
- "raf": {
- "version": "3.4.1",
- "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz",
- "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==",
- "requires": {
- "performance-now": "^2.1.0"
- }
- },
- "rbush": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/rbush/-/rbush-2.0.2.tgz",
- "integrity": "sha512-XBOuALcTm+O/H8G90b6pzu6nX6v2zCKiFG4BJho8a+bY6AER6t8uQUZdi5bomQc0AprCWhEGa7ncAbbRap0bRA==",
- "requires": {
- "quickselect": "^1.0.1"
- }
- },
- "rc": {
- "version": "1.2.8",
- "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
- "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
- "dev": true,
- "requires": {
- "deep-extend": "^0.6.0",
- "ini": "~1.3.0",
- "minimist": "^1.2.0",
- "strip-json-comments": "~2.0.1"
- }
- },
- "re-resizable": {
- "version": "4.11.0",
- "resolved": "https://registry.npmjs.org/re-resizable/-/re-resizable-4.11.0.tgz",
- "integrity": "sha512-dye+7rERqNf/6mDT1iwps+4Gf42420xuZgygF33uX178DxffqcyeuHbBuJ382FIcB5iP6mMZOhfW7kI0uXwb/Q=="
- },
- "react": {
- "version": "16.13.1",
- "resolved": "https://registry.npmjs.org/react/-/react-16.13.1.tgz",
- "integrity": "sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w==",
- "requires": {
- "loose-envify": "^1.1.0",
- "object-assign": "^4.1.1",
- "prop-types": "^15.6.2"
- }
- },
- "react-aria-menubutton": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/react-aria-menubutton/-/react-aria-menubutton-6.3.0.tgz",
- "integrity": "sha512-qlvbPgBDg+YreqrAsT2I0qpQfM7soRxA6dsTacogfCoVajcTEsgIPU3ewS7IzPvm+UMphK5Z8684WA2TNP3Zmg==",
- "requires": {
- "create-react-context": "^0.3.0",
- "focus-group": "^0.3.1",
- "prop-types": "^15.6.0",
- "react-display-name": "^0.2.4",
- "teeny-tap": "^0.2.0"
- }
- },
- "react-codemirror2": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/react-codemirror2/-/react-codemirror2-6.0.1.tgz",
- "integrity": "sha512-rutEKVgvFhWcy/GeVA1hFbqrO89qLqgqdhUr7YhYgIzdyICdlRQv+ztuNvOFQMXrO0fLt0VkaYOdMdYdQgsSUA=="
- },
- "react-datetime": {
- "version": "2.16.3",
- "resolved": "https://registry.npmjs.org/react-datetime/-/react-datetime-2.16.3.tgz",
- "integrity": "sha512-amWfb5iGEiyqjLmqCLlPpu2oN415jK8wX1qoTq7qn6EYiU7qQgbNHglww014PT4O/3G5eo/3kbJu/M/IxxTyGw==",
- "requires": {
- "create-react-class": "^15.5.2",
- "object-assign": "^3.0.0",
- "prop-types": "^15.5.7",
- "react-onclickoutside": "^6.5.0"
- },
- "dependencies": {
- "object-assign": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz",
- "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I="
- }
- }
- },
- "react-display-name": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/react-display-name/-/react-display-name-0.2.5.tgz",
- "integrity": "sha512-I+vcaK9t4+kypiSgaiVWAipqHRXYmZIuAiS8vzFvXHHXVigg/sMKwlRgLy6LH2i3rmP+0Vzfl5lFsFRwF1r3pg=="
- },
- "react-dnd": {
- "version": "7.7.0",
- "resolved": "https://registry.npmjs.org/react-dnd/-/react-dnd-7.7.0.tgz",
- "integrity": "sha512-anpJDKMgdXE6kXvtBFmIAe1fuaexpVy7meUyNjiTfCnjQ1mRvnttGTVvcW9fMKijsUQYadiyvzd3BRxteFuVXg==",
- "requires": {
- "@types/hoist-non-react-statics": "^3.3.1",
- "dnd-core": "^7.7.0",
- "hoist-non-react-statics": "^3.3.0",
- "invariant": "^2.1.0",
- "shallowequal": "^1.1.0"
- }
- },
- "react-dnd-html5-backend": {
- "version": "7.7.0",
- "resolved": "https://registry.npmjs.org/react-dnd-html5-backend/-/react-dnd-html5-backend-7.7.0.tgz",
- "integrity": "sha512-JgKmWOxqorFyfGPeWV+SAPhVGFe6+LrOR24jETE9rrYZU5hCppzwK9ujjS508kWibeDvbfEgi9j5qC2wB1/MoQ==",
- "requires": {
- "dnd-core": "^7.7.0"
- }
- },
- "react-dom": {
- "version": "16.13.1",
- "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.13.1.tgz",
- "integrity": "sha512-81PIMmVLnCNLO/fFOQxdQkvEq/+Hfpv24XNJfpyZhTRfO0QcmQIF/PgCa1zCOj2w1hrn12MFLyaJ/G0+Mxtfag==",
- "requires": {
- "loose-envify": "^1.1.0",
- "object-assign": "^4.1.1",
- "prop-types": "^15.6.2",
- "scheduler": "^0.19.1"
- }
- },
- "react-frame-component": {
- "version": "4.1.3",
- "resolved": "https://registry.npmjs.org/react-frame-component/-/react-frame-component-4.1.3.tgz",
- "integrity": "sha512-4PurhctiqnmC1F5prPZ+LdsalH7pZ3SFA5xoc0HBe8mSHctdLLt4Cr2WXfXOoajHBYq/yiipp9zOgx+vy8GiEA=="
- },
- "react-hot-loader": {
- "version": "4.12.21",
- "resolved": "https://registry.npmjs.org/react-hot-loader/-/react-hot-loader-4.12.21.tgz",
- "integrity": "sha512-Ynxa6ROfWUeKWsTHxsrL2KMzujxJVPjs385lmB2t5cHUxdoRPGind9F00tOkdc1l5WBleOF4XEAMILY1KPIIDA==",
- "requires": {
- "fast-levenshtein": "^2.0.6",
- "global": "^4.3.0",
- "hoist-non-react-statics": "^3.3.0",
- "loader-utils": "^1.1.0",
- "prop-types": "^15.6.1",
- "react-lifecycles-compat": "^3.0.4",
- "shallowequal": "^1.1.0",
- "source-map": "^0.7.3"
- },
- "dependencies": {
- "source-map": {
- "version": "0.7.3",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
- "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="
- }
- }
- },
- "react-immutable-proptypes": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/react-immutable-proptypes/-/react-immutable-proptypes-2.2.0.tgz",
- "integrity": "sha512-Vf4gBsePlwdGvSZoLSBfd4HAP93HDauMY4fDjXhreg/vg6F3Fj/MXDNyTbltPC/xZKmZc+cjLu3598DdYK6sgQ==",
- "requires": {
- "invariant": "^2.2.2"
- }
- },
- "react-input-autosize": {
- "version": "2.2.2",
- "resolved": "https://registry.npmjs.org/react-input-autosize/-/react-input-autosize-2.2.2.tgz",
- "integrity": "sha512-jQJgYCA3S0j+cuOwzuCd1OjmBmnZLdqQdiLKRYrsMMzbjUrVDS5RvJUDwJqA7sKuksDuzFtm6hZGKFu7Mjk5aw==",
- "requires": {
- "prop-types": "^15.5.8"
- }
- },
- "react-is": {
- "version": "16.13.1",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
- "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
- },
- "react-lifecycles-compat": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz",
- "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA=="
- },
- "react-modal": {
- "version": "3.11.2",
- "resolved": "https://registry.npmjs.org/react-modal/-/react-modal-3.11.2.tgz",
- "integrity": "sha512-o8gvvCOFaG1T7W6JUvsYjRjMVToLZgLIsi5kdhFIQCtHxDkA47LznX62j+l6YQkpXDbvQegsDyxe/+JJsFQN7w==",
- "requires": {
- "exenv": "^1.2.0",
- "prop-types": "^15.5.10",
- "react-lifecycles-compat": "^3.0.0",
- "warning": "^4.0.3"
- }
- },
- "react-onclickoutside": {
- "version": "6.9.0",
- "resolved": "https://registry.npmjs.org/react-onclickoutside/-/react-onclickoutside-6.9.0.tgz",
- "integrity": "sha512-8ltIY3bC7oGhj2nPAvWOGi+xGFybPNhJM0V1H8hY/whNcXgmDeaeoCMPPd8VatrpTsUWjb/vGzrmu6SrXVty3A=="
- },
- "react-polyglot": {
- "version": "0.7.0",
- "resolved": "https://registry.npmjs.org/react-polyglot/-/react-polyglot-0.7.0.tgz",
- "integrity": "sha512-BxwkKyr8bJXOl7H/9LzYc9yHzLxLTv00JTRVbayAsN4cUKKIJA1TTBdpRqkuGrt+nh9AC3h4cDqWx46zuGIcvg==",
- "requires": {
- "hoist-non-react-statics": "^3.3.0",
- "prop-types": "^15.5.8"
- }
- },
- "react-redux": {
- "version": "7.2.1",
- "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.1.tgz",
- "integrity": "sha512-T+VfD/bvgGTUA74iW9d2i5THrDQWbweXP0AVNI8tNd1Rk5ch1rnMiJkDD67ejw7YBKM4+REvcvqRuWJb7BLuEg==",
- "requires": {
- "@babel/runtime": "^7.5.5",
- "hoist-non-react-statics": "^3.3.0",
- "loose-envify": "^1.4.0",
- "prop-types": "^15.7.2",
- "react-is": "^16.9.0"
- }
- },
- "react-router": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.2.0.tgz",
- "integrity": "sha512-smz1DUuFHRKdcJC0jobGo8cVbhO3x50tCL4icacOlcwDOEQPq4TMqwx3sY1TP+DvtTgz4nm3thuo7A+BK2U0Dw==",
- "requires": {
- "@babel/runtime": "^7.1.2",
- "history": "^4.9.0",
- "hoist-non-react-statics": "^3.1.0",
- "loose-envify": "^1.3.1",
- "mini-create-react-context": "^0.4.0",
- "path-to-regexp": "^1.7.0",
- "prop-types": "^15.6.2",
- "react-is": "^16.6.0",
- "tiny-invariant": "^1.0.2",
- "tiny-warning": "^1.0.0"
- }
- },
- "react-router-dom": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.2.0.tgz",
- "integrity": "sha512-gxAmfylo2QUjcwxI63RhQ5G85Qqt4voZpUXSEqCwykV0baaOTQDR1f0PmY8AELqIyVc0NEZUj0Gov5lNGcXgsA==",
- "requires": {
- "@babel/runtime": "^7.1.2",
- "history": "^4.9.0",
- "loose-envify": "^1.3.1",
- "prop-types": "^15.6.2",
- "react-router": "5.2.0",
- "tiny-invariant": "^1.0.2",
- "tiny-warning": "^1.0.0"
- }
- },
- "react-scroll-sync": {
- "version": "0.8.0",
- "resolved": "https://registry.npmjs.org/react-scroll-sync/-/react-scroll-sync-0.8.0.tgz",
- "integrity": "sha512-Ms9srm41UM+lWexuqdocXjqaqqt6ZRSFxcudgB0sYhC7Or+m12WemTwY8BaQCRf7hA8zHDk55FHvMkqsH7gF+w=="
- },
- "react-select": {
- "version": "2.4.4",
- "resolved": "https://registry.npmjs.org/react-select/-/react-select-2.4.4.tgz",
- "integrity": "sha512-C4QPLgy9h42J/KkdrpVxNmkY6p4lb49fsrbDk/hRcZpX7JvZPNb6mGj+c5SzyEtBv1DmQ9oPH4NmhAFvCrg8Jw==",
- "requires": {
- "classnames": "^2.2.5",
- "emotion": "^9.1.2",
- "memoize-one": "^5.0.0",
- "prop-types": "^15.6.0",
- "raf": "^3.4.0",
- "react-input-autosize": "^2.2.1",
- "react-transition-group": "^2.2.1"
- },
- "dependencies": {
- "react-transition-group": {
- "version": "2.9.0",
- "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.9.0.tgz",
- "integrity": "sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==",
- "requires": {
- "dom-helpers": "^3.4.0",
- "loose-envify": "^1.4.0",
- "prop-types": "^15.6.2",
- "react-lifecycles-compat": "^3.0.4"
- }
- }
- }
- },
- "react-sortable-hoc": {
- "version": "1.11.0",
- "resolved": "https://registry.npmjs.org/react-sortable-hoc/-/react-sortable-hoc-1.11.0.tgz",
- "integrity": "sha512-v1CDCvdfoR3zLGNp6qsBa4J1BWMEVH25+UKxF/RvQRh+mrB+emqtVHMgZ+WreUiKJoEaiwYoScaueIKhMVBHUg==",
- "requires": {
- "@babel/runtime": "^7.2.0",
- "invariant": "^2.2.4",
- "prop-types": "^15.5.7"
- }
- },
- "react-split-pane": {
- "version": "0.1.91",
- "resolved": "https://registry.npmjs.org/react-split-pane/-/react-split-pane-0.1.91.tgz",
- "integrity": "sha512-8U56HOKQGFlvXXT1PaHbijjYy2W8g0iQaHC99Q2aV4yYfvUURcRGyfPKN3scGkbYN2pvy3qyoEwHyewUmR1VbQ==",
- "requires": {
- "prop-types": "^15.7.2",
- "react-lifecycles-compat": "^3.0.4",
- "react-style-proptype": "^3.2.2"
- }
- },
- "react-style-proptype": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/react-style-proptype/-/react-style-proptype-3.2.2.tgz",
- "integrity": "sha512-ywYLSjNkxKHiZOqNlso9PZByNEY+FTyh3C+7uuziK0xFXu9xzdyfHwg4S9iyiRRoPCR4k2LqaBBsWVmSBwCWYQ==",
- "requires": {
- "prop-types": "^15.5.4"
- }
- },
- "react-textarea-autosize": {
- "version": "7.1.2",
- "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-7.1.2.tgz",
- "integrity": "sha512-uH3ORCsCa3C6LHxExExhF4jHoXYCQwE5oECmrRsunlspaDAbS4mGKNlWZqjLfInWtFQcf0o1n1jC/NGXFdUBCg==",
- "requires": {
- "@babel/runtime": "^7.1.2",
- "prop-types": "^15.6.0"
- }
- },
- "react-toggled": {
- "version": "1.2.7",
- "resolved": "https://registry.npmjs.org/react-toggled/-/react-toggled-1.2.7.tgz",
- "integrity": "sha512-3am1uA5ZzDwUkReEuUkK+fJ0DAYcGiLraWEPqXfL1kKD/NHbbB7fB/t+5FflMGd+FA6n9hih1es4pui1yzKi0w=="
- },
- "react-topbar-progress-indicator": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/react-topbar-progress-indicator/-/react-topbar-progress-indicator-2.0.0.tgz",
- "integrity": "sha512-QEKsnwkjMvb10h7k+cFm0UeeVcRRIGhOJNqMQAbDyzSifPvlePk0KIcUb9dof2SkW7E5GaSxGsmXSpaFTYn43A==",
- "requires": {
- "topbar": "^0.1.3"
- }
- },
- "react-transition-group": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-1.2.1.tgz",
- "integrity": "sha512-CWaL3laCmgAFdxdKbhhps+c0HRGF4c+hdM4H23+FI1QBNUyx/AMeIJGWorehPNSaKnQNOAxL7PQmqMu78CDj3Q==",
- "requires": {
- "chain-function": "^1.0.0",
- "dom-helpers": "^3.2.0",
- "loose-envify": "^1.3.1",
- "prop-types": "^15.5.6",
- "warning": "^3.0.0"
- },
- "dependencies": {
- "warning": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/warning/-/warning-3.0.0.tgz",
- "integrity": "sha1-MuU3fLVy3kqwR1O9+IIcAe1gW3w=",
- "requires": {
- "loose-envify": "^1.0.0"
- }
- }
- }
- },
- "react-virtualized-auto-sizer": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/react-virtualized-auto-sizer/-/react-virtualized-auto-sizer-1.0.2.tgz",
- "integrity": "sha512-MYXhTY1BZpdJFjUovvYHVBmkq79szK/k7V3MO+36gJkWGkrXKtyr4vCPtpphaTLRAdDNoYEYFZWE8LjN+PIHNg=="
- },
- "react-waypoint": {
- "version": "9.0.3",
- "resolved": "https://registry.npmjs.org/react-waypoint/-/react-waypoint-9.0.3.tgz",
- "integrity": "sha512-NRmyjW8CUBNNl4WpvBqLDgBs18rFUsixeHVHrRrFlWTdOlWP7eiDjptqlR/cJAPLD6RwP5XFCm3bi9OiofN3nA==",
- "requires": {
- "consolidated-events": "^1.1.0 || ^2.0.0",
- "prop-types": "^15.0.0",
- "react-is": "^16.6.3"
- }
- },
- "react-window": {
- "version": "1.8.5",
- "resolved": "https://registry.npmjs.org/react-window/-/react-window-1.8.5.tgz",
- "integrity": "sha512-HeTwlNa37AFa8MDZFZOKcNEkuF2YflA0hpGPiTT9vR7OawEt+GZbfM6wqkBahD3D3pUjIabQYzsnY/BSJbgq6Q==",
- "requires": {
- "@babel/runtime": "^7.0.0",
- "memoize-one": ">=3.1.1 <6"
- }
- },
- "read-pkg": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz",
- "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=",
- "dev": true,
- "requires": {
- "load-json-file": "^1.0.0",
- "normalize-package-data": "^2.3.2",
- "path-type": "^1.0.0"
- }
- },
- "read-pkg-up": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz",
- "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=",
- "dev": true,
- "requires": {
- "find-up": "^1.0.0",
- "read-pkg": "^1.0.0"
- },
- "dependencies": {
- "find-up": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz",
- "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=",
- "dev": true,
- "requires": {
- "path-exists": "^2.0.0",
- "pinkie-promise": "^2.0.0"
- }
- },
- "path-exists": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz",
- "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=",
- "dev": true,
- "requires": {
- "pinkie-promise": "^2.0.0"
- }
- }
- }
- },
- "readable-stream": {
- "version": "2.3.7",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
- "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
- "dev": true,
- "requires": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
- }
- },
- "receptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/receptor/-/receptor-1.0.0.tgz",
- "integrity": "sha1-v1RHfgOH5Evr84VRILvaWt6gj4s=",
- "requires": {
- "element-closest": "^2.0.1",
- "keyboardevent-key-polyfill": "^1.0.2",
- "matches-selector": "^1.0.0",
- "object-assign": "^4.1.0"
- }
- },
- "redent": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz",
- "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=",
- "dev": true,
- "requires": {
- "indent-string": "^2.1.0",
- "strip-indent": "^1.0.1"
- },
- "dependencies": {
- "indent-string": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz",
- "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=",
- "dev": true,
- "requires": {
- "repeating": "^2.0.0"
- }
- }
- }
- },
- "redux": {
- "version": "4.0.5",
- "resolved": "https://registry.npmjs.org/redux/-/redux-4.0.5.tgz",
- "integrity": "sha512-VSz1uMAH24DM6MF72vcojpYPtrTUu3ByVWfPL1nPfVRb5mZVTve5GnNCUV53QM/BZ66xfWrm0CTWoM+Xlz8V1w==",
- "requires": {
- "loose-envify": "^1.4.0",
- "symbol-observable": "^1.2.0"
- }
- },
- "redux-notifications": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/redux-notifications/-/redux-notifications-4.0.1.tgz",
- "integrity": "sha512-mRVaEcsvu5B4P8x8kW0uY83EQqaWL/0+/NvL4bdbHGJVg+Rwx54MgBU1s+tB6RAA2E6NX/DmQrO4EbFDcQSi+w==",
- "requires": {
- "object-assign": "^4.1.1",
- "prop-types": "^15.5.10",
- "react-redux": "^4.0.0",
- "react-transition-group": "^1.1.3"
- },
- "dependencies": {
- "react-redux": {
- "version": "4.4.10",
- "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-4.4.10.tgz",
- "integrity": "sha512-tjL0Bmpkj75Td0k+lXlF8Fc8a9GuXFv/3ahUOCXExWs/jhsKiQeTffdH0j5byejCGCRL4tvGFYlrwBF1X/Aujg==",
- "requires": {
- "create-react-class": "^15.5.1",
- "hoist-non-react-statics": "^3.3.0",
- "invariant": "^2.0.0",
- "lodash": "^4.17.11",
- "loose-envify": "^1.4.0",
- "prop-types": "^15.7.2"
- }
- }
- }
- },
- "redux-optimist": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/redux-optimist/-/redux-optimist-1.0.0.tgz",
- "integrity": "sha512-AG1v8o6UZcGXTEH2jVcWG6KD+gEix+Cj9JXAAzln9MPkauSVd98H7N7EOOyT/v4c9N1mJB4sm1zfspGlLDkUEw=="
- },
- "redux-thunk": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.3.0.tgz",
- "integrity": "sha512-km6dclyFnmcvxhAcrQV2AkZmPQjzPDjgVlQtR0EQjxZPyJ0BnMf3in1ryuR8A2qU0HldVRfxYXbFSKlI3N7Slw=="
- },
- "regenerator-runtime": {
- "version": "0.13.7",
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz",
- "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew=="
- },
- "registry-auth-token": {
- "version": "3.4.0",
- "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.4.0.tgz",
- "integrity": "sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A==",
- "dev": true,
- "requires": {
- "rc": "^1.1.6",
- "safe-buffer": "^5.0.1"
- }
- },
- "registry-url": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz",
- "integrity": "sha1-PU74cPc93h138M+aOBQyRE4XSUI=",
- "dev": true,
- "requires": {
- "rc": "^1.0.1"
- }
- },
- "rehype-minify-whitespace": {
- "version": "4.0.4",
- "resolved": "https://registry.npmjs.org/rehype-minify-whitespace/-/rehype-minify-whitespace-4.0.4.tgz",
- "integrity": "sha512-/dhWxk0moCemEVsHNrmZnY7Bu4/0KtmwqT/4YDRvrurGBWjm6+vtzuTglLxHMbWTha4DibKvngg9gKb58KsoBw==",
- "requires": {
- "collapse-white-space": "^1.0.0",
- "hast-util-embedded": "^1.0.0",
- "hast-util-is-element": "^1.0.0",
- "hast-util-whitespace": "^1.0.4",
- "unist-util-is": "^4.0.0"
- },
- "dependencies": {
- "unist-util-is": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.0.2.tgz",
- "integrity": "sha512-Ofx8uf6haexJwI1gxWMGg6I/dLnF2yE+KibhD3/diOqY2TinLcqHXCV6OI5gFVn3xQqDH+u0M625pfKwIwgBKQ=="
- }
- }
- },
- "rehype-parse": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/rehype-parse/-/rehype-parse-6.0.2.tgz",
- "integrity": "sha512-0S3CpvpTAgGmnz8kiCyFLGuW5yA4OQhyNTm/nwPopZ7+PI11WnGl1TTWTGv/2hPEe/g2jRLlhVVSsoDH8waRug==",
- "requires": {
- "hast-util-from-parse5": "^5.0.0",
- "parse5": "^5.0.0",
- "xtend": "^4.0.0"
- }
- },
- "rehype-remark": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/rehype-remark/-/rehype-remark-8.0.0.tgz",
- "integrity": "sha512-d1EmgsqWc1v9E/URuzozU8pa4AYHIcfOMLhgzQRHeaxYyMHJKIrpBMdRhl+IbqcHLD699Ho/vO+DpSZgKsGM8Q==",
- "requires": {
- "hast-util-to-mdast": "^7.0.0"
- }
- },
- "rehype-stringify": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/rehype-stringify/-/rehype-stringify-7.0.0.tgz",
- "integrity": "sha512-u3dQI7mIWN2X1H0MBFPva425HbkXgB+M39C9SM5leUS2kh5hHUn2SxQs2c2yZN5eIHipoLMojC0NP5e8fptxvQ==",
- "requires": {
- "hast-util-to-html": "^7.0.0",
- "xtend": "^4.0.0"
- }
- },
- "remark-parse": {
- "version": "6.0.3",
- "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-6.0.3.tgz",
- "integrity": "sha512-QbDXWN4HfKTUC0hHa4teU463KclLAnwpn/FBn87j9cKYJWWawbiLgMfP2Q4XwhxxuuuOxHlw+pSN0OKuJwyVvg==",
- "requires": {
- "collapse-white-space": "^1.0.2",
- "is-alphabetical": "^1.0.0",
- "is-decimal": "^1.0.0",
- "is-whitespace-character": "^1.0.0",
- "is-word-character": "^1.0.0",
- "markdown-escapes": "^1.0.0",
- "parse-entities": "^1.1.0",
- "repeat-string": "^1.5.4",
- "state-toggle": "^1.0.0",
- "trim": "0.0.1",
- "trim-trailing-lines": "^1.0.0",
- "unherit": "^1.0.4",
- "unist-util-remove-position": "^1.0.0",
- "vfile-location": "^2.0.0",
- "xtend": "^4.0.1"
- }
- },
- "remark-rehype": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-4.0.1.tgz",
- "integrity": "sha512-k1GzhtRhXr1sZjX86OS7H4asQu5uOM9Tro//SpOdRaxax6o43mr7M7Np20ubJ+GM6eYjlEHtPv1rDN2hXs2plw==",
- "requires": {
- "mdast-util-to-hast": "^4.0.0"
- }
- },
- "remark-stringify": {
- "version": "6.0.4",
- "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-6.0.4.tgz",
- "integrity": "sha512-eRWGdEPMVudijE/psbIDNcnJLRVx3xhfuEsTDGgH4GsFF91dVhw5nhmnBppafJ7+NWINW6C7ZwWbi30ImJzqWg==",
- "requires": {
- "ccount": "^1.0.0",
- "is-alphanumeric": "^1.0.0",
- "is-decimal": "^1.0.0",
- "is-whitespace-character": "^1.0.0",
- "longest-streak": "^2.0.1",
- "markdown-escapes": "^1.0.0",
- "markdown-table": "^1.1.0",
- "mdast-util-compact": "^1.0.0",
- "parse-entities": "^1.0.2",
- "repeat-string": "^1.5.4",
- "state-toggle": "^1.0.0",
- "stringify-entities": "^1.0.1",
- "unherit": "^1.0.4",
- "xtend": "^4.0.1"
- },
- "dependencies": {
- "stringify-entities": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-1.3.2.tgz",
- "integrity": "sha512-nrBAQClJAPN2p+uGCVJRPIPakKeKWZ9GtBCmormE7pWOSlHat7+x5A8gx85M7HM5Dt0BP3pP5RhVW77WdbJJ3A==",
- "requires": {
- "character-entities-html4": "^1.0.0",
- "character-entities-legacy": "^1.0.0",
- "is-alphanumerical": "^1.0.0",
- "is-hexadecimal": "^1.0.0"
- }
- }
- }
- },
- "repeat-string": {
- "version": "1.6.1",
- "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz",
- "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc="
- },
- "repeating": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz",
- "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=",
- "dev": true,
- "requires": {
- "is-finite": "^1.0.0"
- }
- },
- "replace-ext": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz",
- "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs="
- },
- "request": {
- "version": "2.88.2",
- "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz",
- "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==",
- "dev": true,
- "requires": {
- "aws-sign2": "~0.7.0",
- "aws4": "^1.8.0",
- "caseless": "~0.12.0",
- "combined-stream": "~1.0.6",
- "extend": "~3.0.2",
- "forever-agent": "~0.6.1",
- "form-data": "~2.3.2",
- "har-validator": "~5.1.3",
- "http-signature": "~1.2.0",
- "is-typedarray": "~1.0.0",
- "isstream": "~0.1.2",
- "json-stringify-safe": "~5.0.1",
- "mime-types": "~2.1.19",
- "oauth-sign": "~0.9.0",
- "performance-now": "^2.1.0",
- "qs": "~6.5.2",
- "safe-buffer": "^5.1.2",
- "tough-cookie": "~2.5.0",
- "tunnel-agent": "^0.6.0",
- "uuid": "^3.3.2"
- }
- },
- "request-progress": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-2.0.1.tgz",
- "integrity": "sha1-XTa7V5YcZzqlt4jbyBQf3yO0Tgg=",
- "dev": true,
- "requires": {
- "throttleit": "^1.0.0"
- }
- },
- "resolve": {
- "version": "1.13.1",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.13.1.tgz",
- "integrity": "sha512-CxqObCX8K8YtAhOBRg+lrcdn+LK+WYOS8tSjqSFbjtrI5PnS63QPhZl4+yKfrU9tdsbMu9Anr/amegT87M9Z6w==",
- "requires": {
- "path-parse": "^1.0.6"
- }
- },
- "resolve-from": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
- "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="
- },
- "resolve-id-refs": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/resolve-id-refs/-/resolve-id-refs-0.1.0.tgz",
- "integrity": "sha1-MSZiS4h0idqPwK6IljL4QTrGw+w="
- },
- "resolve-pathname": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz",
- "integrity": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng=="
- },
- "resolve-protobuf-schema": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/resolve-protobuf-schema/-/resolve-protobuf-schema-2.1.0.tgz",
- "integrity": "sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==",
- "requires": {
- "protocol-buffers-schema": "^3.3.1"
- }
- },
- "reusify": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
- "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="
- },
- "rimraf": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
- "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
- "requires": {
- "glob": "^7.1.3"
- }
- },
- "run-parallel": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
- "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
- "requires": {
- "queue-microtask": "^1.2.2"
- }
- },
- "safe-buffer": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
- "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
- },
- "safer-buffer": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
- "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
- },
- "sanitize-filename": {
- "version": "1.6.3",
- "resolved": "https://registry.npmjs.org/sanitize-filename/-/sanitize-filename-1.6.3.tgz",
- "integrity": "sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==",
- "requires": {
- "truncate-utf8-bytes": "^1.0.0"
- }
- },
- "scheduler": {
- "version": "0.19.1",
- "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.19.1.tgz",
- "integrity": "sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==",
- "requires": {
- "loose-envify": "^1.1.0",
- "object-assign": "^4.1.1"
- }
- },
- "section-matter": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz",
- "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==",
- "requires": {
- "extend-shallow": "^2.0.1",
- "kind-of": "^6.0.0"
- }
- },
- "selection-is-backward": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/selection-is-backward/-/selection-is-backward-1.0.0.tgz",
- "integrity": "sha1-l6VGMxiKURq6ZBn8XB+pG0Z+a+E="
- },
- "semaphore": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/semaphore/-/semaphore-1.1.0.tgz",
- "integrity": "sha512-O4OZEaNtkMd/K0i6js9SL+gqy0ZCBMgUvlSqHKi4IBdjhe7wB8pwztUk1BbZ1fmrvpwFrPbHzqd2w5pTcJH6LA=="
- },
- "semver": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
- "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
- "dev": true
- },
- "semver-diff": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz",
- "integrity": "sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=",
- "dev": true,
- "requires": {
- "semver": "^5.0.3"
- }
- },
- "set-immediate-shim": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz",
- "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=",
- "dev": true
- },
- "setimmediate": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
- "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU="
- },
- "shallowequal": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz",
- "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ=="
- },
- "shebang-command": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
- "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
- "dev": true,
- "requires": {
- "shebang-regex": "^1.0.0"
- }
- },
- "shebang-regex": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
- "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
- "dev": true
- },
- "signal-exit": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz",
- "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==",
- "dev": true
- },
- "slash": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="
- },
- "slate": {
- "version": "0.47.9",
- "resolved": "https://registry.npmjs.org/slate/-/slate-0.47.9.tgz",
- "integrity": "sha512-EK4O6b7lGt+g5H9PGw9O5KCM4RrOvOgE9mPi3rzQ0zDRlgAb2ga4TdpS6XNQbrsJWsc8I1fjaSsUeCqCUhhi9A==",
- "requires": {
- "debug": "^3.1.0",
- "direction": "^0.1.5",
- "esrever": "^0.2.0",
- "is-plain-object": "^2.0.4",
- "lodash": "^4.17.4",
- "tiny-invariant": "^1.0.1",
- "tiny-warning": "^0.0.3",
- "type-of": "^2.0.1"
- },
+ "node_modules/once": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
+ "license": "ISC",
"dependencies": {
- "debug": {
- "version": "3.2.6",
- "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
- "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
- "requires": {
- "ms": "^2.1.1"
- }
- },
- "ms": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
- "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
- },
- "tiny-warning": {
- "version": "0.0.3",
- "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-0.0.3.tgz",
- "integrity": "sha512-r0SSA5Y5IWERF9Xh++tFPx0jITBgGggOsRLDWWew6YRw/C2dr4uNO1fw1vanrBmHsICmPyMLNBZboTlxUmUuaA=="
- }
- }
- },
- "slate-base64-serializer": {
- "version": "0.2.115",
- "resolved": "https://registry.npmjs.org/slate-base64-serializer/-/slate-base64-serializer-0.2.115.tgz",
- "integrity": "sha512-GnLV7bUW/UQ5j7rVIxCU5zdB6NOVsEU6YWsCp68dndIjSGTGLaQv2+WwV3NcnrGGZEYe5qgo33j2QWrPws2C1A==",
- "requires": {
- "isomorphic-base64": "^1.0.2"
- }
- },
- "slate-dev-environment": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/slate-dev-environment/-/slate-dev-environment-0.2.5.tgz",
- "integrity": "sha512-oLD8Fclv/RqrDv6RYfN2CRzNcRXsUB99Qgcw5L/njTjxAdDPguV6edQ3DgUG9Q2pLFLhI15DwsKClzVfFzfwGQ==",
- "requires": {
- "is-in-browser": "^1.1.3"
+ "wrappy": "1"
}
},
- "slate-hotkeys": {
- "version": "0.2.11",
- "resolved": "https://registry.npmjs.org/slate-hotkeys/-/slate-hotkeys-0.2.11.tgz",
- "integrity": "sha512-xhq/TlI74dRbO57O4ulGsvCcV4eaQ5nEEz9noZjeNLtNzFRd6lSgExRqAJqKGGIeJw+FnJ3OcqGvdb5CEc9/Ew==",
- "requires": {
- "is-hotkey": "0.1.4",
- "slate-dev-environment": "^0.2.2"
- },
+ "node_modules/p-map": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
+ "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
+ "license": "MIT",
"dependencies": {
- "is-hotkey": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/is-hotkey/-/is-hotkey-0.1.4.tgz",
- "integrity": "sha512-Py+aW4r5mBBY18TGzGz286/gKS+fCQ0Hee3qkaiSmEPiD0PqFpe0wuA3l7rTOUKyeXl8Mxf3XzJxIoTlSv+kxA=="
- }
- }
- },
- "slate-plain-serializer": {
- "version": "0.7.13",
- "resolved": "https://registry.npmjs.org/slate-plain-serializer/-/slate-plain-serializer-0.7.13.tgz",
- "integrity": "sha512-TtrlaslxQBEMV0LYdf3s7VAbTxRPe1xaW10WNNGAzGA855/0RhkaHjKkQiRjHv5rvbRleVf7Nxr9fH+4uErfxQ=="
- },
- "slate-prop-types": {
- "version": "0.5.44",
- "resolved": "https://registry.npmjs.org/slate-prop-types/-/slate-prop-types-0.5.44.tgz",
- "integrity": "sha512-JS0iW7uaciE/W3ADuzeN1HOnSjncQhHPXJ65nZNQzB0DF7mXVmbwQKI6cmCo/xKni7XRJT0JbWSpXFhEdPiBUA=="
- },
- "slate-react": {
- "version": "0.22.10",
- "resolved": "https://registry.npmjs.org/slate-react/-/slate-react-0.22.10.tgz",
- "integrity": "sha512-B2Ms1u/REbdd8yKkOItKgrw/tX8klgz5l5x6PP86+oh/yqmB6EHe0QyrYlQ9fc3WBlJUVTOL+nyAP1KmlKj2/w==",
- "requires": {
- "debug": "^3.1.0",
- "get-window": "^1.1.1",
- "is-window": "^1.0.2",
- "lodash": "^4.1.1",
- "memoize-one": "^4.0.0",
- "prop-types": "^15.5.8",
- "react-immutable-proptypes": "^2.1.0",
- "selection-is-backward": "^1.0.0",
- "slate-base64-serializer": "^0.2.112",
- "slate-dev-environment": "^0.2.2",
- "slate-hotkeys": "^0.2.9",
- "slate-plain-serializer": "^0.7.11",
- "slate-prop-types": "^0.5.42",
- "slate-react-placeholder": "^0.2.9",
- "tiny-invariant": "^1.0.1",
- "tiny-warning": "^0.0.3"
+ "aggregate-error": "^3.0.0"
},
- "dependencies": {
- "debug": {
- "version": "3.2.6",
- "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
- "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
- "requires": {
- "ms": "^2.1.1"
- }
- },
- "memoize-one": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-4.0.3.tgz",
- "integrity": "sha512-QmpUu4KqDmX0plH4u+tf0riMc1KHE1+lw95cMrLlXQAFOx/xnBtwhZ52XJxd9X2O6kwKBqX32kmhbhlobD0cuw=="
- },
- "ms": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
- "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
- },
- "tiny-warning": {
- "version": "0.0.3",
- "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-0.0.3.tgz",
- "integrity": "sha512-r0SSA5Y5IWERF9Xh++tFPx0jITBgGggOsRLDWWew6YRw/C2dr4uNO1fw1vanrBmHsICmPyMLNBZboTlxUmUuaA=="
- }
- }
- },
- "slate-react-placeholder": {
- "version": "0.2.9",
- "resolved": "https://registry.npmjs.org/slate-react-placeholder/-/slate-react-placeholder-0.2.9.tgz",
- "integrity": "sha512-YSJ9Gb4tGpbzPje3eNKtu26hWM8ApxTk9RzjK+6zfD5V/RMTkuWONk24y6c9lZk0OAYNZNUmrnb/QZfU3j9nag=="
- },
- "slate-soft-break": {
- "version": "0.9.0",
- "resolved": "https://registry.npmjs.org/slate-soft-break/-/slate-soft-break-0.9.0.tgz",
- "integrity": "sha512-iTy2bl/G+tphN10YQBOPDRxDqgM46ZH1UUz0ublmL6PLtwJ3jJK1n08w37YxnY/ge4aW31UN386KV6qvFx6Hsw=="
- },
- "sort-keys": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz",
- "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=",
- "dev": true,
- "requires": {
- "is-plain-obj": "^1.0.0"
- }
- },
- "source-map": {
- "version": "0.5.7",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
- "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
- },
- "space-separated-tokens": {
- "version": "1.1.5",
- "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz",
- "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA=="
- },
- "spdx-correct": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz",
- "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==",
- "dev": true,
- "requires": {
- "spdx-expression-parse": "^3.0.0",
- "spdx-license-ids": "^3.0.0"
- }
- },
- "spdx-exceptions": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz",
- "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==",
- "dev": true
- },
- "spdx-expression-parse": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
- "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
- "dev": true,
- "requires": {
- "spdx-exceptions": "^2.1.0",
- "spdx-license-ids": "^3.0.0"
- }
- },
- "spdx-license-ids": {
- "version": "3.0.5",
- "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz",
- "integrity": "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==",
- "dev": true
- },
- "sprintf-js": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
- "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw="
- },
- "sshpk": {
- "version": "1.16.1",
- "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz",
- "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==",
- "dev": true,
- "requires": {
- "asn1": "~0.2.3",
- "assert-plus": "^1.0.0",
- "bcrypt-pbkdf": "^1.0.0",
- "dashdash": "^1.12.0",
- "ecc-jsbn": "~0.1.1",
- "getpass": "^0.1.1",
- "jsbn": "~0.1.0",
- "safer-buffer": "^2.0.2",
- "tweetnacl": "~0.14.0"
- }
- },
- "state-toggle": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/state-toggle/-/state-toggle-1.0.3.tgz",
- "integrity": "sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ=="
- },
- "strict-uri-encode": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz",
- "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=",
- "dev": true
- },
- "string-width": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
- "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
- "dev": true,
- "requires": {
- "is-fullwidth-code-point": "^2.0.0",
- "strip-ansi": "^4.0.0"
+ "engines": {
+ "node": ">=10"
},
- "dependencies": {
- "ansi-regex": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
- "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
- "dev": true
- },
- "strip-ansi": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
- "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
- "dev": true,
- "requires": {
- "ansi-regex": "^3.0.0"
- }
- }
- }
- },
- "string.prototype.trim": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.1.tgz",
- "integrity": "sha512-MjGFEeqixw47dAMFMtgUro/I0+wNqZB5GKXGt1fFr24u3TzDXCPu7J9Buppzoe3r/LqkSDLDDJzE15RGWDGAVw==",
- "requires": {
- "define-properties": "^1.1.3",
- "es-abstract": "^1.17.0-next.1",
- "function-bind": "^1.1.1"
- }
- },
- "string.prototype.trimend": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz",
- "integrity": "sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g==",
- "requires": {
- "define-properties": "^1.1.3",
- "es-abstract": "^1.17.5"
- }
- },
- "string.prototype.trimstart": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz",
- "integrity": "sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw==",
- "requires": {
- "define-properties": "^1.1.3",
- "es-abstract": "^1.17.5"
- }
- },
- "string_decoder": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
- "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
- "dev": true,
- "requires": {
- "safe-buffer": "~5.1.0"
- }
- },
- "stringify-entities": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-3.0.1.tgz",
- "integrity": "sha512-Lsk3ISA2++eJYqBMPKcr/8eby1I6L0gP0NlxF8Zja6c05yr/yCYyb2c9PwXjd08Ib3If1vn1rbs1H5ZtVuOfvQ==",
- "requires": {
- "character-entities-html4": "^1.0.0",
- "character-entities-legacy": "^1.0.0",
- "is-alphanumerical": "^1.0.0",
- "is-decimal": "^1.0.2",
- "is-hexadecimal": "^1.0.0"
- }
- },
- "strip-ansi": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
- "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
- "dev": true,
- "requires": {
- "ansi-regex": "^2.0.0"
- }
- },
- "strip-bom": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz",
- "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=",
- "dev": true,
- "requires": {
- "is-utf8": "^0.2.0"
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "strip-bom-string": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz",
- "integrity": "sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI="
- },
- "strip-eof": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz",
- "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=",
- "dev": true
- },
- "strip-indent": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz",
- "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=",
- "dev": true,
- "requires": {
- "get-stdin": "^4.0.1"
- }
- },
- "strip-json-comments": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
- "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=",
- "dev": true
- },
- "strip-url-auth": {
+ "node_modules/path-is-absolute": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/strip-url-auth/-/strip-url-auth-1.0.1.tgz",
- "integrity": "sha1-IrD6OkE4WzO+PzMVUbu4N/oM164=",
- "dev": true
- },
- "stylis": {
- "version": "3.5.4",
- "resolved": "https://registry.npmjs.org/stylis/-/stylis-3.5.4.tgz",
- "integrity": "sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q=="
- },
- "stylis-rule-sheet": {
- "version": "0.0.10",
- "resolved": "https://registry.npmjs.org/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz",
- "integrity": "sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw=="
- },
- "supports-color": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
- "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
- "dev": true
- },
- "symbol-observable": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz",
- "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ=="
- },
- "teeny-tap": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/teeny-tap/-/teeny-tap-0.2.0.tgz",
- "integrity": "sha1-Fn5kUYLQasIi1iuyq2eUenClimg="
- },
- "term-size": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz",
- "integrity": "sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=",
- "dev": true,
- "requires": {
- "execa": "^0.7.0"
- }
- },
- "throttleit": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz",
- "integrity": "sha1-nnhYNtr0Z0MUWlmEtiaNgoUorGw=",
- "dev": true
- },
- "timed-out": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz",
- "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=",
- "dev": true
- },
- "tiny-invariant": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.1.0.tgz",
- "integrity": "sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw=="
- },
- "tiny-warning": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz",
- "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA=="
- },
- "to-fast-properties": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
- "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4="
- },
- "to-regex-range": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
- "requires": {
- "is-number": "^7.0.0"
+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
+ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "tomlify-j0.4": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/tomlify-j0.4/-/tomlify-j0.4-3.0.0.tgz",
- "integrity": "sha512-2Ulkc8T7mXJ2l0W476YC/A209PR38Nw8PuaCNtk9uI3t1zzFdGQeWYGQvmj2PZkVvRC/Yoi4xQKMRnWc/N29tQ=="
- },
- "topbar": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/topbar/-/topbar-0.1.4.tgz",
- "integrity": "sha512-P3n4WnN4GFd2mQXDo30rQmsAGe4V1bVkggtTreSbNyL50Fyc+eVkW5oatSLeGQmJoan2TLIgoXUZypN+6nw4MQ=="
- },
- "touch": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/touch/-/touch-2.0.2.tgz",
- "integrity": "sha512-qjNtvsFXTRq7IuMLweVgFxmEuQ6gLbRs2jQxL80TtZ31dEKWYIxRXquij6w6VimyDek5hD3PytljHmEtAs2u0A==",
- "requires": {
- "nopt": "~1.0.10"
+ "node_modules/path-type": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
+ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
}
},
- "tough-cookie": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz",
- "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==",
- "dev": true,
- "requires": {
- "psl": "^1.1.28",
- "punycode": "^2.1.1"
+ "node_modules/picomatch": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
}
},
- "trim": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz",
- "integrity": "sha1-WFhUf2spB1fulczMZm+1AITEYN0="
- },
- "trim-lines": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-1.1.3.tgz",
- "integrity": "sha512-E0ZosSWYK2mkSu+KEtQ9/KqarVjA9HztOSX+9FDdNacRAq29RRV6ZQNgob3iuW8Htar9vAfEa6yyt5qBAHZDBA=="
+ "node_modules/queue-microtask": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
+ "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
},
- "trim-newlines": {
+ "node_modules/receptor": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz",
- "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=",
- "dev": true
- },
- "trim-trailing-lines": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.3.tgz",
- "integrity": "sha512-4ku0mmjXifQcTVfYDfR5lpgV7zVqPg6zV9rdZmwOPqq0+Zq19xDqEgagqVbc4pOOShbncuAOIs59R3+3gcF3ZA=="
- },
- "trough": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz",
- "integrity": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA=="
- },
- "truncate-utf8-bytes": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz",
- "integrity": "sha1-QFkjkJWS1W94pYGENLC3hInKXys=",
- "requires": {
- "utf8-byte-length": "^1.0.1"
- }
- },
- "ts-invariant": {
- "version": "0.4.4",
- "resolved": "https://registry.npmjs.org/ts-invariant/-/ts-invariant-0.4.4.tgz",
- "integrity": "sha512-uEtWkFM/sdZvRNNDL3Ehu4WVpwaulhwQszV8mrtcdeE8nN00BV9mAmQ88RkrBhFgl9gMgvjJLAQcZbnPXI9mlA==",
- "requires": {
- "tslib": "^1.9.3"
- }
- },
- "tslib": {
- "version": "1.13.0",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz",
- "integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q=="
- },
- "tunnel-agent": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
- "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
- "dev": true,
- "requires": {
- "safe-buffer": "^5.0.1"
- }
- },
- "tweetnacl": {
- "version": "0.14.5",
- "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
- "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=",
- "dev": true
- },
- "type-of": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/type-of/-/type-of-2.0.1.tgz",
- "integrity": "sha1-5yoXQYllaOn2KDeNgW1pEvfyOXI="
- },
- "typedarray": {
- "version": "0.0.6",
- "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
- "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=",
- "dev": true
- },
- "ua-parser-js": {
- "version": "0.7.21",
- "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.21.tgz",
- "integrity": "sha512-+O8/qh/Qj8CgC6eYBVBykMrNtp5Gebn4dlGD/kKXVkJNDwyrAwSIqwz8CDf+tsAIWVycKcku6gIXJ0qwx/ZXaQ=="
- },
- "unherit": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/unherit/-/unherit-1.1.3.tgz",
- "integrity": "sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==",
- "requires": {
- "inherits": "^2.0.0",
- "xtend": "^4.0.0"
- }
- },
- "unified": {
- "version": "7.1.0",
- "resolved": "https://registry.npmjs.org/unified/-/unified-7.1.0.tgz",
- "integrity": "sha512-lbk82UOIGuCEsZhPj8rNAkXSDXd6p0QLzIuSsCdxrqnqU56St4eyOB+AlXsVgVeRmetPTYydIuvFfpDIed8mqw==",
- "requires": {
- "@types/unist": "^2.0.0",
- "@types/vfile": "^3.0.0",
- "bail": "^1.0.0",
- "extend": "^3.0.0",
- "is-plain-obj": "^1.1.0",
- "trough": "^1.0.0",
- "vfile": "^3.0.0",
- "x-is-string": "^0.1.0"
+ "resolved": "https://registry.npmjs.org/receptor/-/receptor-1.0.0.tgz",
+ "integrity": "sha512-yvVEqVQDNzEmGkluCkEdbKSXqZb3WGxotI/VukXIQ+4/BXEeXVjWtmC6jWaR1BIsmEAGYQy3OTaNgDj2Svr01w==",
+ "license": "CC0-1.0",
+ "dependencies": {
+ "element-closest": "^2.0.1",
+ "keyboardevent-key-polyfill": "^1.0.2",
+ "matches-selector": "^1.0.0",
+ "object-assign": "^4.1.0"
}
},
- "unique-string": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz",
- "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=",
- "dev": true,
- "requires": {
- "crypto-random-string": "^1.0.0"
- }
+ "node_modules/resolve-id-refs": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/resolve-id-refs/-/resolve-id-refs-0.1.0.tgz",
+ "integrity": "sha512-hNS03NEmVpJheF7yfyagNh57XuKc0z+NkSO0oBbeO67o6IJKoqlDfnNIxhjp7aTWwjmSWZQhtiGrOgZXVyM90w==",
+ "license": "CC0-1.0"
},
- "unist-builder": {
+ "node_modules/reusify": {
"version": "1.0.4",
- "resolved": "https://registry.npmjs.org/unist-builder/-/unist-builder-1.0.4.tgz",
- "integrity": "sha512-v6xbUPP7ILrT15fHGrNyHc1Xda8H3xVhP7/HAIotHOhVPjH5dCXA097C3Rry1Q2O+HbOLCao4hfPB+EYEjHgVg==",
- "requires": {
- "object-assign": "^4.1.0"
+ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
+ "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
+ "license": "MIT",
+ "engines": {
+ "iojs": ">=1.0.0",
+ "node": ">=0.10.0"
}
},
- "unist-util-find-after": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/unist-util-find-after/-/unist-util-find-after-3.0.0.tgz",
- "integrity": "sha512-ojlBqfsBftYXExNu3+hHLfJQ/X1jYY/9vdm4yZWjIbf0VuWF6CRufci1ZyoD/wV2TYMKxXUoNuoqwy+CkgzAiQ==",
- "requires": {
- "unist-util-is": "^4.0.0"
- },
+ "node_modules/rimraf": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
+ "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
+ "deprecated": "Rimraf versions prior to v4 are no longer supported",
+ "license": "ISC",
"dependencies": {
- "unist-util-is": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.0.2.tgz",
- "integrity": "sha512-Ofx8uf6haexJwI1gxWMGg6I/dLnF2yE+KibhD3/diOqY2TinLcqHXCV6OI5gFVn3xQqDH+u0M625pfKwIwgBKQ=="
- }
- }
- },
- "unist-util-generated": {
- "version": "1.1.5",
- "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-1.1.5.tgz",
- "integrity": "sha512-1TC+NxQa4N9pNdayCYA1EGUOCAO0Le3fVp7Jzns6lnua/mYgwHo0tz5WUAfrdpNch1RZLHc61VZ1SDgrtNXLSw=="
- },
- "unist-util-is": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-3.0.0.tgz",
- "integrity": "sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A=="
- },
- "unist-util-position": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-3.1.0.tgz",
- "integrity": "sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA=="
- },
- "unist-util-remove-position": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-1.1.4.tgz",
- "integrity": "sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==",
- "requires": {
- "unist-util-visit": "^1.1.0"
- }
- },
- "unist-util-stringify-position": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz",
- "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==",
- "requires": {
- "@types/unist": "^2.0.2"
- }
- },
- "unist-util-visit": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.4.1.tgz",
- "integrity": "sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==",
- "requires": {
- "unist-util-visit-parents": "^2.0.0"
- }
- },
- "unist-util-visit-parents": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-2.1.2.tgz",
- "integrity": "sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==",
- "requires": {
- "unist-util-is": "^3.0.0"
+ "glob": "^7.1.3"
+ },
+ "bin": {
+ "rimraf": "bin.js"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "unzip-response": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz",
- "integrity": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=",
- "dev": true
- },
- "update-notifier": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-2.5.0.tgz",
- "integrity": "sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==",
- "dev": true,
- "requires": {
- "boxen": "^1.2.1",
- "chalk": "^2.0.1",
- "configstore": "^3.0.0",
- "import-lazy": "^2.1.0",
- "is-ci": "^1.0.10",
- "is-installed-globally": "^0.1.0",
- "is-npm": "^1.0.0",
- "latest-version": "^3.0.0",
- "semver-diff": "^2.0.0",
- "xdg-basedir": "^3.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "dev": true,
- "requires": {
- "color-convert": "^1.9.0"
- }
+ "node_modules/run-parallel": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
+ "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
},
- "chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
- "dev": true,
- "requires": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
- }
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
},
- "supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
- "dev": true,
- "requires": {
- "has-flag": "^3.0.0"
- }
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
}
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "queue-microtask": "^1.2.2"
}
},
- "uploadcare-widget": {
- "version": "3.10.1",
- "resolved": "https://registry.npmjs.org/uploadcare-widget/-/uploadcare-widget-3.10.1.tgz",
- "integrity": "sha512-FSo2CNjxZDQhkUdB2Uawhy0TtIbGjd+RZ9uWxWmSwk0pahhP9fzAQWFSDxDNJwAmpYqGXOficHubJF0BUMVGzA==",
- "requires": {
- "escape-html": "^1.0.3",
- "jquery": "^3.4.1"
- }
- },
- "uploadcare-widget-tab-effects": {
- "version": "1.4.7",
- "resolved": "https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.4.7.tgz",
- "integrity": "sha512-FgHMdVIP8vzgGC772wZTkkh0yN94X+hkZ5uBEdZQlRucOXobyryvPEp2hRJ4wNMt7RLubXVS8WafzEnH6iQX7A=="
- },
- "uri-js": {
- "version": "4.2.2",
- "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz",
- "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==",
- "requires": {
- "punycode": "^2.1.0"
+ "node_modules/slash": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
+ "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
}
},
- "url": {
- "version": "0.11.0",
- "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz",
- "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=",
- "requires": {
- "punycode": "1.3.2",
- "querystring": "0.2.0"
- },
+ "node_modules/to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "license": "MIT",
"dependencies": {
- "punycode": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz",
- "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0="
- }
- }
- },
- "url-parse-lax": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz",
- "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=",
- "dev": true,
- "requires": {
- "prepend-http": "^1.0.1"
+ "is-number": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=8.0"
}
},
- "uswds": {
+ "node_modules/uswds": {
"version": "2.11.2",
"resolved": "https://registry.npmjs.org/uswds/-/uswds-2.11.2.tgz",
"integrity": "sha512-JISTXCjPIlrufbObIifjrMDn5jF9bbLu7UYhGWmEs9iqB6Z2KDCXHVoBUyzMmIrIjW/UWWYHZzPqOOHO6/IMCQ==",
- "requires": {
+ "license": "SEE LICENSE IN LICENSE.md",
+ "dependencies": {
"classlist-polyfill": "^1.0.3",
"del": "^6.0.0",
"domready": "^1.0.8",
@@ -5085,202 +644,16 @@
"object-assign": "^4.1.1",
"receptor": "^1.0.0",
"resolve-id-refs": "^0.1.0"
- }
- },
- "utf8-byte-length": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/utf8-byte-length/-/utf8-byte-length-1.0.4.tgz",
- "integrity": "sha1-9F8VDExm7uloGGUFq5P8u4rWv2E="
- },
- "util-deprecate": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
- "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=",
- "dev": true
- },
- "uuid": {
- "version": "3.3.3",
- "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.3.tgz",
- "integrity": "sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ=="
- },
- "validate-npm-package-license": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
- "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
- "dev": true,
- "requires": {
- "spdx-correct": "^3.0.0",
- "spdx-expression-parse": "^3.0.0"
- }
- },
- "value-equal": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz",
- "integrity": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw=="
- },
- "verror": {
- "version": "1.10.0",
- "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
- "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=",
- "dev": true,
- "requires": {
- "assert-plus": "^1.0.0",
- "core-util-is": "1.0.2",
- "extsprintf": "^1.2.0"
- }
- },
- "vfile": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/vfile/-/vfile-3.0.1.tgz",
- "integrity": "sha512-y7Y3gH9BsUSdD4KzHsuMaCzRjglXN0W2EcMf0gpvu6+SbsGhMje7xDc8AEoeXy6mIwCKMI6BkjMsRjzQbhMEjQ==",
- "requires": {
- "is-buffer": "^2.0.0",
- "replace-ext": "1.0.0",
- "unist-util-stringify-position": "^1.0.0",
- "vfile-message": "^1.0.0"
},
- "dependencies": {
- "unist-util-stringify-position": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-1.1.2.tgz",
- "integrity": "sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ=="
- },
- "vfile-message": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-1.1.1.tgz",
- "integrity": "sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA==",
- "requires": {
- "unist-util-stringify-position": "^1.1.1"
- }
- }
- }
- },
- "vfile-location": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-2.0.6.tgz",
- "integrity": "sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA=="
- },
- "vfile-message": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz",
- "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==",
- "requires": {
- "@types/unist": "^2.0.0",
- "unist-util-stringify-position": "^2.0.0"
- }
- },
- "warning": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz",
- "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==",
- "requires": {
- "loose-envify": "^1.0.0"
- }
- },
- "web-namespaces": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-1.1.4.tgz",
- "integrity": "sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw=="
- },
- "what-input": {
- "version": "5.2.10",
- "resolved": "https://registry.npmjs.org/what-input/-/what-input-5.2.10.tgz",
- "integrity": "sha512-7AQoIMGq7uU8esmKniOtZG3A+pzlwgeyFpkS3f/yzRbxknSL68tvn5gjE6bZ4OMFxCPjpaBd2udUTqlZ0HwrXQ=="
- },
- "what-the-diff": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/what-the-diff/-/what-the-diff-0.6.0.tgz",
- "integrity": "sha512-8BgQ4uo4cxojRXvCIcqDpH4QHaq0Ksn2P3LYfztylC5LDSwZKuGHf0Wf7sAStjPLTcB8eCB8pJJcPQSWfhZlkg=="
- },
- "whatwg-fetch": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.2.0.tgz",
- "integrity": "sha512-SdGPoQMMnzVYThUbSrEvqTlkvC1Ux27NehaJ/GUHBfNrh5Mjg+1/uRyFMwVnxO2MrikMWvWAqUGgQOfVU4hT7w=="
- },
- "which": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
- "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
- "dev": true,
- "requires": {
- "isexe": "^2.0.0"
+ "engines": {
+ "node": ">= 4"
}
},
- "widest-line": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-2.0.1.tgz",
- "integrity": "sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==",
- "dev": true,
- "requires": {
- "string-width": "^2.1.1"
- }
- },
- "wrappy": {
+ "node_modules/wrappy": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
- "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
- },
- "write-file-atomic": {
- "version": "2.4.3",
- "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz",
- "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==",
- "dev": true,
- "requires": {
- "graceful-fs": "^4.1.11",
- "imurmurhash": "^0.1.4",
- "signal-exit": "^3.0.2"
- }
- },
- "x-is-string": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/x-is-string/-/x-is-string-0.1.0.tgz",
- "integrity": "sha1-R0tQhlrzpJqcRlfwWs0UVFj3fYI="
- },
- "xdg-basedir": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz",
- "integrity": "sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=",
- "dev": true
- },
- "xtend": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
- "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="
- },
- "yallist": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz",
- "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=",
- "dev": true
- },
- "yaml": {
- "version": "1.10.0",
- "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.0.tgz",
- "integrity": "sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg=="
- },
- "yauzl": {
- "version": "2.10.0",
- "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz",
- "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=",
- "dev": true,
- "requires": {
- "buffer-crc32": "~0.2.3",
- "fd-slicer": "~1.1.0"
- }
- },
- "zen-observable": {
- "version": "0.8.15",
- "resolved": "https://registry.npmjs.org/zen-observable/-/zen-observable-0.8.15.tgz",
- "integrity": "sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ=="
- },
- "zen-observable-ts": {
- "version": "0.8.21",
- "resolved": "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-0.8.21.tgz",
- "integrity": "sha512-Yj3yXweRc8LdRMrCC8nIc4kkjWecPAUVh0TI0OUrWXx6aX790vLcDlWca6I4vsyCGH3LpWxq0dJRcMOFoVqmeg==",
- "requires": {
- "tslib": "^1.9.3",
- "zen-observable": "^0.8.0"
- }
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
+ "license": "ISC"
}
}
}
diff --git a/package.json b/package.json
index 7e1299a72..c8ba183d9 100755
--- a/package.json
+++ b/package.json
@@ -9,12 +9,20 @@
"test": "bundle exec htmlproofer _site; npx a11y '_site/**/*.html'"
},
"dependencies": {
+ "@uswds/uswds": "3.8.1",
"dot-prop": "^5.3.0",
- "netlify-cms": "^2.10.55",
- "uswds": "~2.11.0"
+ "uswds": "~2.11.0",
+ "dompurify": "^3.2.6"
},
"devDependencies": {
- "a11y": "^0.5.1",
"rimraf": "^3.0.2"
+ },
+ "overrides": {
+ "cross-spawn": "6.0.6",
+ "minimist": "1.2.8",
+ "trim": ">=0.0.3",
+ "tough-cookie": ">=4.1.4",
+ "got": ">=11.8.5",
+ "trim-newlines": ">=5.0.0"
}
}
diff --git a/sample.json b/sample.json
new file mode 100644
index 000000000..e69de29bb