@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix qudt: <http://qudt.org/schema/qudt/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .

qudt:StringUTF16 a rdfs:Class,
        owl:Class,
        sh:NodeShape ;
    rdfs:label "String UTF16" ;
    dcterms:description """
  <p><em>String UTF-16</em> is a string data type that specifies the properties of string data structures which encode strings using the UTF-16 encoding. 
  UTF-16 is the native internal representation of text in many software systems, for example:
  </p>
  <ol>
  <li>Microsoft Windows NT/Windows 2000/Windows XP/Windows CE;</li>
  <li>Qualcomm BREW, and Symbian operating systems;</li>
  <li>the Java and .NET byte code environments;</li>
  <li>Mac OS X's Cocoa and Core Foundation frameworks;</li>
  <li>Qt cross-platform graphical widget toolkit.</li>
  </ol>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.2.1/schema/datatype>,
        <http://qudt.org/3.2.1/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:StringType,
        qudt:TextStringType ;
    sh:property qudt:StringUTF16-memberDatatype .

