ediverse Explore the platform

Spotlight PEPPOL BIS Billing 3.0 The EU e-invoicing mandate is here — France Sept 2026, Belgium Jan 2026, Germany 2025.

SubstanceNucleicAcid — Structure of a nucleic acid

One of the five chemical-substance structuring resources in FHIR R5. Describes precisely the sequence, modifications and chemistry of a nucleic acid — DNA, RNA, therapeutic oligonucleotides (antisense, siRNA, mRNA vaccine).

Purpose of the resource

For a medicinal product to be uniquely identified by regulatory agencies, its active substance must be described with molecular precision. For modern biotherapeutics — antisense oligonucleotides (Spinraza, Eteplirsen), siRNAs (Patisiran, Inclisiran), mRNA vaccines (Comirnaty, Spikevax) — that description rests on sequence and chemical modifications. SubstanceNucleicAcid is the formal structure that carries that information.

The resource is not aimed at everyday clinical applications (EHRs do not handle the active sequence of Comirnaty). It feeds regulatory dossiers (eCTD), IDMP databases, FDA Structured Product Labeling (SPL), and global substance ledgers (GSRS, UNII).

Key fields

FieldTypeCardinalityRole
sequenceTypeCodeableConcept0..1Nucleic acid type: DNA, RNA, cDNA, mRNA, siRNA
numberOfSubunitsinteger0..1Number of subunits (1 = single-stranded, 2 = double-stranded).
areaOfHybridisationstring0..1Narrative description of the hybridisation area.
oligoNucleotideTypeCodeableConcept0..1Oligonucleotide type: antisense, siRNA, aptamer, gapmer
subunitBackboneElement[]0..*One entry per subunit. A single one for single-strand; two for double-strand.
subunit.subunitinteger0..1Subunit index (1, 2…).
subunit.sequencestring0..1Sequence in IUPAC notation (A, U/T, G, C…).
subunit.lengthinteger0..1Length (nucleotides).
subunit.sequenceAttachmentAttachment0..1Sequence carried as an attachment (FASTA, GenBank…).
subunit.fivePrimeCodeableConcept0..15' end (phosphate, hydroxyl, methyl, cap…).
subunit.threePrimeCodeableConcept0..13' end (hydroxyl, phosphate, polyA…).
subunit.linkageBackboneElement[]0..*Inter-nucleotide linkage type (phosphodiester, phosphorothioate…) — key for ASOs.
subunit.sugarBackboneElement[]0..*Sugar type (ribose, deoxyribose, 2'-O-methyl, LNA, MOE…).

JSON example

A 20-nucleotide single-stranded antisense oligonucleotide with ribose sugar and standard phosphodiester linkages:

json substancenucleicacid-example.json
{
  "resourceType": "SubstanceNucleicAcid",
  "id": "example-oligo",
  "sequenceType": {
    "coding": [{
      "system": "http://terminology.hl7.org/CodeSystem/sequence-type",
      "code": "RNA",
      "display": "RNA"
    }]
  },
  "numberOfSubunits": 1,
  "areaOfHybridisation": "Single-stranded therapeutic oligonucleotide, 20 nt",
  "oligoNucleotideType": {
    "coding": [{
      "system": "http://terminology.hl7.org/CodeSystem/oligo-type",
      "code": "antisense",
      "display": "Antisense oligonucleotide"
    }]
  },
  "subunit": [{
    "subunit": 1,
    "sequence": "AUGCUUACGGGAUCUGAUAA",
    "length": 20,
    "sequenceAttachment": {
      "contentType": "text/plain",
      "data": "QVVHQ1VVQUNHR0dBVUNUR0FVQUE="
    },
    "fivePrime": {
      "coding": [{
        "system": "http://terminology.hl7.org/CodeSystem/sequence-five-prime",
        "code": "phosphate"
      }]
    },
    "threePrime": {
      "coding": [{
        "system": "http://terminology.hl7.org/CodeSystem/sequence-three-prime",
        "code": "hydroxyl"
      }]
    },
    "linkage": [{
      "connectivity": "5'-3' phosphodiester linkage",
      "identifier": { "value": "PO" },
      "name": "Standard phosphodiester",
      "residueSite": "all"
    }],
    "sugar": [{
      "identifier": { "value": "ribose" },
      "name": "Beta-D-ribose",
      "residueSite": "all"
    }]
  }]
}

Typical use cases

  • IDMP / eCTD registration: registration substance for an RNA medicine.
  • SubstanceDefinition: block referenced by SubstanceDefinition.structure to describe chemistry.
  • Early-access schemes: declare active substance inside an early-access dossier.
  • GSRS (Global Substance Registration System): import / export.
  • UNII / DailyMed FDA: link to American SPLs.

Common pitfalls

  • Inline sequence too long: for sequences >200 nt, prefer sequenceAttachment with an external FASTA file over inline sequence (resource size limit).
  • Non-strict A/U/G/C/T IUPAC notation: extended IUPAC codes (N, R, Y, K…) are allowed but must be documented in areaOfHybridisation.
  • Undeclared phosphorothioate: for antisense (ASO) drugs where every linkage is phosphorothioate, omitting that information makes the substance regulatorily unidentifiable.
  • Confusion between SubstanceNucleicAcid and MolecularSequence: MolecularSequence is for patient data (somatic variant, individual genome sequence). SubstanceNucleicAcid describes an industrial substance.
  • Double strand without matching: for a siRNA, the two subunits must have complementary lengths and sequences (implicit pairing to validate).
  • SubstanceDefinition — references this block via structure.
  • SubstancePolymer, SubstanceProtein, SubstanceReferenceInformation, SubstanceSourceMaterial — the other IDMP substance chemistry resources.
  • MedicinalProductDefinition — the authorised medicinal product containing this substance.
  • MolecularSequence — patient-side equivalent (variants, clinical sequences).

See also: SubstanceDefinition — the global definition of a substance and MedicinalProductDefinition — the authorised medicinal product.