Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ChatGpt] Issue gh-166 #169

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions src/lib/service/us/us.model.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import { CompanyIdType } from "../../../types/company-id-type";
import { CompanyIdInfoModel } from "../../../types/company-id-info.model";

export const COMPANY_US_DATA: CompanyIdInfoModel[] = [
{
name: "Employer Identification Number",
fullName: "Employer Identification Number",
type: CompanyIdType.LOCAL_COMPANY_ID,
description: "The Employer Identification Number (EIN) is a unique nine-digit number assigned by the Internal Revenue Service (IRS) to identify businesses for tax purposes.",
trustedSourceUrl: "https://www.irs.gov/businesses/small-businesses-self-employed/employer-id-numbers",
patterns: ["^[0-9]{2}-[0-9]{7}$"],
parentLevel: true
},
{
name: "D-U-N-S Number",
fullName: "Data Universal Numbering System Number",
type: CompanyIdType.GLOBAL_COMPANY_ID,
description: "The Data Universal Numbering System Number (D-U-N-S Number) is a unique nine-digit identifier for businesses provided by Dun & Bradstreet.",
trustedSourceUrl: "https://www.dnb.com/duns-number/what-is-a-duns-number.html",
patterns: ["^[0-9]{9}$"],
parentLevel: true
}
];