001package org.hl7.fhir.r4b.utils.validation; 002 003import org.hl7.fhir.r4b.elementmodel.Element; 004import org.hl7.fhir.r4b.model.StructureDefinition; 005 006public interface IValidationProfileUsageTracker { 007 void recordProfileUsage(StructureDefinition profile, Object appContext, Element element); 008}