Skip to main content

CompanyAttributeSearch

Custom attribute assigned to a company with metadata and audit information.

Represents a specific attribute instance attached to a company, combining the attribute definition, actual value, and audit trail. Used for flexible data storage, custom business logic, and extended company information beyond standard fields.

type CompanyAttributeSearch {
id: String!
value: CompanyAttributeValueSearch!
createdAt: DateTime!
lastModifiedAt: DateTime!
createdBy: Int
lastModifiedBy: Int
attributeDescription: CompanyAttributeDescriptionSearch
}

Fields

CompanyAttributeSearch.id ● String! non-null scalar

Unique identifier for the attribute assignment.

Primary key used to reference this specific attribute instance and for attribute-related operations.

CompanyAttributeSearch.value ● CompanyAttributeValueSearch! non-null object

The actual value data for this attribute.

Contains the concrete value assigned to the company for this attribute, including type information and validation metadata.

CompanyAttributeSearch.createdAt ● DateTime! non-null scalar

Attribute assignment creation timestamp.

Date and time when this attribute was initially assigned to the company, used for auditing and change tracking.

CompanyAttributeSearch.lastModifiedAt ● DateTime! non-null scalar

Attribute last modification timestamp.

Date and time when this attribute value or metadata was last updated, used for change tracking and synchronization.

CompanyAttributeSearch.createdBy ● Int scalar

User identifier who created this attribute assignment.

Reference to the user who initially assigned this attribute to the company, used for audit trails and accountability.

CompanyAttributeSearch.lastModifiedBy ● Int scalar

User identifier who last modified this attribute.

Reference to the user who most recently updated this attribute value or metadata, used for audit trails and change tracking.

CompanyAttributeSearch.attributeDescription ● CompanyAttributeDescriptionSearch object

Metadata definition for this attribute type.

Contains the schema and configuration information that defines how this attribute should be processed, validated, and displayed.

Member Of

CompanyContactSearch object ● CompanySearch object