cdx-proto
    Preparing search index...

    Type Alias Patent

    Patent: Message<"cyclonedx.v1_7.Patent"> & {
        abstract?: string;
        applicationNumber?: string;
        bomRef?: string;
        externalReferences: ExternalReference[];
        filingDate?: Timestamp;
        grantDate?: Timestamp;
        jurisdiction: string;
        patentAssignee: OrganizationalEntityOrContact[];
        patentExpirationDate?: Timestamp;
        patentLegalStatus: PatentLegalStatus;
        patentNumber: string;
        priorityApplication?: PriorityApplication;
        publicationNumber?: string;
        title?: string;
    }

    A patent is a legal instrument, granted by an authority, that confers certain rights over an invention for a specified period, contingent on public disclosure and adherence to relevant legal requirements. The summary information in this object is aligned with WIPO ST.96 principles where applicable.

    Type Declaration

    • Optionalabstract?: string

      A brief summary of the invention described in the patent. Aligned with Abstract and P in WIPO ST.96. Refer to Abstract in ST.96.

      from field: optional string abstract = 8;

    • OptionalapplicationNumber?: string

      The unique number assigned to a patent application when it is filed with a patent office. It is used to identify the specific application and track its progress through the examination process. Aligned with ApplicationNumber in ST.96. Refer to ApplicationIdentificationType in ST.96.

      from field: optional string application_number = 3;

    • OptionalbomRef?: string

      A identifier which can be used to reference the component elsewhere in the BOM. Uniqueness is enforced within all elements and children of the root-level bom element.

      from field: optional string bom_ref = 1;

    • externalReferences: ExternalReference[]

      External references provide a way to document systems, sites, and information that may be relevant but are not included with the BOM. They may also establish specific relationships within or external to the BOM.

      from field: repeated cyclonedx.v1_7.ExternalReference external_references = 14;

    • OptionalfilingDate?: Timestamp

      The date the patent application was filed with the jurisdiction. Aligned with FilingDate in WIPO ST.96. Refer to FilingDate in ST.96.

      from field: optional google.protobuf.Timestamp filing_date = 9;

    • OptionalgrantDate?: Timestamp

      The date the patent was granted by the jurisdiction. Aligned with GrantDate in WIPO ST.96. Refer to GrantDate in ST.96.

      from field: optional google.protobuf.Timestamp grant_date = 10;

    • jurisdiction: string

      The jurisdiction or patent office where the priority application was filed, specified using WIPO ST.3 codes. Aligned with IPOfficeCode in ST.96. Refer to IPOfficeCode in ST.96.

      from field: string jurisdiction = 4;

    • patentAssignee: OrganizationalEntityOrContact[]

      A collection of organisations or individuals to whom the patent rights are assigned. This supports joint ownership and allows for flexible representation of both corporate entities and individual inventors.

      from field: repeated cyclonedx.v1_7.OrganizationalEntityOrContact patent_assignee = 13;

    • OptionalpatentExpirationDate?: Timestamp

      The date the patent expires. Derived from grant or filing date according to jurisdiction-specific rules.

      from field: optional google.protobuf.Timestamp patent_expiration_date = 11;

    • patentLegalStatus: PatentLegalStatus

      Indicates the current legal status of the patent or patent application, based on the WIPO ST.27 standard. This status reflects administrative, procedural, or legal events. Values include both active and inactive states and are useful for determining enforceability, procedural history, and maintenance status.

      from field: cyclonedx.v1_7.PatentLegalStatus patent_legal_status = 12;

    • patentNumber: string

      The unique number assigned to the granted patent by the issuing authority. Aligned with PatentNumber in WIPO ST.96. Refer to PatentNumber in ST.96.

      from field: string patent_number = 2;

    • OptionalpriorityApplication?: PriorityApplication

      The priorityApplication contains the essential data necessary to identify and reference an earlier patent filing for priority rights. In line with WIPO ST.96 guidelines, it includes the jurisdiction (office code), application number, and filing date-the three key elements that uniquely specify the priority application in a global patent context.

      from field: optional cyclonedx.v1_7.PriorityApplication priority_application = 5;

    • OptionalpublicationNumber?: string

      This is the number assigned to a patent application once it is published. Patent applications are generally published 18 months after filing (unless an applicant requests non-publication). This number is distinct from the application number.

      from field: optional string publication_number = 6;

    • Optionaltitle?: string

      The title of the patent, summarising the invention it protects. Aligned with InventionTitle in WIPO ST.96. Refer to InventionTitle in ST.96.

      from field: optional string title = 7;

    from message cyclonedx.v1_7.Patent