Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
<!ELEMENT relation (document-id+ | (child-doc, parent-doc)) >
<!ATTLIST relation
  type (
    a-371-of-international          |
    addition                        |
    continuation                    |
    continuation-in-part            |
    continuing-reissue              |
    correction                      |
    division                        |
    division-into                   |
    later-filed-application         |
    previously-filed-application    |
    provisional                     |
    reexamination                   |
    reissue                         |
    related-publication             |
    substitution                    |
    us-divisional-reissue           |
    us-provisional-application      |
    us-reexamination-reissue-merger |
    utility-model-basis
  ) #REQUIRED
>

Note: over time relation type us-provisional-application will be phased out in favor of type provisional

...

Code Block
<!ATTLIST source
  %dfltattrs;
  name (OTH|CH2|SUP|ISR|APP|SEA|115|EXA|OPP|PRS|APL|FOP|TPO|UNKNOWN) #REQUIRED
  created-by-npl (Y|N) "N"
  category CDATA #IMPLIED
>

Changes to ifi-integrated-content.dtd:

...

7. Added element sequence-cwu to ptext entity parameter

old:

Code Block
<!ELEMENT ifi-integrated-content (
  ifi-patent-status,
  ifi-parties?,
  ifi-indexing-codes?,
  ifi-- The contents of a paragraph or other block-level text element -->
<!ENTITY % ptext "
#PCDATA | b | i | u | o | sub | sup |smallcaps |
br | pre | dl | ul | ol | sl | crossref | figref | patcit |
nplcit | bio-deposit | img | imgref | chemistry | maths | tables | table-external-doc
">

new:

Code Block
<!-- The contents of a paragraph or other block-level text element -->
<!ENTITY % ptext "
#PCDATA | b | i | u | o | sub | sup |smallcaps |
br | pre | dl | ul | ol | sl | crossref | figref | patcit |
nplcit | bio-deposit | img | imgref | chemistry | maths |
tables | table-external-doc | sequence-cwu
">

Changes to ifi-integrated-content.dtd:

1. Added child element office-patent-status to element ifi-integrated-content

old:

Code Block
<!ELEMENT ifi-integrated-content (
  ifi-patent-status,
  ifi-parties?,
  ifi-indexing-codes?,
  ifi-claims-summary?
)>

new:

Code Block
<!ELEMENT ifi-integrated-content (
  ifi-patent-status,
  office-patent-status?,
  ifi-parties?,
  ifi-indexing-codes?,
  ifi-claims-summary?
)>

<!ELEMENT office-patent-status (office-patent-status-description)>
<!ATTLIST office-patent-status
  %dfltattrs;
  under-opposition (yes|no) #IMPLIED
  expiration-date CDATA #IMPLIED
>
<!ELEMENT office-patent-status-description (#PCDATA)>
<!ATTLIST office-patent-status-description
  country CDATA #REQUIRED
>

...

Code Block
<!ELEMENT ifi-integrated-content (
  ifi-patent-status,
  office-patent-status?,
  ifi-parties?,
  ifi-annotated-data?,
  ifi-indexing-codes?,
  ifi-claims-summary?
)>

<!ELEMENT ifi-annotated-data (pharmaceuticals)> 
<!ELEMENT pharmaceuticals (pharmaceutical+)> 
<!ELEMENT pharmaceutical (strengths?)> 
<!ATTLIST pharmaceutical
  %dfltattrs;
  ingredient-name CDATA #REQUIRED 
  brand CDATA #IMPLIED 
  form CDATA #IMPLIED 
  route CDATA #IMPLIED 
> 
<!ELEMENT strengths (strength+)> 
<!ELEMENT strength (#PCDATA)>

...

 (strength+)> 
<!ELEMENT strength (#PCDATA)>

3. Added allowed value U to attribute term-type

old:

Code Block
<!ENTITY % ifiindexingattrs "
  term-type (F|G|C) #REQUIRED
">

new:

Code Block
<!ENTITY % ifiindexingattrs "
  term-type (C|F|G|U) #REQUIRED
">

Changes to seqlst.dtd:

1. Changed sequence-cwu children publication-reference and number to optional

old:

Code Block
<!ENTITYELEMENT sequence-cwu % ifiindexingattrs "
  term-type (F|G|C) #REQUIRED
"(publication-reference, number,(sequence-list-old-rules | sequence-list-new-rules | table )) >

new:

Code Block
<!ENTITYELEMENT %sequence-cwu ifiindexingattrs "
  term-type (C|F|G|U) #REQUIRED
"> (publication-reference?, number?, (sequence-list-old-rules | sequence-list-new-rules | table )) >

 

Older Versions

Version 2.2

...