cdx-proto
    Preparing search index...

    Type Alias PriorityApplication

    PriorityApplication: Message<"cyclonedx.v1_7.PriorityApplication"> & {
        applicationNumber: string;
        filingDate?: Timestamp;
        jurisdiction: string;
    }

    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.

    Type Declaration

    • applicationNumber: 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: string application_number = 1;

    • OptionalfilingDate?: Timestamp

      The date the priority application was filed, aligned with FilingDate in ST.96. Refer to FilingDate in ST.96.

      from field: google.protobuf.Timestamp filing_date = 3;

    • 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 = 2;

    from message cyclonedx.v1_7.PriorityApplication