event-logging-schema icon indicating copy to clipboard operation
event-logging-schema copied to clipboard

Allow Hash element of BaseFileComplexType to be unbounded

Open burnalting opened this issue 1 year ago • 0 comments

In a number of scenarios, a file may have mutliple hashes, perhaps both cryptograpgic and fuzzy (similarity). As a result, the Hash element of BaseFileComplexType should be unbounded to support this. A'la

...
<xs:element name="Hash" type="evt:HashComplexType" minOccurs="0" maxOccurs="unbounded">
   <xs:annotation>
      <xs:documentation>Describes the output of a hash function and the type of has function used.</xs:documentation>
   </xs:annotation>
</xs:element>
...

burnalting avatar Dec 06 '23 03:12 burnalting