diff --git a/check_add_vr.py b/check_add_vr.py new file mode 100644 index 0000000..b6b9496 --- /dev/null +++ b/check_add_vr.py @@ -0,0 +1,188 @@ +''' + This code checks each entry in the dicom_ontology.owl file for an + explicit VR assignment. The issue is that the "new" entries - + the entries/tags not in the original set that were scraped from + the NEMA website and instantiated in Neurolex - do not have + VR values attached. The reason for this is that in the DICOM + standard documentation a listing of all of the tags are in Parts + 06 and 07, but these lists do not include the definitions. The + definitions are given in tables in other Parts, so have to + be extracted from those tables. + + This code checks to see if an entry specifies the VR value and + if not, retrieves it from the file + /home/karl/Work/INCF/XML_code/dicom_dict_vr.py + which was created by the code: + /home/karl/Work/INCF/XML_code/vr_generate_dict.py + + This code skips reads lines until it finds + a line containing "Datatype Properties" and continues to read lines + until is finds a line that contains "dicom#dicom". It collects + lines in the variable "entry" until it encounters a line containing + " ." which is the ending character for an entry. If it finds + a line containing "dicom:VR" then it writes the entry after removing + an extra blank line that was written into the original owl file as + the line previous to the line containing the VR info. The code then + writes that entry to the output file and then reads on, collecting the + next entry. If the entry does not contain VR line, it queries the + dicom_dict_vr.py file to find the VR value and writes a line + containing the VR value in the correct format. + + Note that since the code starts collecting entries with the "Datatype + Properties" section, everything above that needs to be pasted into + the resulting file to make a complete owl file. Also, the Class section + will be unchanged since there are no VR values for these terms + (since they are not official DICOM tags, but terms I extracted from the + official Part documents). The code checks for the presence of "xxxx" in + the dicom tag. If that string is in the tag then just write the entry + unchanged into the output file. + + +Sample Complete Entry +------------------------------------------------ +### http://purl.org/nidash/dicom#dicom_00280011 + +dicom:dicom_00280011 rdf:type owl:DatatypeProperty ; + + rdfs:label "Columns"^^xsd:string ; + + obo:IAO_0000114 obo:IAO_0000428 ; + + obo:IAO_0000115 "Number of columns in the image."^^xsd:string ; + + dicom:dicom_xxxx0065 "(0028,0011)"^^xsd:string ; + + dicom:VR "US"^^xsd:string ; + + rdfs:subClassOf dc:identifier . + + +2018-09-04 - started +2018-09-14 - ran on full owl file and checked result into GitHub repo + +Karl Helmer +Athinoula A. Martinos Center for Biomedical Imaging +Massachusetts General Hospital, 2018 + +''' + +import os, sys +import re +import ast + +#************************************************ +#input parameters +inDir = '/home/karl/Work/INCF/dicom-ontology/' +inFilename = 'dicom_ontology.owl' +outDir = '/home/karl/Work/INCF/dicom-ontology/' +outFilename = 'dicom_ontology_new.owl' +vrDir = '/home/karl/Work/INCF/XML_code/' +vrFilename = 'dicom_dict_vr.dict' +startEntry = 'dicom#dicom' +endEntry = ' .' +startPlace = 'Datatype Properties' +#************************************************ + +def search_vr(entry): + #make 1 string rather than searching in each string individually + #this is faster than using some version of "any" + combined = ' '.join(entry) + test = 'dicom:VR' in combined + + return test + + +def get_tag(entry): + + # check each line in entry for the dicom tag + for e in entry: + if 'rdf:type' in e: + t = re.search('dicom_(.+?) ', e) + tag = t.group(1) + if tag: + #print "The DICOM tag is: ", tag + return tag + else: + #this will crash the program since no tag value is returned + print "no dicom tag value found in: ", entry + + +def get_vr(vrDir, vrFilename, tag): + if tag: + vrF = open(vrDir+vrFilename, 'r').read() + dicomDict = ast.literal_eval(vrF) + if tag: + vr = dicomDict.get(tag,'')[0] + #print "vr value is = ", vr + return vr + else: + print "vr value not found for tag = ", tag + return None + + +def add_vr_to_entry(vr, entry): + vrLine = ' dicom:VR "{}"^^xsd:string ;\n'.format(vr) + entry.insert(4,vrLine) + entry.insert(5,'\n') + + return entry + + +def write_entry(entry, outFile): + for line in entry: + outFile.write(line) + outFile.write('\n\n') + + +def remove_sequential_blanks_in_entry(entry): + for i in range(len(entry)-1): + if entry[i] == entry[i+1]: + del entry[i] + break + + return entry + + + +def main(): + + # open the dicom ontology file and start reading + with open(inDir+inFilename, 'r') as inFile, open(outDir+outFilename, 'w') as outFile: + entry = [] + copy = False + dt = False + for line in inFile: + if startPlace in line: #find "Datatype Properties" line and start here + dt = True + print "starting place is:", startPlace + + if dt == True: #start check after Datatype Prop line + if startEntry in line: + copy = True + #print 'start of entry' + if endEntry in line: + copy = False + entry.append(line) #append the last line of entry + #print 'end of entry' + + #now check the entry list as a whole + vrFlag = search_vr(entry) #see if the entry has a VR line + tag = get_tag(entry) #extract the tag from entry + print tag, vrFlag + if vrFlag == False and ("xxxx" not in tag): + vr = get_vr(vrDir, vrFilename, tag) #get vr value from the dict + entry1 = add_vr_to_entry(vr, entry) + write_entry(entry1, outFile) #write entry with added vr to outfile + entry = [] #clear entry list when finished + else: + entry2 = remove_sequential_blanks_in_entry(entry) + write_entry(entry2, outFile) #write unchanged entry to outfile + entry = [] + elif copy: + entry.append(line) + + + +############################################################## +if __name__ == "__main__": + main() diff --git a/create_dicom_ttl.0.4.py b/create_dicom_ttl.0.4.py new file mode 100644 index 0000000..ea020ba --- /dev/null +++ b/create_dicom_ttl.0.4.py @@ -0,0 +1,401 @@ +''' + This code takes the DICOM terms from the DICOM XML docbook + (provided by David Clunie) and the CSV file from the DICOM terms + from Neurolex and creates a basic turtle file. Note that in the + definitions there are XML links that don't show up in the extracted + text file from the DICOM docbook. There are then phrases like + "See " that need to be removed from the definitions at the very end. + +ver 0.1 2017-03-14 - original; terms are camelcase labels +ver 0.2 2017-03-28 - retrieve Neurolex ID's using term labels +ver 0.3 2017-03-29 - retrieve neurolex ID using DICOM tags +ver 0.4 2017-04-19 - change ID system to non-tag-based ID's + reserve first 500 for other terms, rest for tags + +Karl Helmer +Athinoula A. Martinos Center for Biomedical Imaging +Massachusetts General Hospital + +''' + +import os, sys +import re +from operator import itemgetter +import pickle + +#************************************************ +#input parameters +#outDir = '/home/karl/Work/INCF/nidm/nidm/nidm/nidm-experiment/imports/' +outDir = '/home/karl/Work/INCF/dicom-ontology/' +outFile = 'dicom_numericalID.ttl' +tagDefFile = 'all_tag_definition.txt' +# The following file version is the one that replaces the greek mu with "u" +# Use of mu means dealing with unicode processing +inFile = '/home/karl/Work/INCF/dicom-ontology/Clunie_DICOM_definitions-us.txt' +nlxFile = '/home/karl/Work/INCF/dicom-ontology/Neurolex_dicom_terms_result.csv' +dicomNS = 'dicom:' +dicomPrefix = 'dicom_' +rdfType = 'rdf:type' +owlClass = 'owl:Class' +owlDatatypeProperty = 'owl:DatatypeProperty' +owlSameAs = 'owl:sameAs' +rdfsLabel = 'rdfs:label' +rdfsSub = 'rdfs:subClassOf' +dicomTag = dicomNS+'dicom_00000065'#'Tag' +vrInDicom = dicomNS+'VR' +nlxID = 'nidm:neurolexID' +dcID = 'dc:identifier' +labelStr = 'label' +subClass = 'subClassOf' +provNS = 'prov:' +xsdString = '^^xsd:string ' +definitionStr = 'obo:IAO_0000115' +editorNote = 'obo:IAO_0000116 "To be discussed."' +curationStatusReady = 'obo:IAO_0000114 obo:IAO_0000122 ' +curationStatusReqDisc = 'obo:IAO_0000114 obo:IAO_0000428 ' +classLink = 'http://purl.org/nidash/dicom#' +nlxLink = 'http://uri.neuinfo.org/nif/nifstd/' +idStart = 500 +#************************************************ + +def write_ontology_header(ttlFile): + + ttlFile.write("@prefix : .\n") + ttlFile.write("@prefix owl: .\n") + ttlFile.write("@prefix rdf: .\n") + ttlFile.write("@prefix xml: .\n") + ttlFile.write("@prefix xsd: .\n") + ttlFile.write("@prefix rdfs: .\n") + ttlFile.write("@prefix nidm: .\n") + ttlFile.write("@prefix dc: . .\n") + ttlFile.write("@prefix obo: .\n") + ttlFile.write("@prefix nlx: .\n") + ttlFile.write("@base .\n") + ttlFile.write("\n") + ttlFile.write(classLink+"[ rdf:type owl:Ontology ] .\n") + + +def write_class_header(ttlFile): + ttlFile.write('\n') + ttlFile.write('#################################################################\n') + ttlFile.write('#\n') + ttlFile.write('# Datatype Properties\n') + ttlFile.write('#\n') + ttlFile.write('#################################################################\n') + ttlFile.write('\n') + + +# The following two functions are used to create camelCase version of DICOM tag label +#def repl_func(m): +# """process regular expression match groups for word upper-casing problem""" +# return m.group(1) + m.group(2).upper() + + +#def create_camelcase_label(s): +# '''Capitalizes each word, removes non-alphanumeric characters +# and spaces from the label ''' +# s = re.sub("(^|\s)(\S)", repl_func, s) +# s = re.sub('[^a-zA-Z0-9]+',"", s) +# s.replace(" ", "") +# if s[0].isalpha: +# s = s[0].lower() + s[1:] +# +# return s + + +# The following two functions are used to match term labels from the two input files +# Used in string_match function +def max_list_value(list,i): + # this function returns a tuple of the (index, maxValue) for a list + # you supply the list and the index of the place within the list that you + # want the max of. + return max(enumerate(sub[i] for sub in list), key=itemgetter(1)) + + +def string_match(label,nlxData): + # this code takes an input string (dicom tag label) and tries to find an + # exact match in another list of labels. If no exact match is found, finds + # the closest match from a list of labels in which there is at least one + # match between the original label and the possible label. + + # find the length of the list of possible labels + neuroLines = len(nlxData) + exactMatch = 'False' + noMatch = 'True' + + print "considering DICOM file label = "+label + + for i in range(neuroLines): + partMatch = 'False' + tempStore = [] + # check for exact match + #print "DICOM_label=",label, " nlxData_label=",nlxData[i][0] + if nlxData[i][0] == label: + vrCode = nlxData[i][3] + dicomTagID = nlxData[i][2] + neurolexID = nlxData[i][1] + print "match for ", label + exactMatch = 'True' + noMatch = 'False' + break + # if no exact match, find how many words in the orig label are in the possible label + # if none, go to next nlxLabel in nlxData + else: + matchCount = 0 + labelPart = label.split() + filteredLabelPart = [s for s in labelPart if len(s) > 2] #don't match 2-or-less length words + for lp in filteredLabelPart: + #print lp + if lp in nlxData[i][0]: + matchCount = 1+matchCount + + # if at least one matching word, store needed info as list in list tempStore + if matchCount != 0: + partMatch = 'True' + tempStore.append([nlxData[i][0], nlxData[i][2], nlxData[i][1], nlxData[i][3], matchCount]) + + if (partMatch == 'True') and (exactMatch == 'False'): + print "Dicom label = "+label+"\n" + print "Neurolex entry = ", tempStore + + if len(tempStore) > 1: #if only a single term matches then assume that it's not a match + isMatch = input("Is this a match (1/0)?") + if isMatch: + print 'partial match for '+label + maxAndWhere = max_list_value(tempStore,-1) # tuple + print maxAndWhere + k=maxAndWhere[0] #put the index of the best match into k + # put values for best match into variables for return + neurolexID = tempStore[k][2] + dicomTagID = tempStore[k][1] + vrCode = tempStore[k][3] + noMatch = 'False' + else: + partMatch = 'False' + else: + partMatch = 'False' + + if (partMatch == 'False') and (exactMatch == 'False'): + noMatch = 'True' + neurolexID = 'NF' + dicomTagID = 'NF' + vrCode = 'NF' + print "no match for "+label + + return neurolexID, dicomTagID, vrCode, noMatch + + + +def tag_match(tag,nlxData): + ''' + This code takes an input string (dicom tag) and tries to find an + exact match in another list of labels. The two strings have different + initial formats so first have to put them in common format (8char string, + no non-alphanumeric characters) + ''' + + # set match status flags + neuroLines = len(nlxData) + noMatch = 'True' + neurolexID = 'NF' + vrCode = 'NF' + + # get the DICOM tag from the Clunie file in the format (XXXX,XXXX) + dicomTagIDGroup = re.search(r'.*\(([A-Za-z0-9\,]*)\)', tag) + if not dicomTagIDGroup: + print "bad dicom tag format for: "+tag + else: + dicomTagPartsList = dicomTagIDGroup.group(1).split(",") + dicomTagID = dicomTagPartsList[0]+dicomTagPartsList[1] + #print dicomTag + + for i in range(neuroLines): + # This assumes that the correctly formatted tag is present + # (already checked in main) + # To get the from XXXX_XXXX to XXXXXXXX + nlxDicomTagPartsList = nlxData[i][2].split("_") + nlxDicomTagID = nlxDicomTagPartsList[0]+nlxDicomTagPartsList[1] + #print nlxDicomTag + + # check for exact match + if nlxDicomTagID == dicomTagID: + vrCode = nlxData[i][3] + neurolexID = nlxData[i][1] + noMatch = 'False' + break + else: + pass + + + if noMatch == 'True': + print "no match for "+dicomTagID + else: + print "match for "+dicomTagID + + return neurolexID, dicomTagID, vrCode, noMatch + + + +def main(): + nlxData = [] + neurolexID = '' + dicomTagID = '' + vrCode = '' + ttlFile = open(outDir+outFile, "w") + + write_ontology_header(ttlFile) + write_class_header(ttlFile) + + # Neurolex/Interlex section***************************** + # put the label, Neurolex ID (if present), DICOM ID, and VR into a file that will be + # matched up to the label from the DICOM (Clunie-supplied) file + nlxFileData = open(nlxFile, "r") + entries = nlxFileData.readlines() + for entry in entries: + + dicomIDGroup = re.search(r'.*DICOM:([A-Za-z0-9\_]*),', entry) + if not dicomIDGroup: + print "no dicom ID found in: ", entry + dicomID = "NF " + else: + dicomID = dicomIDGroup.group(1) + #print dicomID + + + nlxIDGroup = re.search(r'.*,(nlx_[0-9]*),', entry) + if not nlxIDGroup: + print "no nlx ID found in: ", entry + nlxID = "NF " + else: + nlxID = nlxIDGroup.group(1) + #print nlxID + + + vr = entry[-3:].rstrip("\n") #get rid of newline character + vrGroup = re.search(r'(\"\,*)', vr) + if vrGroup: + if "US or SS" in entry: + vr = "US or SS" + elif "OB or OW" in entry: + vr = "OB or OW" + elif "OW or OB" in entry: + vr = "OB or OW" + elif "OP or OW" in entry: + vr = "OP or OW" + elif "US,SS,or OW" in entry: + vr = "US or SS" + elif "US or SS or OW" in entry: + vr = "US or SS or OW" + elif "does not exist" in entry: + vr = "does not exist" + else: + print "bad or missing VR value found in: ", entry + vr = "NF " + else: + vr = vr + + #vr = vr.rstrip("\n") #get rid of the newline character that appears + + # problem her is that sometimes there are "" around Category sometimes not + dicomLabelGroup = re.search(r'.*:Category:([A-Za-z0-9\s\-\/\(\)\'\&\"]*),', entry) + if not dicomLabelGroup: + print "no dicom label found in: ", entry + dicomLabel = "NF " + else: + dicomLabel = dicomLabelGroup.group(1) + if dicomLabel[-1] == '"': + dicomLabel = dicomLabel[:-1] + #print dicomLabel + + # store extracted strings in a list for future retrieval - this is all relevant NLX data + nlxData.append([dicomLabel, nlxID, dicomID, vr]) + + + # DICOM document section************************************ + # get the label, tag, definition for each term + tagList = [] + multiTags = [] + allEntries = [] + idStart = 500 + dicomFileData = open(inFile, "r") + lines = dicomFileData.readlines() + for line in lines: + + # create a 5 digit ID with leading zeros to ID the tags + idStart = idStart + 1 + numericalTagID = str(idStart).zfill(5) + + # get the label + labelGroup = re.search(r'.*Name="([A-Za-z0-9\s\-\/\(\)\'\&]*)"\t', line) + label = labelGroup.group(1) + # get the tab + tagGroup = re.search(r'.*Tag=("[A-Za-z0-9\s\,\(\)]*")\t', line) + tag = tagGroup.group(1) #left the quotes around the tag + # get the definition + definitionGroup = re.search(r'.*Description=(".*)', line) + definition = definitionGroup.group(1) # has quotes already + + # find the corresponding term from the extracted Neurolex info + #neurolexID, dicomTagID, vrCode, noMatch = string_match(label,nlxData) + neurolexID, dicomTagID, vrCode, noMatch = tag_match(tag,nlxData) + + #tempList = [dicomTagID, definition] + #allEntries.append(tempList) + + # determine which tags have multiple entries and create a non-repeating list + # of the multiple-entry tag (multitags). tagList is a non-repeating list of all tags. + # {just store tag} + #if dicomTagID in tagList and dicomTagID not in multiTags: + # multiTags.append(dicomTagID) + #else: + # tagList.append(dicomTagID) + + #{store all multiple tags and their definitions} - HOW TO STORE FIRST ONE OF MULTIPLE? + # look at each tag in turn and all tags after that tag. + #if dicomTagID in tagList and dicomTagID not in multiTags: + # tempList = [dicomTagID, definition] + # multiTags.append(tempList) + #else: + # tagList.append(dicomTagID) + + #labelCC = create_camelcase_label(label) + #print label + ttlFile.write("### "+classLink+dicomPrefix+numericalTagID+"\n") + ttlFile.write("\n") + ttlFile.write(dicomNS+dicomPrefix+numericalTagID+" "+rdfType+" "+owlDatatypeProperty+" ;\n") + ttlFile.write("\n") + ttlFile.write(" "+rdfsLabel+" "+'"'+label+'"'+xsdString+";\n") + ttlFile.write("\n") + ttlFile.write(" "+curationStatusReqDisc+";\n") + ttlFile.write("\n") + ttlFile.write(" "+definitionStr+" "+definition+xsdString+";\n") + ttlFile.write("\n") + ttlFile.write(" "+dicomTag+" "+tag+xsdString+";\n") + ttlFile.write("\n") + + if noMatch == 'False': + ttlFile.write(" "+owlSameAs+" "+nlxID+" ;\n") + ttlFile.write("\n") + ttlFile.write(" "+vrInDicom+" "+'"'+vrCode+'"'+xsdString+" ;\n") + ttlFile.write("\n") + ttlFile.write(" "+rdfsSub+" "+dcID+" .\n") + else: + ttlFile.write(" "+rdfsSub+" "+dcID+" .\n") + + ttlFile.write("\n") + + ttlFile.write("\n") + ttlFile.write("\n") + + ttlFile.close() + + #print multiTags + #print len(multiTags) + + # write out the list of all tag and defs for later sorting + #with open(outDir+tagDefFile, "wb") as fp: + # pickle.dump(allEntries,fp) + #fp.close() +############################################################## +if __name__ == "__main__": + main() diff --git a/dicom_dict_vr.dict b/dicom_dict_vr.dict new file mode 100644 index 0000000..e1f83f0 --- /dev/null +++ b/dicom_dict_vr.dict @@ -0,0 +1,4255 @@ +{ + "00000000": ("UL", "1", "Command Group Length", "", "CommandGroupLength"), + "00000001": ("UL", "1", "Command Length to End", "Retired", "CommandLengthToEnd"), + "00000002": ("UI", "1", "Affected SOP Class UID", "", "AffectedSOPClassUID"), + "00000003": ("UI", "1", "Requested SOP Class UID", "", "RequestedSOPClassUID"), + "00000010": ("SH", "1", "Command Recognition Code", "Retired", "CommandRecognitionCode"), + "00000100": ("US", "1", "Command Field", "", "CommandField"), + "00000110": ("US", "1", "Message ID", "", "MessageID"), + "00000120": ("US", "1", "Message ID Being Responded To", "", "MessageIDBeingRespondedTo"), + "00000200": ("AE", "1", "Initiator", "Retired", "Initiator"), + "00000300": ("AE", "1", "Receiver", "Retired", "Receiver"), + "00000400": ("AE", "1", "Find Location", "Retired", "FindLocation"), + "00000600": ("AE", "1", "Move Destination", "", "MoveDestination"), + "00000700": ("US", "1", "Priority", "", "Priority"), + "00000800": ("US", "1", "Command Data Set Type", "", "CommandDataSetType"), + "00000850": ("US", "1", "Number of Matches", "Retired", "NumberOfMatches"), + "00000860": ("US", "1", "Response Sequence Number", "Retired", "ResponseSequenceNumber"), + "00000900": ("US", "1", "Status", "", "Status"), + "00000901": ("AT", "1-n", "Offending Element", "", "OffendingElement"), + "00000902": ("LO", "1", "Error Comment", "", "ErrorComment"), + "00000903": ("US", "1", "Error ID", "", "ErrorID"), + "00001000": ("UI", "1", "Affected SOP Instance UID", "", "AffectedSOPInstanceUID"), + "00001001": ("UI", "1", "Requested SOP Instance UID", "", "RequestedSOPInstanceUID"), + "00001002": ("US", "1", "Event Type ID", "", "EventTypeID"), + "00001005": ("AT", "1-n", "Attribute Identifier List", "", "AttributeIdentifierList"), + "00001008": ("US", "1", "Action Type ID", "", "ActionTypeID"), + "00001020": ("US", "1", "Number of Remaining Sub-operations", "", "NumberOfRemainingSuboperations"), + "00001021": ("US", "1", "Number of Completed Sub-operations", "", "NumberOfCompletedSuboperations"), + "00001022": ("US", "1", "Number of Failed Sub-operations", "", "NumberOfFailedSuboperations"), + "00001023": ("US", "1", "Number of Warning Sub-operations", "", "NumberOfWarningSuboperations"), + "00001030": ("AE", "1", "Move Originator Application Entity Title", "", "MoveOriginatorApplicationEntityTitle"), + "00001031": ("US", "1", "Move Originator Message ID", "", "MoveOriginatorMessageID"), + "00004000": ("LT", "1", "Dialog Receiver", "Retired", "DialogReceiver"), + "00004010": ("LT", "1", "Terminal Type", "Retired", "TerminalType"), + "00005010": ("SH", "1", "Message Set ID", "Retired", "MessageSetID"), + "00005020": ("SH", "1", "End Message ID", "Retired", "EndMessageID"), + "00005110": ("LT", "1", "Display Format", "Retired", "DisplayFormat"), + "00005120": ("LT", "1", "Page Position ID", "Retired", "PagePositionID"), + "00005130": ("CS", "1", "Text Format ID", "Retired", "TextFormatID"), + "00005140": ("CS", "1", "Normal/Reverse", "Retired", "NormalReverse"), + "00005150": ("CS", "1", "Add Gray Scale", "Retired", "AddGrayScale"), + "00005160": ("CS", "1", "Borders", "Retired", "Borders"), + "00005170": ("IS", "1", "Copies", "Retired", "Copies"), + "00005180": ("CS", "1", "Command Magnification Type", "Retired", "CommandMagnificationType"), + "00005190": ("CS", "1", "Erase", "Retired", "Erase"), + "000051A0": ("CS", "1", "Print", "Retired", "Print"), + "000051B0": ("US", "1-n", "Overlays", "Retired", "Overlays"), + "00020000": ("UL", "1", "File Meta Information Group Length", "", "FileMetaInformationGroupLength"), + "00020001": ("OB", "1", "File Meta Information Version", "", "FileMetaInformationVersion"), + "00020002": ("UI", "1", "Media Storage SOP Class UID", "", "MediaStorageSOPClassUID"), + "00020003": ("UI", "1", "Media Storage SOP Instance UID", "", "MediaStorageSOPInstanceUID"), + "00020010": ("UI", "1", "Transfer Syntax UID", "", "TransferSyntaxUID"), + "00020012": ("UI", "1", "Implementation Class UID", "", "ImplementationClassUID"), + "00020013": ("SH", "1", "Implementation Version Name", "", "ImplementationVersionName"), + "00020016": ("AE", "1", "Source Application Entity Title", "", "SourceApplicationEntityTitle"), + "00020017": ("AE", "1", "Sending Application Entity Title", "", "SendingApplicationEntityTitle"), + "00020018": ("AE", "1", "Receiving Application Entity Title", "", "ReceivingApplicationEntityTitle"), + "00020100": ("UI", "1", "Private Information Creator UID", "", "PrivateInformationCreatorUID"), + "00020102": ("OB", "1", "Private Information", "", "PrivateInformation"), + "00041130": ("CS", "1", "File-set ID", "", "FileSetID"), + "00041141": ("CS", "1-8", "File-set Descriptor File ID", "", "FileSetDescriptorFileID"), + "00041142": ("CS", "1", "Specific Character Set of File-set Descriptor File", "", "SpecificCharacterSetOfFileSetDescriptorFile"), + "00041200": ("UL", "1", "Offset of the First Directory Record of the Root Directory Entity", "", "OffsetOfTheFirstDirectoryRecordOfTheRootDirectoryEntity"), + "00041202": ("UL", "1", "Offset of the Last Directory Record of the Root Directory Entity", "", "OffsetOfTheLastDirectoryRecordOfTheRootDirectoryEntity"), + "00041212": ("US", "1", "File-set Consistency Flag", "", "FileSetConsistencyFlag"), + "00041220": ("SQ", "1", "Directory Record Sequence", "", "DirectoryRecordSequence"), + "00041400": ("UL", "1", "Offset of the Next Directory Record", "", "OffsetOfTheNextDirectoryRecord"), + "00041410": ("US", "1", "Record In-use Flag", "", "RecordInUseFlag"), + "00041420": ("UL", "1", "Offset of Referenced Lower-Level Directory Entity", "", "OffsetOfReferencedLowerLevelDirectoryEntity"), + "00041430": ("CS", "1", "Directory Record Type", "", "DirectoryRecordType"), + "00041432": ("UI", "1", "Private Record UID", "", "PrivateRecordUID"), + "00041500": ("CS", "1-8", "Referenced File ID", "", "ReferencedFileID"), + "00041504": ("UL", "1", "MRDR Directory Record Offset", "Retired", "MRDRDirectoryRecordOffset"), + "00041510": ("UI", "1", "Referenced SOP Class UID in File", "", "ReferencedSOPClassUIDInFile"), + "00041511": ("UI", "1", "Referenced SOP Instance UID in File", "", "ReferencedSOPInstanceUIDInFile"), + "00041512": ("UI", "1", "Referenced Transfer Syntax UID in File", "", "ReferencedTransferSyntaxUIDInFile"), + "0004151A": ("UI", "1-n", "Referenced Related General SOP Class UID in File", "", "ReferencedRelatedGeneralSOPClassUIDInFile"), + "00041600": ("UL", "1", "Number of References", "Retired", "NumberOfReferences"), + "00080001": ("UL", "1", "Length to End", "Retired", "LengthToEnd"), + "00080005": ("CS", "1-n", "Specific Character Set", "", "SpecificCharacterSet"), + "00080006": ("SQ", "1", "Language Code Sequence", "", "LanguageCodeSequence"), + "00080008": ("CS", "2-n", "Image Type", "", "ImageType"), + "00080010": ("SH", "1", "Recognition Code", "Retired", "RecognitionCode"), + "00080012": ("DA", "1", "Instance Creation Date", "", "InstanceCreationDate"), + "00080013": ("TM", "1", "Instance Creation Time", "", "InstanceCreationTime"), + "00080014": ("UI", "1", "Instance Creator UID", "", "InstanceCreatorUID"), + "00080015": ("DT", "1", "Instance Coercion DateTime", "", "InstanceCoercionDateTime"), + "00080016": ("UI", "1", "SOP Class UID", "", "SOPClassUID"), + "00080018": ("UI", "1", "SOP Instance UID", "", "SOPInstanceUID"), + "0008001A": ("UI", "1-n", "Related General SOP Class UID", "", "RelatedGeneralSOPClassUID"), + "0008001B": ("UI", "1", "Original Specialized SOP Class UID", "", "OriginalSpecializedSOPClassUID"), + "00080020": ("DA", "1", "Study Date", "", "StudyDate"), + "00080021": ("DA", "1", "Series Date", "", "SeriesDate"), + "00080022": ("DA", "1", "Acquisition Date", "", "AcquisitionDate"), + "00080023": ("DA", "1", "Content Date", "", "ContentDate"), + "00080024": ("DA", "1", "Overlay Date", "Retired", "OverlayDate"), + "00080025": ("DA", "1", "Curve Date", "Retired", "CurveDate"), + "0008002A": ("DT", "1", "Acquisition DateTime", "", "AcquisitionDateTime"), + "00080030": ("TM", "1", "Study Time", "", "StudyTime"), + "00080031": ("TM", "1", "Series Time", "", "SeriesTime"), + "00080032": ("TM", "1", "Acquisition Time", "", "AcquisitionTime"), + "00080033": ("TM", "1", "Content Time", "", "ContentTime"), + "00080034": ("TM", "1", "Overlay Time", "Retired", "OverlayTime"), + "00080035": ("TM", "1", "Curve Time", "Retired", "CurveTime"), + "00080040": ("US", "1", "Data Set Type", "Retired", "DataSetType"), + "00080041": ("LO", "1", "Data Set Subtype", "Retired", "DataSetSubtype"), + "00080042": ("CS", "1", "Nuclear Medicine Series Type", "Retired", "NuclearMedicineSeriesType"), + "00080050": ("SH", "1", "Accession Number", "", "AccessionNumber"), + "00080051": ("SQ", "1", "Issuer of Accession Number Sequence", "", "IssuerOfAccessionNumberSequence"), + "00080052": ("CS", "1", "Query/Retrieve Level", "", "QueryRetrieveLevel"), + "00080053": ("CS", "1", "Query/Retrieve View", "", "QueryRetrieveView"), + "00080054": ("AE", "1-n", "Retrieve AE Title", "", "RetrieveAETitle"), + "00080055": ("AE", "1", "Station AE Title", "", "StationAETitle"), + "00080056": ("CS", "1", "Instance Availability", "", "InstanceAvailability"), + "00080058": ("UI", "1-n", "Failed SOP Instance UID List", "", "FailedSOPInstanceUIDList"), + "00080060": ("CS", "1", "Modality", "", "Modality"), + "00080061": ("CS", "1-n", "Modalities in Study", "", "ModalitiesInStudy"), + "00080062": ("UI", "1-n", "SOP Classes in Study", "", "SOPClassesInStudy"), + "00080063": ("SQ", "1", "Anatomic Regions in Study Code Sequence", "", "AnatomicRegionsInStudyCodeSequence"), + "00080064": ("CS", "1", "Conversion Type", "", "ConversionType"), + "00080068": ("CS", "1", "Presentation Intent Type", "", "PresentationIntentType"), + "00080070": ("LO", "1", "Manufacturer", "", "Manufacturer"), + "00080080": ("LO", "1", "Institution Name", "", "InstitutionName"), + "00080081": ("ST", "1", "Institution Address", "", "InstitutionAddress"), + "00080082": ("SQ", "1", "Institution Code Sequence", "", "InstitutionCodeSequence"), + "00080090": ("PN", "1", "Referring Physician's Name", "", "ReferringPhysicianName"), + "00080092": ("ST", "1", "Referring Physician's Address", "", "ReferringPhysicianAddress"), + "00080094": ("SH", "1-n", "Referring Physician's Telephone Numbers", "", "ReferringPhysicianTelephoneNumbers"), + "00080096": ("SQ", "1", "Referring Physician Identification Sequence", "", "ReferringPhysicianIdentificationSequence"), + "0008009C": ("PN", "1-n", "Consulting Physician's Name", "", "ConsultingPhysicianName"), + "0008009D": ("SQ", "1", "Consulting Physician Identification Sequence", "", "ConsultingPhysicianIdentificationSequence"), + "00080100": ("SH", "1", "Code Value", "", "CodeValue"), + "00080101": ("LO", "1", "Extended Code Value", "", "ExtendedCodeValue"), + "00080102": ("SH", "1", "Coding Scheme Designator", "", "CodingSchemeDesignator"), + "00080103": ("SH", "1", "Coding Scheme Version", "", "CodingSchemeVersion"), + "00080104": ("LO", "1", "Code Meaning", "", "CodeMeaning"), + "00080105": ("CS", "1", "Mapping Resource", "", "MappingResource"), + "00080106": ("DT", "1", "Context Group Version", "", "ContextGroupVersion"), + "00080107": ("DT", "1", "Context Group Local Version", "", "ContextGroupLocalVersion"), + "00080108": ("LT", "1", "Extended Code Meaning", "", "ExtendedCodeMeaning"), + "00080109": ("SQ", "1", "Coding Scheme Resources Sequence", "", "CodingSchemeResourcesSequence"), + "0008010A": ("CS", "1", "Coding Scheme URL Type", "", "CodingSchemeURLType"), + "0008010B": ("CS", "1", "Context Group Extension Flag", "", "ContextGroupExtensionFlag"), + "0008010C": ("UI", "1", "Coding Scheme UID", "", "CodingSchemeUID"), + "0008010D": ("UI", "1", "Context Group Extension Creator UID", "", "ContextGroupExtensionCreatorUID"), + "0008010E": ("UR", "1", "Coding Scheme URL", "", "CodingSchemeURL"), + "0008010F": ("CS", "1", "Context Identifier", "", "ContextIdentifier"), + "00080110": ("SQ", "1", "Coding Scheme Identification Sequence", "", "CodingSchemeIdentificationSequence"), + "00080112": ("LO", "1", "Coding Scheme Registry", "", "CodingSchemeRegistry"), + "00080114": ("ST", "1", "Coding Scheme External ID", "", "CodingSchemeExternalID"), + "00080115": ("ST", "1", "Coding Scheme Name", "", "CodingSchemeName"), + "00080116": ("ST", "1", "Coding Scheme Responsible Organization", "", "CodingSchemeResponsibleOrganization"), + "00080117": ("UI", "1", "Context UID", "", "ContextUID"), + "00080118": ("UI", "1", "Mapping Resource UID", "", "MappingResourceUID"), + "00080119": ("UC", "1", "Long Code Value", "", "LongCodeValue"), + "00080120": ("UR", "1", "URN Code Value", "", "URNCodeValue"), + "00080121": ("SQ", "1", "Equivalent Code Sequence", "", "EquivalentCodeSequence"), + "00080122": ("LO", "1", "Mapping Resource Name", "", "MappingResourceName"), + "00080123": ("SQ", "1", "Context Group Identification Sequence", "", "ContextGroupIdentificationSequence"), + "00080124": ("SQ", "1", "Mapping Resource Identification Sequence", "", "MappingResourceIdentificationSequence"), + "00080201": ("SH", "1", "Timezone Offset From UTC", "", "TimezoneOffsetFromUTC"), + "00080220": ("SQ", "1", "Responsible Group Code Sequence", "", "ResponsibleGroupCodeSequence"), + "00080221": ("CS", "1", "Equipment Modality", "", "EquipmentModality"), + "00080222": ("LO", "1", "Manufacturer's Related Model Group", "", "ManufacturerRelatedModelGroup"), + "00080300": ("SQ", "1", "Private Data Element Characteristics Sequence", "", "PrivateDataElementCharacteristicsSequence"), + "00080301": ("US", "1", "Private Group Reference", "", "PrivateGroupReference"), + "00080302": ("LO", "1", "Private Creator Reference", "", "PrivateCreatorReference"), + "00080303": ("CS", "1", "Block Identifying Information Status", "", "BlockIdentifyingInformationStatus"), + "00080304": ("US", "1-n", "Nonidentifying Private Elements", "", "NonidentifyingPrivateElements"), + "00080305": ("SQ", "1", "Deidentification Action Sequence", "", "DeidentificationActionSequence"), + "00080306": ("US", "1-n", "Identifying Private Elements", "", "IdentifyingPrivateElements"), + "00080307": ("CS", "1", "Deidentification Action", "", "DeidentificationAction"), + "00080308": ("US", "1", "Private Data Element", "", "PrivateDataElement"), + "00080309": ("UL", "1-3", "Private Data Element Value Multiplicity", "", "PrivateDataElementValueMultiplicity"), + "0008030A": ("CS", "1", "Private Data Element Value Representation", "", "PrivateDataElementValueRepresentation"), + "0008030B": ("UL", "1-2", "Private Data Element Number of Items", "", "PrivateDataElementNumberOfItems"), + "0008030C": ("UC", "1", "Private Data Element Name", "", "PrivateDataElementName"), + "0008030D": ("UC", "1", "Private Data Element Keyword", "", "PrivateDataElementKeyword"), + "0008030E": ("UT", "1", "Private Data Element Description", "", "PrivateDataElementDescription"), + "0008030F": ("UT", "1", "Private Data Element Encoding", "", "PrivateDataElementEncoding"), + "00080310": ("SQ", "1", "Private Data Element Definition Sequence", "", "PrivateDataElementDefinitionSequence"), + "00081000": ("AE", "1", "Network ID", "Retired", "NetworkID"), + "00081010": ("SH", "1", "Station Name", "", "StationName"), + "00081030": ("LO", "1", "Study Description", "", "StudyDescription"), + "00081032": ("SQ", "1", "Procedure Code Sequence", "", "ProcedureCodeSequence"), + "0008103E": ("LO", "1", "Series Description", "", "SeriesDescription"), + "0008103F": ("SQ", "1", "Series Description Code Sequence", "", "SeriesDescriptionCodeSequence"), + "00081040": ("LO", "1", "Institutional Department Name", "", "InstitutionalDepartmentName"), + "00081048": ("PN", "1-n", "Physician(s) of Record", "", "PhysiciansOfRecord"), + "00081049": ("SQ", "1", "Physician(s) of Record Identification Sequence", "", "PhysiciansOfRecordIdentificationSequence"), + "00081050": ("PN", "1-n", "Performing Physician's Name", "", "PerformingPhysicianName"), + "00081052": ("SQ", "1", "Performing Physician Identification Sequence", "", "PerformingPhysicianIdentificationSequence"), + "00081060": ("PN", "1-n", "Name of Physician(s) Reading Study", "", "NameOfPhysiciansReadingStudy"), + "00081062": ("SQ", "1", "Physician(s) Reading Study Identification Sequence", "", "PhysiciansReadingStudyIdentificationSequence"), + "00081070": ("PN", "1-n", "Operators' Name", "", "OperatorsName"), + "00081072": ("SQ", "1", "Operator Identification Sequence", "", "OperatorIdentificationSequence"), + "00081080": ("LO", "1-n", "Admitting Diagnoses Description", "", "AdmittingDiagnosesDescription"), + "00081084": ("SQ", "1", "Admitting Diagnoses Code Sequence", "", "AdmittingDiagnosesCodeSequence"), + "00081090": ("LO", "1", "Manufacturer's Model Name", "", "ManufacturerModelName"), + "00081100": ("SQ", "1", "Referenced Results Sequence", "Retired", "ReferencedResultsSequence"), + "00081110": ("SQ", "1", "Referenced Study Sequence", "", "ReferencedStudySequence"), + "00081111": ("SQ", "1", "Referenced Performed Procedure Step Sequence", "", "ReferencedPerformedProcedureStepSequence"), + "00081115": ("SQ", "1", "Referenced Series Sequence", "", "ReferencedSeriesSequence"), + "00081120": ("SQ", "1", "Referenced Patient Sequence", "", "ReferencedPatientSequence"), + "00081125": ("SQ", "1", "Referenced Visit Sequence", "", "ReferencedVisitSequence"), + "00081130": ("SQ", "1", "Referenced Overlay Sequence", "Retired", "ReferencedOverlaySequence"), + "00081134": ("SQ", "1", "Referenced Stereometric Instance Sequence", "", "ReferencedStereometricInstanceSequence"), + "0008113A": ("SQ", "1", "Referenced Waveform Sequence", "", "ReferencedWaveformSequence"), + "00081140": ("SQ", "1", "Referenced Image Sequence", "", "ReferencedImageSequence"), + "00081145": ("SQ", "1", "Referenced Curve Sequence", "Retired", "ReferencedCurveSequence"), + "0008114A": ("SQ", "1", "Referenced Instance Sequence", "", "ReferencedInstanceSequence"), + "0008114B": ("SQ", "1", "Referenced Real World Value Mapping Instance Sequence", "", "ReferencedRealWorldValueMappingInstanceSequence"), + "00081150": ("UI", "1", "Referenced SOP Class UID", "", "ReferencedSOPClassUID"), + "00081155": ("UI", "1", "Referenced SOP Instance UID", "", "ReferencedSOPInstanceUID"), + "00081156": ("SQ", "1", "Definition Source Sequence", "", "DefinitionSourceSequence"), + "0008115A": ("UI", "1-n", "SOP Classes Supported", "", "SOPClassesSupported"), + "00081160": ("IS", "1-n", "Referenced Frame Number", "", "ReferencedFrameNumber"), + "00081161": ("UL", "1-n", "Simple Frame List", "", "SimpleFrameList"), + "00081162": ("UL", "3-3n", "Calculated Frame List", "", "CalculatedFrameList"), + "00081163": ("FD", "2", "Time Range", "", "TimeRange"), + "00081164": ("SQ", "1", "Frame Extraction Sequence", "", "FrameExtractionSequence"), + "00081167": ("UI", "1", "Multi-frame Source SOP Instance UID", "", "MultiFrameSourceSOPInstanceUID"), + "00081190": ("UR", "1", "Retrieve URL", "", "RetrieveURL"), + "00081195": ("UI", "1", "Transaction UID", "", "TransactionUID"), + "00081196": ("US", "1", "Warning Reason", "", "WarningReason"), + "00081197": ("US", "1", "Failure Reason", "", "FailureReason"), + "00081198": ("SQ", "1", "Failed SOP Sequence", "", "FailedSOPSequence"), + "00081199": ("SQ", "1", "Referenced SOP Sequence", "", "ReferencedSOPSequence"), + "0008119A": ("SQ", "1", "Other Failures Sequence", "", "OtherFailuresSequence"), + "00081200": ("SQ", "1", "Studies Containing Other Referenced Instances Sequence", "", "StudiesContainingOtherReferencedInstancesSequence"), + "00081250": ("SQ", "1", "Related Series Sequence", "", "RelatedSeriesSequence"), + "00082110": ("CS", "1", "Lossy Image Compression (Retired)", "Retired", "LossyImageCompressionRetired"), + "00082111": ("ST", "1", "Derivation Description", "", "DerivationDescription"), + "00082112": ("SQ", "1", "Source Image Sequence", "", "SourceImageSequence"), + "00082120": ("SH", "1", "Stage Name", "", "StageName"), + "00082122": ("IS", "1", "Stage Number", "", "StageNumber"), + "00082124": ("IS", "1", "Number of Stages", "", "NumberOfStages"), + "00082127": ("SH", "1", "View Name", "", "ViewName"), + "00082128": ("IS", "1", "View Number", "", "ViewNumber"), + "00082129": ("IS", "1", "Number of Event Timers", "", "NumberOfEventTimers"), + "0008212A": ("IS", "1", "Number of Views in Stage", "", "NumberOfViewsInStage"), + "00082130": ("DS", "1-n", "Event Elapsed Time(s)", "", "EventElapsedTimes"), + "00082132": ("LO", "1-n", "Event Timer Name(s)", "", "EventTimerNames"), + "00082133": ("SQ", "1", "Event Timer Sequence", "", "EventTimerSequence"), + "00082134": ("FD", "1", "Event Time Offset", "", "EventTimeOffset"), + "00082135": ("SQ", "1", "Event Code Sequence", "", "EventCodeSequence"), + "00082142": ("IS", "1", "Start Trim", "", "StartTrim"), + "00082143": ("IS", "1", "Stop Trim", "", "StopTrim"), + "00082144": ("IS", "1", "Recommended Display Frame Rate", "", "RecommendedDisplayFrameRate"), + "00082200": ("CS", "1", "Transducer Position", "Retired", "TransducerPosition"), + "00082204": ("CS", "1", "Transducer Orientation", "Retired", "TransducerOrientation"), + "00082208": ("CS", "1", "Anatomic Structure", "Retired", "AnatomicStructure"), + "00082218": ("SQ", "1", "Anatomic Region Sequence", "", "AnatomicRegionSequence"), + "00082220": ("SQ", "1", "Anatomic Region Modifier Sequence", "", "AnatomicRegionModifierSequence"), + "00082228": ("SQ", "1", "Primary Anatomic Structure Sequence", "", "PrimaryAnatomicStructureSequence"), + "00082229": ("SQ", "1", "Anatomic Structure, Space or Region Sequence", "Retired", "AnatomicStructureSpaceOrRegionSequence"), + "00082230": ("SQ", "1", "Primary Anatomic Structure Modifier Sequence", "", "PrimaryAnatomicStructureModifierSequence"), + "00082240": ("SQ", "1", "Transducer Position Sequence", "Retired", "TransducerPositionSequence"), + "00082242": ("SQ", "1", "Transducer Position Modifier Sequence", "Retired", "TransducerPositionModifierSequence"), + "00082244": ("SQ", "1", "Transducer Orientation Sequence", "Retired", "TransducerOrientationSequence"), + "00082246": ("SQ", "1", "Transducer Orientation Modifier Sequence", "Retired", "TransducerOrientationModifierSequence"), + "00082251": ("SQ", "1", "Anatomic Structure Space Or Region Code Sequence (Trial)", "Retired", "AnatomicStructureSpaceOrRegionCodeSequenceTrial"), + "00082253": ("SQ", "1", "Anatomic Portal Of Entrance Code Sequence (Trial)", "Retired", "AnatomicPortalOfEntranceCodeSequenceTrial"), + "00082255": ("SQ", "1", "Anatomic Approach Direction Code Sequence (Trial)", "Retired", "AnatomicApproachDirectionCodeSequenceTrial"), + "00082256": ("ST", "1", "Anatomic Perspective Description (Trial)", "Retired", "AnatomicPerspectiveDescriptionTrial"), + "00082257": ("SQ", "1", "Anatomic Perspective Code Sequence (Trial)", "Retired", "AnatomicPerspectiveCodeSequenceTrial"), + "00082258": ("ST", "1", "Anatomic Location Of Examining Instrument Description (Trial)", "Retired", "AnatomicLocationOfExaminingInstrumentDescriptionTrial"), + "00082259": ("SQ", "1", "Anatomic Location Of Examining Instrument Code Sequence (Trial)", "Retired", "AnatomicLocationOfExaminingInstrumentCodeSequenceTrial"), + "0008225A": ("SQ", "1", "Anatomic Structure Space Or Region Modifier Code Sequence (Trial)", "Retired", "AnatomicStructureSpaceOrRegionModifierCodeSequenceTrial"), + "0008225C": ("SQ", "1", "On Axis Background Anatomic Structure Code Sequence (Trial)", "Retired", "OnAxisBackgroundAnatomicStructureCodeSequenceTrial"), + "00083001": ("SQ", "1", "Alternate Representation Sequence", "", "AlternateRepresentationSequence"), + "00083010": ("UI", "1-n", "Irradiation Event UID", "", "IrradiationEventUID"), + "00083011": ("SQ", "1", "Source Irradiation Event Sequence", "", "SourceIrradiationEventSequence"), + "00083012": ("UI", "1", "Radiopharmaceutical Administration Event UID", "", "RadiopharmaceuticalAdministrationEventUID"), + "00084000": ("LT", "1", "Identifying Comments", "Retired", "IdentifyingComments"), + "00089007": ("CS", "4", "Frame Type", "", "FrameType"), + "00089092": ("SQ", "1", "Referenced Image Evidence Sequence", "", "ReferencedImageEvidenceSequence"), + "00089121": ("SQ", "1", "Referenced Raw Data Sequence", "", "ReferencedRawDataSequence"), + "00089123": ("UI", "1", "Creator-Version UID", "", "CreatorVersionUID"), + "00089124": ("SQ", "1", "Derivation Image Sequence", "", "DerivationImageSequence"), + "00089154": ("SQ", "1", "Source Image Evidence Sequence", "", "SourceImageEvidenceSequence"), + "00089205": ("CS", "1", "Pixel Presentation", "", "PixelPresentation"), + "00089206": ("CS", "1", "Volumetric Properties", "", "VolumetricProperties"), + "00089207": ("CS", "1", "Volume Based Calculation Technique", "", "VolumeBasedCalculationTechnique"), + "00089208": ("CS", "1", "Complex Image Component", "", "ComplexImageComponent"), + "00089209": ("CS", "1", "Acquisition Contrast", "", "AcquisitionContrast"), + "00089215": ("SQ", "1", "Derivation Code Sequence", "", "DerivationCodeSequence"), + "00089237": ("SQ", "1", "Referenced Presentation State Sequence", "", "ReferencedPresentationStateSequence"), + "00089410": ("SQ", "1", "Referenced Other Plane Sequence", "", "ReferencedOtherPlaneSequence"), + "00089458": ("SQ", "1", "Frame Display Sequence", "", "FrameDisplaySequence"), + "00089459": ("FL", "1", "Recommended Display Frame Rate in Float", "", "RecommendedDisplayFrameRateInFloat"), + "00089460": ("CS", "1", "Skip Frame Range Flag", "", "SkipFrameRangeFlag"), + "00100010": ("PN", "1", "Patient's Name", "", "PatientName"), + "00100020": ("LO", "1", "Patient ID", "", "PatientID"), + "00100021": ("LO", "1", "Issuer of Patient ID", "", "IssuerOfPatientID"), + "00100022": ("CS", "1", "Type of Patient ID", "", "TypeOfPatientID"), + "00100024": ("SQ", "1", "Issuer of Patient ID Qualifiers Sequence", "", "IssuerOfPatientIDQualifiersSequence"), + "00100026": ("SQ", "1", "Source Patient Group Identification Sequence", "", "SourcePatientGroupIdentificationSequence"), + "00100027": ("SQ", "1", "Group of Patients Identification Sequence", "", "GroupOfPatientsIdentificationSequence"), + "00100028": ("US", "3", "Subject Relative Position in Image", "", "SubjectRelativePositionInImage"), + "00100030": ("DA", "1", "Patient's Birth Date", "", "PatientBirthDate"), + "00100032": ("TM", "1", "Patient's Birth Time", "", "PatientBirthTime"), + "00100033": ("LO", "1", "Patient's Birth Date in Alternative Calendar", "", "PatientBirthDateInAlternativeCalendar"), + "00100034": ("LO", "1", "Patient's Death Date in Alternative Calendar", "", "PatientDeathDateInAlternativeCalendar"), + "00100035": ("CS", "1", "Patient's Alternative Calendar", "", "PatientAlternativeCalendar"), + "00100040": ("CS", "1", "Patient's Sex", "", "PatientSex"), + "00100050": ("SQ", "1", "Patient's Insurance Plan Code Sequence", "", "PatientInsurancePlanCodeSequence"), + "00100101": ("SQ", "1", "Patient's Primary Language Code Sequence", "", "PatientPrimaryLanguageCodeSequence"), + "00100102": ("SQ", "1", "Patient's Primary Language Modifier Code Sequence", "", "PatientPrimaryLanguageModifierCodeSequence"), + "00100200": ("CS", "1", "Quality Control Subject", "", "QualityControlSubject"), + "00100201": ("SQ", "1", "Quality Control Subject Type Code Sequence", "", "QualityControlSubjectTypeCodeSequence"), + "00100212": ("UC", "1", "Strain Description", "", "StrainDescription"), + "00100213": ("LO", "1", "Strain Nomenclature", "", "StrainNomenclature"), + "00100214": ("LO", "1", "Strain Stock Number", "", "StrainStockNumber"), + "00100215": ("SQ", "1", "Strain Source Registry Code Sequence", "", "StrainSourceRegistryCodeSequence"), + "00100216": ("SQ", "1", "Strain Stock Sequence", "", "StrainStockSequence"), + "00100217": ("LO", "1", "Strain Source", "", "StrainSource"), + "00100218": ("UT", "1", "Strain Additional Information", "", "StrainAdditionalInformation"), + "00100219": ("SQ", "1", "Strain Code Sequence", "", "StrainCodeSequence"), + "00100221": ("SQ", "1", "Genetic Modifications Sequence", "", "GeneticModificationsSequence"), + "00100222": ("UC", "1", "Genetic Modifications Description", "", "GeneticModificationsDescription"), + "00100223": ("LO", "1", "Genetic Modifications Nomenclature", "", "GeneticModificationsNomenclature"), + "00100229": ("SQ", "1", "Genetic Modifications Code Sequence", "", "GeneticModificationsCodeSequence"), + "00101000": ("LO", "1-n", "Other Patient IDs", "Retired", "OtherPatientIDs"), + "00101001": ("PN", "1-n", "Other Patient Names", "", "OtherPatientNames"), + "00101002": ("SQ", "1", "Other Patient IDs Sequence", "", "OtherPatientIDsSequence"), + "00101005": ("PN", "1", "Patient's Birth Name", "", "PatientBirthName"), + "00101010": ("AS", "1", "Patient's Age", "", "PatientAge"), + "00101020": ("DS", "1", "Patient's Size", "", "PatientSize"), + "00101021": ("SQ", "1", "Patient's Size Code Sequence", "", "PatientSizeCodeSequence"), + "00101022": ("DS", "1", "Patient's Body Mass Index", "", "PatientBodyMassIndex"), + "00101023": ("DS", "1", "Measured AP Dimension", "", "MeasuredAPDimension"), + "00101024": ("DS", "1", "Measured Lateral Dimension", "", "MeasuredLateralDimension"), + "00101030": ("DS", "1", "Patient's Weight", "", "PatientWeight"), + "00101040": ("LO", "1", "Patient's Address", "", "PatientAddress"), + "00101050": ("LO", "1-n", "Insurance Plan Identification", "Retired", "InsurancePlanIdentification"), + "00101060": ("PN", "1", "Patient's Mother's Birth Name", "", "PatientMotherBirthName"), + "00101080": ("LO", "1", "Military Rank", "", "MilitaryRank"), + "00101081": ("LO", "1", "Branch of Service", "", "BranchOfService"), + "00101090": ("LO", "1", "Medical Record Locator", "Retired", "MedicalRecordLocator"), + "00101100": ("SQ", "1", "Referenced Patient Photo Sequence", "", "ReferencedPatientPhotoSequence"), + "00102000": ("LO", "1-n", "Medical Alerts", "", "MedicalAlerts"), + "00102110": ("LO", "1-n", "Allergies", "", "Allergies"), + "00102150": ("LO", "1", "Country of Residence", "", "CountryOfResidence"), + "00102152": ("LO", "1", "Region of Residence", "", "RegionOfResidence"), + "00102154": ("SH", "1-n", "Patient's Telephone Numbers", "", "PatientTelephoneNumbers"), + "00102155": ("LT", "1", "Patient's Telecom Information", "", "PatientTelecomInformation"), + "00102160": ("SH", "1", "Ethnic Group", "", "EthnicGroup"), + "00102180": ("SH", "1", "Occupation", "", "Occupation"), + "001021A0": ("CS", "1", "Smoking Status", "", "SmokingStatus"), + "001021B0": ("LT", "1", "Additional Patient History", "", "AdditionalPatientHistory"), + "001021C0": ("US", "1", "Pregnancy Status", "", "PregnancyStatus"), + "001021D0": ("DA", "1", "Last Menstrual Date", "", "LastMenstrualDate"), + "001021F0": ("LO", "1", "Patient's Religious Preference", "", "PatientReligiousPreference"), + "00102201": ("LO", "1", "Patient Species Description", "", "PatientSpeciesDescription"), + "00102202": ("SQ", "1", "Patient Species Code Sequence", "", "PatientSpeciesCodeSequence"), + "00102203": ("CS", "1", "Patient's Sex Neutered", "", "PatientSexNeutered"), + "00102210": ("CS", "1", "Anatomical Orientation Type", "", "AnatomicalOrientationType"), + "00102292": ("LO", "1", "Patient Breed Description", "", "PatientBreedDescription"), + "00102293": ("SQ", "1", "Patient Breed Code Sequence", "", "PatientBreedCodeSequence"), + "00102294": ("SQ", "1", "Breed Registration Sequence", "", "BreedRegistrationSequence"), + "00102295": ("LO", "1", "Breed Registration Number", "", "BreedRegistrationNumber"), + "00102296": ("SQ", "1", "Breed Registry Code Sequence", "", "BreedRegistryCodeSequence"), + "00102297": ("PN", "1", "Responsible Person", "", "ResponsiblePerson"), + "00102298": ("CS", "1", "Responsible Person Role", "", "ResponsiblePersonRole"), + "00102299": ("LO", "1", "Responsible Organization", "", "ResponsibleOrganization"), + "00104000": ("LT", "1", "Patient Comments", "", "PatientComments"), + "00109431": ("FL", "1", "Examined Body Thickness", "", "ExaminedBodyThickness"), + "00120010": ("LO", "1", "Clinical Trial Sponsor Name", "", "ClinicalTrialSponsorName"), + "00120020": ("LO", "1", "Clinical Trial Protocol ID", "", "ClinicalTrialProtocolID"), + "00120021": ("LO", "1", "Clinical Trial Protocol Name", "", "ClinicalTrialProtocolName"), + "00120030": ("LO", "1", "Clinical Trial Site ID", "", "ClinicalTrialSiteID"), + "00120031": ("LO", "1", "Clinical Trial Site Name", "", "ClinicalTrialSiteName"), + "00120040": ("LO", "1", "Clinical Trial Subject ID", "", "ClinicalTrialSubjectID"), + "00120042": ("LO", "1", "Clinical Trial Subject Reading ID", "", "ClinicalTrialSubjectReadingID"), + "00120050": ("LO", "1", "Clinical Trial Time Point ID", "", "ClinicalTrialTimePointID"), + "00120051": ("ST", "1", "Clinical Trial Time Point Description", "", "ClinicalTrialTimePointDescription"), + "00120052": ("FD", "1", "Longitudinal Temporal Offset from Event", "", "LongitudinalTemporalOffsetFromEvent"), + "00120053": ("CS", "1", "Longitudinal Temporal Event Type", "", "LongitudinalTemporalEventType"), + "00120060": ("LO", "1", "Clinical Trial Coordinating Center Name", "", "ClinicalTrialCoordinatingCenterName"), + "00120062": ("CS", "1", "Patient Identity Removed", "", "PatientIdentityRemoved"), + "00120063": ("LO", "1-n", "De-identification Method", "", "DeidentificationMethod"), + "00120064": ("SQ", "1", "De-identification Method Code Sequence", "", "DeidentificationMethodCodeSequence"), + "00120071": ("LO", "1", "Clinical Trial Series ID", "", "ClinicalTrialSeriesID"), + "00120072": ("LO", "1", "Clinical Trial Series Description", "", "ClinicalTrialSeriesDescription"), + "00120081": ("LO", "1", "Clinical Trial Protocol Ethics Committee Name", "", "ClinicalTrialProtocolEthicsCommitteeName"), + "00120082": ("LO", "1", "Clinical Trial Protocol Ethics Committee Approval Number", "", "ClinicalTrialProtocolEthicsCommitteeApprovalNumber"), + "00120083": ("SQ", "1", "Consent for Clinical Trial Use Sequence", "", "ConsentForClinicalTrialUseSequence"), + "00120084": ("CS", "1", "Distribution Type", "", "DistributionType"), + "00120085": ("CS", "1", "Consent for Distribution Flag", "", "ConsentForDistributionFlag"), + "00120086": ("DA", "1", "Ethics Committee Approval Effectiveness Start Date", "", "EthicsCommitteeApprovalEffectivenessStartDate"), + "00120087": ("DA", "1", "Ethics Committee Approval Effectiveness End Date", "", "EthicsCommitteeApprovalEffectivenessEndDate"), + "00140023": ("ST", "1", "CAD File Format", "Retired", "CADFileFormat"), + "00140024": ("ST", "1", "Component Reference System", "Retired", "ComponentReferenceSystem"), + "00140025": ("ST", "1", "Component Manufacturing Procedure", "", "ComponentManufacturingProcedure"), + "00140028": ("ST", "1", "Component Manufacturer", "", "ComponentManufacturer"), + "00140030": ("DS", "1-n", "Material Thickness", "", "MaterialThickness"), + "00140032": ("DS", "1-n", "Material Pipe Diameter", "", "MaterialPipeDiameter"), + "00140034": ("DS", "1-n", "Material Isolation Diameter", "", "MaterialIsolationDiameter"), + "00140042": ("ST", "1", "Material Grade", "", "MaterialGrade"), + "00140044": ("ST", "1", "Material Properties Description", "", "MaterialPropertiesDescription"), + "00140045": ("ST", "1", "Material Properties File Format (Retired)", "Retired", "MaterialPropertiesFileFormatRetired"), + "00140046": ("LT", "1", "Material Notes", "", "MaterialNotes"), + "00140050": ("CS", "1", "Component Shape", "", "ComponentShape"), + "00140052": ("CS", "1", "Curvature Type", "", "CurvatureType"), + "00140054": ("DS", "1", "Outer Diameter", "", "OuterDiameter"), + "00140056": ("DS", "1", "Inner Diameter", "", "InnerDiameter"), + "00140100": ("LO", "1-n", "Component Welder IDs", "", "ComponentWelderIDs"), + "00140101": ("CS", "1", "Secondary Approval Status", "", "SecondaryApprovalStatus"), + "00140102": ("DA", "1", "Secondary Review Date", "", "SecondaryReviewDate"), + "00140103": ("TM", "1", "Secondary Review Time", "", "SecondaryReviewTime"), + "00140104": ("PN", "1", "Secondary Reviewer Name", "", "SecondaryReviewerName"), + "00140105": ("ST", "1", "Repair ID", "", "RepairID"), + "00140106": ("SQ", "1", "Multiple Component Approval Sequence", "", "MultipleComponentApprovalSequence"), + "00140107": ("CS", "1-n", "Other Approval Status", "", "OtherApprovalStatus"), + "00140108": ("CS", "1-n", "Other Secondary Approval Status", "", "OtherSecondaryApprovalStatus"), + "00141010": ("ST", "1", "Actual Environmental Conditions", "", "ActualEnvironmentalConditions"), + "00141020": ("DA", "1", "Expiry Date", "", "ExpiryDate"), + "00141040": ("ST", "1", "Environmental Conditions", "", "EnvironmentalConditions"), + "00142002": ("SQ", "1", "Evaluator Sequence", "", "EvaluatorSequence"), + "00142004": ("IS", "1", "Evaluator Number", "", "EvaluatorNumber"), + "00142006": ("PN", "1", "Evaluator Name", "", "EvaluatorName"), + "00142008": ("IS", "1", "Evaluation Attempt", "", "EvaluationAttempt"), + "00142012": ("SQ", "1", "Indication Sequence", "", "IndicationSequence"), + "00142014": ("IS", "1", "Indication Number", "", "IndicationNumber"), + "00142016": ("SH", "1", "Indication Label", "", "IndicationLabel"), + "00142018": ("ST", "1", "Indication Description", "", "IndicationDescription"), + "0014201A": ("CS", "1-n", "Indication Type", "", "IndicationType"), + "0014201C": ("CS", "1", "Indication Disposition", "", "IndicationDisposition"), + "0014201E": ("SQ", "1", "Indication ROI Sequence", "", "IndicationROISequence"), + "00142030": ("SQ", "1", "Indication Physical Property Sequence", "", "IndicationPhysicalPropertySequence"), + "00142032": ("SH", "1", "Property Label", "", "PropertyLabel"), + "00142202": ("IS", "1", "Coordinate System Number of Axes", "", "CoordinateSystemNumberOfAxes"), + "00142204": ("SQ", "1", "Coordinate System Axes Sequence", "", "CoordinateSystemAxesSequence"), + "00142206": ("ST", "1", "Coordinate System Axis Description", "", "CoordinateSystemAxisDescription"), + "00142208": ("CS", "1", "Coordinate System Data Set Mapping", "", "CoordinateSystemDataSetMapping"), + "0014220A": ("IS", "1", "Coordinate System Axis Number", "", "CoordinateSystemAxisNumber"), + "0014220C": ("CS", "1", "Coordinate System Axis Type", "", "CoordinateSystemAxisType"), + "0014220E": ("CS", "1", "Coordinate System Axis Units", "", "CoordinateSystemAxisUnits"), + "00142210": ("OB", "1", "Coordinate System Axis Values", "", "CoordinateSystemAxisValues"), + "00142220": ("SQ", "1", "Coordinate System Transform Sequence", "", "CoordinateSystemTransformSequence"), + "00142222": ("ST", "1", "Transform Description", "", "TransformDescription"), + "00142224": ("IS", "1", "Transform Number of Axes", "", "TransformNumberOfAxes"), + "00142226": ("IS", "1-n", "Transform Order of Axes", "", "TransformOrderOfAxes"), + "00142228": ("CS", "1", "Transformed Axis Units", "", "TransformedAxisUnits"), + "0014222A": ("DS", "1-n", "Coordinate System Transform Rotation and Scale Matrix", "", "CoordinateSystemTransformRotationAndScaleMatrix"), + "0014222C": ("DS", "1-n", "Coordinate System Transform Translation Matrix", "", "CoordinateSystemTransformTranslationMatrix"), + "00143011": ("DS", "1", "Internal Detector Frame Time", "", "InternalDetectorFrameTime"), + "00143012": ("DS", "1", "Number of Frames Integrated", "", "NumberOfFramesIntegrated"), + "00143020": ("SQ", "1", "Detector Temperature Sequence", "", "DetectorTemperatureSequence"), + "00143022": ("ST", "1", "Sensor Name", "", "SensorName"), + "00143024": ("DS", "1", "Horizontal Offset of Sensor", "", "HorizontalOffsetOfSensor"), + "00143026": ("DS", "1", "Vertical Offset of Sensor", "", "VerticalOffsetOfSensor"), + "00143028": ("DS", "1", "Sensor Temperature", "", "SensorTemperature"), + "00143040": ("SQ", "1", "Dark Current Sequence", "", "DarkCurrentSequence"), + "00143050": ("OB or OW", "1", "Dark Current Counts", "", "DarkCurrentCounts"), + "00143060": ("SQ", "1", "Gain Correction Reference Sequence", "", "GainCorrectionReferenceSequence"), + "00143070": ("OB or OW", "1", "Air Counts", "", "AirCounts"), + "00143071": ("DS", "1", "KV Used in Gain Calibration", "", "KVUsedInGainCalibration"), + "00143072": ("DS", "1", "MA Used in Gain Calibration", "", "MAUsedInGainCalibration"), + "00143073": ("DS", "1", "Number of Frames Used for Integration", "", "NumberOfFramesUsedForIntegration"), + "00143074": ("LO", "1", "Filter Material Used in Gain Calibration", "", "FilterMaterialUsedInGainCalibration"), + "00143075": ("DS", "1", "Filter Thickness Used in Gain Calibration", "", "FilterThicknessUsedInGainCalibration"), + "00143076": ("DA", "1", "Date of Gain Calibration", "", "DateOfGainCalibration"), + "00143077": ("TM", "1", "Time of Gain Calibration", "", "TimeOfGainCalibration"), + "00143080": ("OB", "1", "Bad Pixel Image", "", "BadPixelImage"), + "00143099": ("LT", "1", "Calibration Notes", "", "CalibrationNotes"), + "00144002": ("SQ", "1", "Pulser Equipment Sequence", "", "PulserEquipmentSequence"), + "00144004": ("CS", "1", "Pulser Type", "", "PulserType"), + "00144006": ("LT", "1", "Pulser Notes", "", "PulserNotes"), + "00144008": ("SQ", "1", "Receiver Equipment Sequence", "", "ReceiverEquipmentSequence"), + "0014400A": ("CS", "1", "Amplifier Type", "", "AmplifierType"), + "0014400C": ("LT", "1", "Receiver Notes", "", "ReceiverNotes"), + "0014400E": ("SQ", "1", "Pre-Amplifier Equipment Sequence", "", "PreAmplifierEquipmentSequence"), + "0014400F": ("LT", "1", "Pre-Amplifier Notes", "", "PreAmplifierNotes"), + "00144010": ("SQ", "1", "Transmit Transducer Sequence", "", "TransmitTransducerSequence"), + "00144011": ("SQ", "1", "Receive Transducer Sequence", "", "ReceiveTransducerSequence"), + "00144012": ("US", "1", "Number of Elements", "", "NumberOfElements"), + "00144013": ("CS", "1", "Element Shape", "", "ElementShape"), + "00144014": ("DS", "1", "Element Dimension A", "", "ElementDimensionA"), + "00144015": ("DS", "1", "Element Dimension B", "", "ElementDimensionB"), + "00144016": ("DS", "1", "Element Pitch A", "", "ElementPitchA"), + "00144017": ("DS", "1", "Measured Beam Dimension A", "", "MeasuredBeamDimensionA"), + "00144018": ("DS", "1", "Measured Beam Dimension B", "", "MeasuredBeamDimensionB"), + "00144019": ("DS", "1", "Location of Measured Beam Diameter", "", "LocationOfMeasuredBeamDiameter"), + "0014401A": ("DS", "1", "Nominal Frequency", "", "NominalFrequency"), + "0014401B": ("DS", "1", "Measured Center Frequency", "", "MeasuredCenterFrequency"), + "0014401C": ("DS", "1", "Measured Bandwidth", "", "MeasuredBandwidth"), + "0014401D": ("DS", "1", "Element Pitch B", "", "ElementPitchB"), + "00144020": ("SQ", "1", "Pulser Settings Sequence", "", "PulserSettingsSequence"), + "00144022": ("DS", "1", "Pulse Width", "", "PulseWidth"), + "00144024": ("DS", "1", "Excitation Frequency", "", "ExcitationFrequency"), + "00144026": ("CS", "1", "Modulation Type", "", "ModulationType"), + "00144028": ("DS", "1", "Damping", "", "Damping"), + "00144030": ("SQ", "1", "Receiver Settings Sequence", "", "ReceiverSettingsSequence"), + "00144031": ("DS", "1", "Acquired Soundpath Length", "", "AcquiredSoundpathLength"), + "00144032": ("CS", "1", "Acquisition Compression Type", "", "AcquisitionCompressionType"), + "00144033": ("IS", "1", "Acquisition Sample Size", "", "AcquisitionSampleSize"), + "00144034": ("DS", "1", "Rectifier Smoothing", "", "RectifierSmoothing"), + "00144035": ("SQ", "1", "DAC Sequence", "", "DACSequence"), + "00144036": ("CS", "1", "DAC Type", "", "DACType"), + "00144038": ("DS", "1-n", "DAC Gain Points", "", "DACGainPoints"), + "0014403A": ("DS", "1-n", "DAC Time Points", "", "DACTimePoints"), + "0014403C": ("DS", "1-n", "DAC Amplitude", "", "DACAmplitude"), + "00144040": ("SQ", "1", "Pre-Amplifier Settings Sequence", "", "PreAmplifierSettingsSequence"), + "00144050": ("SQ", "1", "Transmit Transducer Settings Sequence", "", "TransmitTransducerSettingsSequence"), + "00144051": ("SQ", "1", "Receive Transducer Settings Sequence", "", "ReceiveTransducerSettingsSequence"), + "00144052": ("DS", "1", "Incident Angle", "", "IncidentAngle"), + "00144054": ("ST", "1", "Coupling Technique", "", "CouplingTechnique"), + "00144056": ("ST", "1", "Coupling Medium", "", "CouplingMedium"), + "00144057": ("DS", "1", "Coupling Velocity", "", "CouplingVelocity"), + "00144058": ("DS", "1", "Probe Center Location X", "", "ProbeCenterLocationX"), + "00144059": ("DS", "1", "Probe Center Location Z", "", "ProbeCenterLocationZ"), + "0014405A": ("DS", "1", "Sound Path Length", "", "SoundPathLength"), + "0014405C": ("ST", "1", "Delay Law Identifier", "", "DelayLawIdentifier"), + "00144060": ("SQ", "1", "Gate Settings Sequence", "", "GateSettingsSequence"), + "00144062": ("DS", "1", "Gate Threshold", "", "GateThreshold"), + "00144064": ("DS", "1", "Velocity of Sound", "", "VelocityOfSound"), + "00144070": ("SQ", "1", "Calibration Settings Sequence", "", "CalibrationSettingsSequence"), + "00144072": ("ST", "1", "Calibration Procedure", "", "CalibrationProcedure"), + "00144074": ("SH", "1", "Procedure Version", "", "ProcedureVersion"), + "00144076": ("DA", "1", "Procedure Creation Date", "", "ProcedureCreationDate"), + "00144078": ("DA", "1", "Procedure Expiration Date", "", "ProcedureExpirationDate"), + "0014407A": ("DA", "1", "Procedure Last Modified Date", "", "ProcedureLastModifiedDate"), + "0014407C": ("TM", "1-n", "Calibration Time", "", "CalibrationTime"), + "0014407E": ("DA", "1-n", "Calibration Date", "", "CalibrationDate"), + "00144080": ("SQ", "1", "Probe Drive Equipment Sequence", "", "ProbeDriveEquipmentSequence"), + "00144081": ("CS", "1", "Drive Type", "", "DriveType"), + "00144082": ("LT", "1", "Probe Drive Notes", "", "ProbeDriveNotes"), + "00144083": ("SQ", "1", "Drive Probe Sequence", "", "DriveProbeSequence"), + "00144084": ("DS", "1", "Probe Inductance", "", "ProbeInductance"), + "00144085": ("DS", "1", "Probe Resistance", "", "ProbeResistance"), + "00144086": ("SQ", "1", "Receive Probe Sequence", "", "ReceiveProbeSequence"), + "00144087": ("SQ", "1", "Probe Drive Settings Sequence", "", "ProbeDriveSettingsSequence"), + "00144088": ("DS", "1", "Bridge Resistors", "", "BridgeResistors"), + "00144089": ("DS", "1", "Probe Orientation Angle", "", "ProbeOrientationAngle"), + "0014408B": ("DS", "1", "User Selected Gain Y", "", "UserSelectedGainY"), + "0014408C": ("DS", "1", "User Selected Phase", "", "UserSelectedPhase"), + "0014408D": ("DS", "1", "User Selected Offset X", "", "UserSelectedOffsetX"), + "0014408E": ("DS", "1", "User Selected Offset Y", "", "UserSelectedOffsetY"), + "00144091": ("SQ", "1", "Channel Settings Sequence", "", "ChannelSettingsSequence"), + "00144092": ("DS", "1", "Channel Threshold", "", "ChannelThreshold"), + "0014409A": ("SQ", "1", "Scanner Settings Sequence", "", "ScannerSettingsSequence"), + "0014409B": ("ST", "1", "Scan Procedure", "", "ScanProcedure"), + "0014409C": ("DS", "1", "Translation Rate X", "", "TranslationRateX"), + "0014409D": ("DS", "1", "Translation Rate Y", "", "TranslationRateY"), + "0014409F": ("DS", "1", "Channel Overlap", "", "ChannelOverlap"), + "001440A0": ("LO", "1", "Image Quality Indicator Type", "", "ImageQualityIndicatorType"), + "001440A1": ("LO", "1", "Image Quality Indicator Material", "", "ImageQualityIndicatorMaterial"), + "001440A2": ("LO", "1", "Image Quality Indicator Size", "", "ImageQualityIndicatorSize"), + "00145002": ("IS", "1", "LINAC Energy", "", "LINACEnergy"), + "00145004": ("IS", "1", "LINAC Output", "", "LINACOutput"), + "00145100": ("US", "1", "Active Aperture", "", "ActiveAperture"), + "00145101": ("DS", "1", "Total Aperture", "", "TotalAperture"), + "00145102": ("DS", "1", "Aperture Elevation", "", "ApertureElevation"), + "00145103": ("DS", "1", "Main Lobe Angle", "", "MainLobeAngle"), + "00145104": ("DS", "1", "Main Roof Angle", "", "MainRoofAngle"), + "00145105": ("CS", "1", "Connector Type", "", "ConnectorType"), + "00145106": ("SH", "1", "Wedge Model Number", "", "WedgeModelNumber"), + "00145107": ("DS", "1", "Wedge Angle Float", "", "WedgeAngleFloat"), + "00145108": ("DS", "1", "Wedge Roof Angle", "", "WedgeRoofAngle"), + "00145109": ("CS", "1", "Wedge Element 1 Position", "", "WedgeElement1Position"), + "0014510A": ("DS", "1", "Wedge Material Velocity", "", "WedgeMaterialVelocity"), + "0014510B": ("SH", "1", "Wedge Material", "", "WedgeMaterial"), + "0014510C": ("DS", "1", "Wedge Offset Z", "", "WedgeOffsetZ"), + "0014510D": ("DS", "1", "Wedge Origin Offset X", "", "WedgeOriginOffsetX"), + "0014510E": ("DS", "1", "Wedge Time Delay", "", "WedgeTimeDelay"), + "0014510F": ("SH", "1", "Wedge Name", "", "WedgeName"), + "00145110": ("SH", "1", "Wedge Manufacturer Name", "", "WedgeManufacturerName"), + "00145111": ("LO", "1", "Wedge Description", "", "WedgeDescription"), + "00145112": ("DS", "1", "Nominal Beam Angle", "", "NominalBeamAngle"), + "00145113": ("DS", "1", "Wedge Offset X", "", "WedgeOffsetX"), + "00145114": ("DS", "1", "Wedge Offset Y", "", "WedgeOffsetY"), + "00145115": ("DS", "1", "Wedge Total Length", "", "WedgeTotalLength"), + "00145116": ("DS", "1", "Wedge In Contact Length", "", "WedgeInContactLength"), + "00145117": ("DS", "1", "Wedge Front Gap", "", "WedgeFrontGap"), + "00145118": ("DS", "1", "Wedge Total Height", "", "WedgeTotalHeight"), + "00145119": ("DS", "1", "Wedge Front Height", "", "WedgeFrontHeight"), + "0014511A": ("DS", "1", "Wedge Rear Height", "", "WedgeRearHeight"), + "0014511B": ("DS", "1", "Wedge Total Width", "", "WedgeTotalWidth"), + "0014511C": ("DS", "1", "Wedge In Contact Width", "", "WedgeInContactWidth"), + "0014511D": ("DS", "1", "Wedge Chamfer Height", "", "WedgeChamferHeight"), + "0014511E": ("CS", "1", "Wedge Curve", "", "WedgeCurve"), + "0014511F": ("DS", "1", "Radius Along the Wedge", "", "RadiusAlongWedge"), + "00180010": ("LO", "1", "Contrast/Bolus Agent", "", "ContrastBolusAgent"), + "00180012": ("SQ", "1", "Contrast/Bolus Agent Sequence", "", "ContrastBolusAgentSequence"), + "00180013": ("FL", "1", "Contrast/Bolus T1 Relaxivity", "", "ContrastBolusT1Relaxivity"), + "00180014": ("SQ", "1", "Contrast/Bolus Administration Route Sequence", "", "ContrastBolusAdministrationRouteSequence"), + "00180015": ("CS", "1", "Body Part Examined", "", "BodyPartExamined"), + "00180020": ("CS", "1-n", "Scanning Sequence", "", "ScanningSequence"), + "00180021": ("CS", "1-n", "Sequence Variant", "", "SequenceVariant"), + "00180022": ("CS", "1-n", "Scan Options", "", "ScanOptions"), + "00180023": ("CS", "1", "MR Acquisition Type", "", "MRAcquisitionType"), + "00180024": ("SH", "1", "Sequence Name", "", "SequenceName"), + "00180025": ("CS", "1", "Angio Flag", "", "AngioFlag"), + "00180026": ("SQ", "1", "Intervention Drug Information Sequence", "", "InterventionDrugInformationSequence"), + "00180027": ("TM", "1", "Intervention Drug Stop Time", "", "InterventionDrugStopTime"), + "00180028": ("DS", "1", "Intervention Drug Dose", "", "InterventionDrugDose"), + "00180029": ("SQ", "1", "Intervention Drug Code Sequence", "", "InterventionDrugCodeSequence"), + "0018002A": ("SQ", "1", "Additional Drug Sequence", "", "AdditionalDrugSequence"), + "00180030": ("LO", "1-n", "Radionuclide", "Retired", "Radionuclide"), + "00180031": ("LO", "1", "Radiopharmaceutical", "", "Radiopharmaceutical"), + "00180032": ("DS", "1", "Energy Window Centerline", "Retired", "EnergyWindowCenterline"), + "00180033": ("DS", "1-n", "Energy Window Total Width", "Retired", "EnergyWindowTotalWidth"), + "00180034": ("LO", "1", "Intervention Drug Name", "", "InterventionDrugName"), + "00180035": ("TM", "1", "Intervention Drug Start Time", "", "InterventionDrugStartTime"), + "00180036": ("SQ", "1", "Intervention Sequence", "", "InterventionSequence"), + "00180037": ("CS", "1", "Therapy Type", "Retired", "TherapyType"), + "00180038": ("CS", "1", "Intervention Status", "", "InterventionStatus"), + "00180039": ("CS", "1", "Therapy Description", "Retired", "TherapyDescription"), + "0018003A": ("ST", "1", "Intervention Description", "", "InterventionDescription"), + "00180040": ("IS", "1", "Cine Rate", "", "CineRate"), + "00180042": ("CS", "1", "Initial Cine Run State", "", "InitialCineRunState"), + "00180050": ("DS", "1", "Slice Thickness", "", "SliceThickness"), + "00180060": ("DS", "1", "KVP", "", "KVP"), + "00180061": ("DS", "1", "", "Retired", ""), + "00180070": ("IS", "1", "Counts Accumulated", "", "CountsAccumulated"), + "00180071": ("CS", "1", "Acquisition Termination Condition", "", "AcquisitionTerminationCondition"), + "00180072": ("DS", "1", "Effective Duration", "", "EffectiveDuration"), + "00180073": ("CS", "1", "Acquisition Start Condition", "", "AcquisitionStartCondition"), + "00180074": ("IS", "1", "Acquisition Start Condition Data", "", "AcquisitionStartConditionData"), + "00180075": ("IS", "1", "Acquisition Termination Condition Data", "", "AcquisitionTerminationConditionData"), + "00180080": ("DS", "1", "Repetition Time", "", "RepetitionTime"), + "00180081": ("DS", "1", "Echo Time", "", "EchoTime"), + "00180082": ("DS", "1", "Inversion Time", "", "InversionTime"), + "00180083": ("DS", "1", "Number of Averages", "", "NumberOfAverages"), + "00180084": ("DS", "1", "Imaging Frequency", "", "ImagingFrequency"), + "00180085": ("SH", "1", "Imaged Nucleus", "", "ImagedNucleus"), + "00180086": ("IS", "1-n", "Echo Number(s)", "", "EchoNumbers"), + "00180087": ("DS", "1", "Magnetic Field Strength", "", "MagneticFieldStrength"), + "00180088": ("DS", "1", "Spacing Between Slices", "", "SpacingBetweenSlices"), + "00180089": ("IS", "1", "Number of Phase Encoding Steps", "", "NumberOfPhaseEncodingSteps"), + "00180090": ("DS", "1", "Data Collection Diameter", "", "DataCollectionDiameter"), + "00180091": ("IS", "1", "Echo Train Length", "", "EchoTrainLength"), + "00180093": ("DS", "1", "Percent Sampling", "", "PercentSampling"), + "00180094": ("DS", "1", "Percent Phase Field of View", "", "PercentPhaseFieldOfView"), + "00180095": ("DS", "1", "Pixel Bandwidth", "", "PixelBandwidth"), + "00181000": ("LO", "1", "Device Serial Number", "", "DeviceSerialNumber"), + "00181002": ("UI", "1", "Device UID", "", "DeviceUID"), + "00181003": ("LO", "1", "Device ID", "", "DeviceID"), + "00181004": ("LO", "1", "Plate ID", "", "PlateID"), + "00181005": ("LO", "1", "Generator ID", "", "GeneratorID"), + "00181006": ("LO", "1", "Grid ID", "", "GridID"), + "00181007": ("LO", "1", "Cassette ID", "", "CassetteID"), + "00181008": ("LO", "1", "Gantry ID", "", "GantryID"), + "00181009": ("UT", "1", "Unique Device Identifier", "", "UniqueDeviceIdentifier"), + "0018100A": ("SQ", "1", "UDI Sequence", "", "UDISequence"), + "00181010": ("LO", "1", "Secondary Capture Device ID", "", "SecondaryCaptureDeviceID"), + "00181011": ("LO", "1", "Hardcopy Creation Device ID", "Retired", "HardcopyCreationDeviceID"), + "00181012": ("DA", "1", "Date of Secondary Capture", "", "DateOfSecondaryCapture"), + "00181014": ("TM", "1", "Time of Secondary Capture", "", "TimeOfSecondaryCapture"), + "00181016": ("LO", "1", "Secondary Capture Device Manufacturer", "", "SecondaryCaptureDeviceManufacturer"), + "00181017": ("LO", "1", "Hardcopy Device Manufacturer", "Retired", "HardcopyDeviceManufacturer"), + "00181018": ("LO", "1", "Secondary Capture Device Manufacturer's Model Name", "", "SecondaryCaptureDeviceManufacturerModelName"), + "00181019": ("LO", "1-n", "Secondary Capture Device Software Versions", "", "SecondaryCaptureDeviceSoftwareVersions"), + "0018101A": ("LO", "1-n", "Hardcopy Device Software Version", "Retired", "HardcopyDeviceSoftwareVersion"), + "0018101B": ("LO", "1", "Hardcopy Device Manufacturer's Model Name", "Retired", "HardcopyDeviceManufacturerModelName"), + "00181020": ("LO", "1-n", "Software Version(s)", "", "SoftwareVersions"), + "00181022": ("SH", "1", "Video Image Format Acquired", "", "VideoImageFormatAcquired"), + "00181023": ("LO", "1", "Digital Image Format Acquired", "", "DigitalImageFormatAcquired"), + "00181030": ("LO", "1", "Protocol Name", "", "ProtocolName"), + "00181040": ("LO", "1", "Contrast/Bolus Route", "", "ContrastBolusRoute"), + "00181041": ("DS", "1", "Contrast/Bolus Volume", "", "ContrastBolusVolume"), + "00181042": ("TM", "1", "Contrast/Bolus Start Time", "", "ContrastBolusStartTime"), + "00181043": ("TM", "1", "Contrast/Bolus Stop Time", "", "ContrastBolusStopTime"), + "00181044": ("DS", "1", "Contrast/Bolus Total Dose", "", "ContrastBolusTotalDose"), + "00181045": ("IS", "1", "Syringe Counts", "", "SyringeCounts"), + "00181046": ("DS", "1-n", "Contrast Flow Rate", "", "ContrastFlowRate"), + "00181047": ("DS", "1-n", "Contrast Flow Duration", "", "ContrastFlowDuration"), + "00181048": ("CS", "1", "Contrast/Bolus Ingredient", "", "ContrastBolusIngredient"), + "00181049": ("DS", "1", "Contrast/Bolus Ingredient Concentration", "", "ContrastBolusIngredientConcentration"), + "00181050": ("DS", "1", "Spatial Resolution", "", "SpatialResolution"), + "00181060": ("DS", "1", "Trigger Time", "", "TriggerTime"), + "00181061": ("LO", "1", "Trigger Source or Type", "", "TriggerSourceOrType"), + "00181062": ("IS", "1", "Nominal Interval", "", "NominalInterval"), + "00181063": ("DS", "1", "Frame Time", "", "FrameTime"), + "00181064": ("LO", "1", "Cardiac Framing Type", "", "CardiacFramingType"), + "00181065": ("DS", "1-n", "Frame Time Vector", "", "FrameTimeVector"), + "00181066": ("DS", "1", "Frame Delay", "", "FrameDelay"), + "00181067": ("DS", "1", "Image Trigger Delay", "", "ImageTriggerDelay"), + "00181068": ("DS", "1", "Multiplex Group Time Offset", "", "MultiplexGroupTimeOffset"), + "00181069": ("DS", "1", "Trigger Time Offset", "", "TriggerTimeOffset"), + "0018106A": ("CS", "1", "Synchronization Trigger", "", "SynchronizationTrigger"), + "0018106C": ("US", "2", "Synchronization Channel", "", "SynchronizationChannel"), + "0018106E": ("UL", "1", "Trigger Sample Position", "", "TriggerSamplePosition"), + "00181070": ("LO", "1", "Radiopharmaceutical Route", "", "RadiopharmaceuticalRoute"), + "00181071": ("DS", "1", "Radiopharmaceutical Volume", "", "RadiopharmaceuticalVolume"), + "00181072": ("TM", "1", "Radiopharmaceutical Start Time", "", "RadiopharmaceuticalStartTime"), + "00181073": ("TM", "1", "Radiopharmaceutical Stop Time", "", "RadiopharmaceuticalStopTime"), + "00181074": ("DS", "1", "Radionuclide Total Dose", "", "RadionuclideTotalDose"), + "00181075": ("DS", "1", "Radionuclide Half Life", "", "RadionuclideHalfLife"), + "00181076": ("DS", "1", "Radionuclide Positron Fraction", "", "RadionuclidePositronFraction"), + "00181077": ("DS", "1", "Radiopharmaceutical Specific Activity", "", "RadiopharmaceuticalSpecificActivity"), + "00181078": ("DT", "1", "Radiopharmaceutical Start DateTime", "", "RadiopharmaceuticalStartDateTime"), + "00181079": ("DT", "1", "Radiopharmaceutical Stop DateTime", "", "RadiopharmaceuticalStopDateTime"), + "00181080": ("CS", "1", "Beat Rejection Flag", "", "BeatRejectionFlag"), + "00181081": ("IS", "1", "Low R-R Value", "", "LowRRValue"), + "00181082": ("IS", "1", "High R-R Value", "", "HighRRValue"), + "00181083": ("IS", "1", "Intervals Acquired", "", "IntervalsAcquired"), + "00181084": ("IS", "1", "Intervals Rejected", "", "IntervalsRejected"), + "00181085": ("LO", "1", "PVC Rejection", "", "PVCRejection"), + "00181086": ("IS", "1", "Skip Beats", "", "SkipBeats"), + "00181088": ("IS", "1", "Heart Rate", "", "HeartRate"), + "00181090": ("IS", "1", "Cardiac Number of Images", "", "CardiacNumberOfImages"), + "00181094": ("IS", "1", "Trigger Window", "", "TriggerWindow"), + "00181100": ("DS", "1", "Reconstruction Diameter", "", "ReconstructionDiameter"), + "00181110": ("DS", "1", "Distance Source to Detector", "", "DistanceSourceToDetector"), + "00181111": ("DS", "1", "Distance Source to Patient", "", "DistanceSourceToPatient"), + "00181114": ("DS", "1", "Estimated Radiographic Magnification Factor", "", "EstimatedRadiographicMagnificationFactor"), + "00181120": ("DS", "1", "Gantry/Detector Tilt", "", "GantryDetectorTilt"), + "00181121": ("DS", "1", "Gantry/Detector Slew", "", "GantryDetectorSlew"), + "00181130": ("DS", "1", "Table Height", "", "TableHeight"), + "00181131": ("DS", "1", "Table Traverse", "", "TableTraverse"), + "00181134": ("CS", "1", "Table Motion", "", "TableMotion"), + "00181135": ("DS", "1-n", "Table Vertical Increment", "", "TableVerticalIncrement"), + "00181136": ("DS", "1-n", "Table Lateral Increment", "", "TableLateralIncrement"), + "00181137": ("DS", "1-n", "Table Longitudinal Increment", "", "TableLongitudinalIncrement"), + "00181138": ("DS", "1", "Table Angle", "", "TableAngle"), + "0018113A": ("CS", "1", "Table Type", "", "TableType"), + "00181140": ("CS", "1", "Rotation Direction", "", "RotationDirection"), + "00181141": ("DS", "1", "Angular Position", "Retired", "AngularPosition"), + "00181142": ("DS", "1-n", "Radial Position", "", "RadialPosition"), + "00181143": ("DS", "1", "Scan Arc", "", "ScanArc"), + "00181144": ("DS", "1", "Angular Step", "", "AngularStep"), + "00181145": ("DS", "1", "Center of Rotation Offset", "", "CenterOfRotationOffset"), + "00181146": ("DS", "1-n", "Rotation Offset", "Retired", "RotationOffset"), + "00181147": ("CS", "1", "Field of View Shape", "", "FieldOfViewShape"), + "00181149": ("IS", "1-2", "Field of View Dimension(s)", "", "FieldOfViewDimensions"), + "00181150": ("IS", "1", "Exposure Time", "", "ExposureTime"), + "00181151": ("IS", "1", "X-Ray Tube Current", "", "XRayTubeCurrent"), + "00181152": ("IS", "1", "Exposure", "", "Exposure"), + "00181153": ("IS", "1", "Exposure in uAs", "", "ExposureInuAs"), + "00181154": ("DS", "1", "Average Pulse Width", "", "AveragePulseWidth"), + "00181155": ("CS", "1", "Radiation Setting", "", "RadiationSetting"), + "00181156": ("CS", "1", "Rectification Type", "", "RectificationType"), + "0018115A": ("CS", "1", "Radiation Mode", "", "RadiationMode"), + "0018115E": ("DS", "1", "Image and Fluoroscopy Area Dose Product", "", "ImageAndFluoroscopyAreaDoseProduct"), + "00181160": ("SH", "1", "Filter Type", "", "FilterType"), + "00181161": ("LO", "1-n", "Type of Filters", "", "TypeOfFilters"), + "00181162": ("DS", "1", "Intensifier Size", "", "IntensifierSize"), + "00181164": ("DS", "2", "Imager Pixel Spacing", "", "ImagerPixelSpacing"), + "00181166": ("CS", "1-n", "Grid", "", "Grid"), + "00181170": ("IS", "1", "Generator Power", "", "GeneratorPower"), + "00181180": ("SH", "1", "Collimator/grid Name", "", "CollimatorGridName"), + "00181181": ("CS", "1", "Collimator Type", "", "CollimatorType"), + "00181182": ("IS", "1-2", "Focal Distance", "", "FocalDistance"), + "00181183": ("DS", "1-2", "X Focus Center", "", "XFocusCenter"), + "00181184": ("DS", "1-2", "Y Focus Center", "", "YFocusCenter"), + "00181190": ("DS", "1-n", "Focal Spot(s)", "", "FocalSpots"), + "00181191": ("CS", "1", "Anode Target Material", "", "AnodeTargetMaterial"), + "001811A0": ("DS", "1", "Body Part Thickness", "", "BodyPartThickness"), + "001811A2": ("DS", "1", "Compression Force", "", "CompressionForce"), + "001811A3": ("DS", "1", "Compression Pressure", "", "CompressionPressure"), + "001811A4": ("LO", "1", "Paddle Description", "", "PaddleDescription"), + "001811A5": ("DS", "1", "Compression Contact Area", "", "CompressionContactArea"), + "00181200": ("DA", "1-n", "Date of Last Calibration", "", "DateOfLastCalibration"), + "00181201": ("TM", "1-n", "Time of Last Calibration", "", "TimeOfLastCalibration"), + "00181202": ("DT", "1", "DateTime of Last Calibration", "", "DateTimeOfLastCalibration"), + "00181210": ("SH", "1-n", "Convolution Kernel", "", "ConvolutionKernel"), + "00181240": ("IS", "1-n", "Upper/Lower Pixel Values", "Retired", "UpperLowerPixelValues"), + "00181242": ("IS", "1", "Actual Frame Duration", "", "ActualFrameDuration"), + "00181243": ("IS", "1", "Count Rate", "", "CountRate"), + "00181244": ("US", "1", "Preferred Playback Sequencing", "", "PreferredPlaybackSequencing"), + "00181250": ("SH", "1", "Receive Coil Name", "", "ReceiveCoilName"), + "00181251": ("SH", "1", "Transmit Coil Name", "", "TransmitCoilName"), + "00181260": ("SH", "1", "Plate Type", "", "PlateType"), + "00181261": ("LO", "1", "Phosphor Type", "", "PhosphorType"), + "00181271": ("FD", "1", "Water Equivalent Diameter", "", "WaterEquivalentDiameter"), + "00181272": ("SQ", "1", "Water Equivalent Diameter Calculation Method Code Sequence", "", "WaterEquivalentDiameterCalculationMethodCodeSequence"), + "00181300": ("DS", "1", "Scan Velocity", "", "ScanVelocity"), + "00181301": ("CS", "1-n", "Whole Body Technique", "", "WholeBodyTechnique"), + "00181302": ("IS", "1", "Scan Length", "", "ScanLength"), + "00181310": ("US", "4", "Acquisition Matrix", "", "AcquisitionMatrix"), + "00181312": ("CS", "1", "In-plane Phase Encoding Direction", "", "InPlanePhaseEncodingDirection"), + "00181314": ("DS", "1", "Flip Angle", "", "FlipAngle"), + "00181315": ("CS", "1", "Variable Flip Angle Flag", "", "VariableFlipAngleFlag"), + "00181316": ("DS", "1", "SAR", "", "SAR"), + "00181318": ("DS", "1", "dB/dt", "", "dBdt"), + "00181320": ("FL", "1", "B1rms", "", "B1rms"), + "00181400": ("LO", "1", "Acquisition Device Processing Description", "", "AcquisitionDeviceProcessingDescription"), + "00181401": ("LO", "1", "Acquisition Device Processing Code", "", "AcquisitionDeviceProcessingCode"), + "00181402": ("CS", "1", "Cassette Orientation", "", "CassetteOrientation"), + "00181403": ("CS", "1", "Cassette Size", "", "CassetteSize"), + "00181404": ("US", "1", "Exposures on Plate", "", "ExposuresOnPlate"), + "00181405": ("IS", "1", "Relative X-Ray Exposure", "", "RelativeXRayExposure"), + "00181411": ("DS", "1", "Exposure Index", "", "ExposureIndex"), + "00181412": ("DS", "1", "Target Exposure Index", "", "TargetExposureIndex"), + "00181413": ("DS", "1", "Deviation Index", "", "DeviationIndex"), + "00181450": ("DS", "1", "Column Angulation", "", "ColumnAngulation"), + "00181460": ("DS", "1", "Tomo Layer Height", "", "TomoLayerHeight"), + "00181470": ("DS", "1", "Tomo Angle", "", "TomoAngle"), + "00181480": ("DS", "1", "Tomo Time", "", "TomoTime"), + "00181490": ("CS", "1", "Tomo Type", "", "TomoType"), + "00181491": ("CS", "1", "Tomo Class", "", "TomoClass"), + "00181495": ("IS", "1", "Number of Tomosynthesis Source Images", "", "NumberOfTomosynthesisSourceImages"), + "00181500": ("CS", "1", "Positioner Motion", "", "PositionerMotion"), + "00181508": ("CS", "1", "Positioner Type", "", "PositionerType"), + "00181510": ("DS", "1", "Positioner Primary Angle", "", "PositionerPrimaryAngle"), + "00181511": ("DS", "1", "Positioner Secondary Angle", "", "PositionerSecondaryAngle"), + "00181520": ("DS", "1-n", "Positioner Primary Angle Increment", "", "PositionerPrimaryAngleIncrement"), + "00181521": ("DS", "1-n", "Positioner Secondary Angle Increment", "", "PositionerSecondaryAngleIncrement"), + "00181530": ("DS", "1", "Detector Primary Angle", "", "DetectorPrimaryAngle"), + "00181531": ("DS", "1", "Detector Secondary Angle", "", "DetectorSecondaryAngle"), + "00181600": ("CS", "1-3", "Shutter Shape", "", "ShutterShape"), + "00181602": ("IS", "1", "Shutter Left Vertical Edge", "", "ShutterLeftVerticalEdge"), + "00181604": ("IS", "1", "Shutter Right Vertical Edge", "", "ShutterRightVerticalEdge"), + "00181606": ("IS", "1", "Shutter Upper Horizontal Edge", "", "ShutterUpperHorizontalEdge"), + "00181608": ("IS", "1", "Shutter Lower Horizontal Edge", "", "ShutterLowerHorizontalEdge"), + "00181610": ("IS", "2", "Center of Circular Shutter", "", "CenterOfCircularShutter"), + "00181612": ("IS", "1", "Radius of Circular Shutter", "", "RadiusOfCircularShutter"), + "00181620": ("IS", "2-2n", "Vertices of the Polygonal Shutter", "", "VerticesOfThePolygonalShutter"), + "00181622": ("US", "1", "Shutter Presentation Value", "", "ShutterPresentationValue"), + "00181623": ("US", "1", "Shutter Overlay Group", "", "ShutterOverlayGroup"), + "00181624": ("US", "3", "Shutter Presentation Color CIELab Value", "", "ShutterPresentationColorCIELabValue"), + "00181700": ("CS", "1-3", "Collimator Shape", "", "CollimatorShape"), + "00181702": ("IS", "1", "Collimator Left Vertical Edge", "", "CollimatorLeftVerticalEdge"), + "00181704": ("IS", "1", "Collimator Right Vertical Edge", "", "CollimatorRightVerticalEdge"), + "00181706": ("IS", "1", "Collimator Upper Horizontal Edge", "", "CollimatorUpperHorizontalEdge"), + "00181708": ("IS", "1", "Collimator Lower Horizontal Edge", "", "CollimatorLowerHorizontalEdge"), + "00181710": ("IS", "2", "Center of Circular Collimator", "", "CenterOfCircularCollimator"), + "00181712": ("IS", "1", "Radius of Circular Collimator", "", "RadiusOfCircularCollimator"), + "00181720": ("IS", "2-2n", "Vertices of the Polygonal Collimator", "", "VerticesOfThePolygonalCollimator"), + "00181800": ("CS", "1", "Acquisition Time Synchronized", "", "AcquisitionTimeSynchronized"), + "00181801": ("SH", "1", "Time Source", "", "TimeSource"), + "00181802": ("CS", "1", "Time Distribution Protocol", "", "TimeDistributionProtocol"), + "00181803": ("LO", "1", "NTP Source Address", "", "NTPSourceAddress"), + "00182001": ("IS", "1-n", "Page Number Vector", "", "PageNumberVector"), + "00182002": ("SH", "1-n", "Frame Label Vector", "", "FrameLabelVector"), + "00182003": ("DS", "1-n", "Frame Primary Angle Vector", "", "FramePrimaryAngleVector"), + "00182004": ("DS", "1-n", "Frame Secondary Angle Vector", "", "FrameSecondaryAngleVector"), + "00182005": ("DS", "1-n", "Slice Location Vector", "", "SliceLocationVector"), + "00182006": ("SH", "1-n", "Display Window Label Vector", "", "DisplayWindowLabelVector"), + "00182010": ("DS", "2", "Nominal Scanned Pixel Spacing", "", "NominalScannedPixelSpacing"), + "00182020": ("CS", "1", "Digitizing Device Transport Direction", "", "DigitizingDeviceTransportDirection"), + "00182030": ("DS", "1", "Rotation of Scanned Film", "", "RotationOfScannedFilm"), + "00182041": ("SQ", "1", "Biopsy Target Sequence", "", "BiopsyTargetSequence"), + "00182042": ("UI", "1", "Target UID", "", "TargetUID"), + "00182043": ("FL", "2", "Localizing Cursor Position", "", "LocalizingCursorPosition"), + "00182044": ("FL", "3", "Calculated Target Position", "", "CalculatedTargetPosition"), + "00182045": ("SH", "1", "Target Label", "", "TargetLabel"), + "00182046": ("FL", "1", "Displayed Z Value", "", "DisplayedZValue"), + "00183100": ("CS", "1", "IVUS Acquisition", "", "IVUSAcquisition"), + "00183101": ("DS", "1", "IVUS Pullback Rate", "", "IVUSPullbackRate"), + "00183102": ("DS", "1", "IVUS Gated Rate", "", "IVUSGatedRate"), + "00183103": ("IS", "1", "IVUS Pullback Start Frame Number", "", "IVUSPullbackStartFrameNumber"), + "00183104": ("IS", "1", "IVUS Pullback Stop Frame Number", "", "IVUSPullbackStopFrameNumber"), + "00183105": ("IS", "1-n", "Lesion Number", "", "LesionNumber"), + "00184000": ("LT", "1", "Acquisition Comments", "Retired", "AcquisitionComments"), + "00185000": ("SH", "1-n", "Output Power", "", "OutputPower"), + "00185010": ("LO", "1-n", "Transducer Data", "", "TransducerData"), + "00185012": ("DS", "1", "Focus Depth", "", "FocusDepth"), + "00185020": ("LO", "1", "Processing Function", "", "ProcessingFunction"), + "00185021": ("LO", "1", "Postprocessing Function", "Retired", "PostprocessingFunction"), + "00185022": ("DS", "1", "Mechanical Index", "", "MechanicalIndex"), + "00185024": ("DS", "1", "Bone Thermal Index", "", "BoneThermalIndex"), + "00185026": ("DS", "1", "Cranial Thermal Index", "", "CranialThermalIndex"), + "00185027": ("DS", "1", "Soft Tissue Thermal Index", "", "SoftTissueThermalIndex"), + "00185028": ("DS", "1", "Soft Tissue-focus Thermal Index", "", "SoftTissueFocusThermalIndex"), + "00185029": ("DS", "1", "Soft Tissue-surface Thermal Index", "", "SoftTissueSurfaceThermalIndex"), + "00185030": ("DS", "1", "Dynamic Range", "Retired", "DynamicRange"), + "00185040": ("DS", "1", "Total Gain", "Retired", "TotalGain"), + "00185050": ("IS", "1", "Depth of Scan Field", "", "DepthOfScanField"), + "00185100": ("CS", "1", "Patient Position", "", "PatientPosition"), + "00185101": ("CS", "1", "View Position", "", "ViewPosition"), + "00185104": ("SQ", "1", "Projection Eponymous Name Code Sequence", "", "ProjectionEponymousNameCodeSequence"), + "00185210": ("DS", "6", "Image Transformation Matrix", "Retired", "ImageTransformationMatrix"), + "00185212": ("DS", "3", "Image Translation Vector", "Retired", "ImageTranslationVector"), + "00186000": ("DS", "1", "Sensitivity", "", "Sensitivity"), + "00186011": ("SQ", "1", "Sequence of Ultrasound Regions", "", "SequenceOfUltrasoundRegions"), + "00186012": ("US", "1", "Region Spatial Format", "", "RegionSpatialFormat"), + "00186014": ("US", "1", "Region Data Type", "", "RegionDataType"), + "00186016": ("UL", "1", "Region Flags", "", "RegionFlags"), + "00186018": ("UL", "1", "Region Location Min X0", "", "RegionLocationMinX0"), + "0018601A": ("UL", "1", "Region Location Min Y0", "", "RegionLocationMinY0"), + "0018601C": ("UL", "1", "Region Location Max X1", "", "RegionLocationMaxX1"), + "0018601E": ("UL", "1", "Region Location Max Y1", "", "RegionLocationMaxY1"), + "00186020": ("SL", "1", "Reference Pixel X0", "", "ReferencePixelX0"), + "00186022": ("SL", "1", "Reference Pixel Y0", "", "ReferencePixelY0"), + "00186024": ("US", "1", "Physical Units X Direction", "", "PhysicalUnitsXDirection"), + "00186026": ("US", "1", "Physical Units Y Direction", "", "PhysicalUnitsYDirection"), + "00186028": ("FD", "1", "Reference Pixel Physical Value X", "", "ReferencePixelPhysicalValueX"), + "0018602A": ("FD", "1", "Reference Pixel Physical Value Y", "", "ReferencePixelPhysicalValueY"), + "0018602C": ("FD", "1", "Physical Delta X", "", "PhysicalDeltaX"), + "0018602E": ("FD", "1", "Physical Delta Y", "", "PhysicalDeltaY"), + "00186030": ("UL", "1", "Transducer Frequency", "", "TransducerFrequency"), + "00186031": ("CS", "1", "Transducer Type", "", "TransducerType"), + "00186032": ("UL", "1", "Pulse Repetition Frequency", "", "PulseRepetitionFrequency"), + "00186034": ("FD", "1", "Doppler Correction Angle", "", "DopplerCorrectionAngle"), + "00186036": ("FD", "1", "Steering Angle", "", "SteeringAngle"), + "00186038": ("UL", "1", "Doppler Sample Volume X Position (Retired)", "Retired", "DopplerSampleVolumeXPositionRetired"), + "00186039": ("SL", "1", "Doppler Sample Volume X Position", "", "DopplerSampleVolumeXPosition"), + "0018603A": ("UL", "1", "Doppler Sample Volume Y Position (Retired)", "Retired", "DopplerSampleVolumeYPositionRetired"), + "0018603B": ("SL", "1", "Doppler Sample Volume Y Position", "", "DopplerSampleVolumeYPosition"), + "0018603C": ("UL", "1", "TM-Line Position X0 (Retired)", "Retired", "TMLinePositionX0Retired"), + "0018603D": ("SL", "1", "TM-Line Position X0", "", "TMLinePositionX0"), + "0018603E": ("UL", "1", "TM-Line Position Y0 (Retired)", "Retired", "TMLinePositionY0Retired"), + "0018603F": ("SL", "1", "TM-Line Position Y0", "", "TMLinePositionY0"), + "00186040": ("UL", "1", "TM-Line Position X1 (Retired)", "Retired", "TMLinePositionX1Retired"), + "00186041": ("SL", "1", "TM-Line Position X1", "", "TMLinePositionX1"), + "00186042": ("UL", "1", "TM-Line Position Y1 (Retired)", "Retired", "TMLinePositionY1Retired"), + "00186043": ("SL", "1", "TM-Line Position Y1", "", "TMLinePositionY1"), + "00186044": ("US", "1", "Pixel Component Organization", "", "PixelComponentOrganization"), + "00186046": ("UL", "1", "Pixel Component Mask", "", "PixelComponentMask"), + "00186048": ("UL", "1", "Pixel Component Range Start", "", "PixelComponentRangeStart"), + "0018604A": ("UL", "1", "Pixel Component Range Stop", "", "PixelComponentRangeStop"), + "0018604C": ("US", "1", "Pixel Component Physical Units", "", "PixelComponentPhysicalUnits"), + "0018604E": ("US", "1", "Pixel Component Data Type", "", "PixelComponentDataType"), + "00186050": ("UL", "1", "Number of Table Break Points", "", "NumberOfTableBreakPoints"), + "00186052": ("UL", "1-n", "Table of X Break Points", "", "TableOfXBreakPoints"), + "00186054": ("FD", "1-n", "Table of Y Break Points", "", "TableOfYBreakPoints"), + "00186056": ("UL", "1", "Number of Table Entries", "", "NumberOfTableEntries"), + "00186058": ("UL", "1-n", "Table of Pixel Values", "", "TableOfPixelValues"), + "0018605A": ("FL", "1-n", "Table of Parameter Values", "", "TableOfParameterValues"), + "00186060": ("FL", "1-n", "R Wave Time Vector", "", "RWaveTimeVector"), + "00187000": ("CS", "1", "Detector Conditions Nominal Flag", "", "DetectorConditionsNominalFlag"), + "00187001": ("DS", "1", "Detector Temperature", "", "DetectorTemperature"), + "00187004": ("CS", "1", "Detector Type", "", "DetectorType"), + "00187005": ("CS", "1", "Detector Configuration", "", "DetectorConfiguration"), + "00187006": ("LT", "1", "Detector Description", "", "DetectorDescription"), + "00187008": ("LT", "1", "Detector Mode", "", "DetectorMode"), + "0018700A": ("SH", "1", "Detector ID", "", "DetectorID"), + "0018700C": ("DA", "1", "Date of Last Detector Calibration", "", "DateOfLastDetectorCalibration"), + "0018700E": ("TM", "1", "Time of Last Detector Calibration", "", "TimeOfLastDetectorCalibration"), + "00187010": ("IS", "1", "Exposures on Detector Since Last Calibration", "", "ExposuresOnDetectorSinceLastCalibration"), + "00187011": ("IS", "1", "Exposures on Detector Since Manufactured", "", "ExposuresOnDetectorSinceManufactured"), + "00187012": ("DS", "1", "Detector Time Since Last Exposure", "", "DetectorTimeSinceLastExposure"), + "00187014": ("DS", "1", "Detector Active Time", "", "DetectorActiveTime"), + "00187016": ("DS", "1", "Detector Activation Offset From Exposure", "", "DetectorActivationOffsetFromExposure"), + "0018701A": ("DS", "2", "Detector Binning", "", "DetectorBinning"), + "00187020": ("DS", "2", "Detector Element Physical Size", "", "DetectorElementPhysicalSize"), + "00187022": ("DS", "2", "Detector Element Spacing", "", "DetectorElementSpacing"), + "00187024": ("CS", "1", "Detector Active Shape", "", "DetectorActiveShape"), + "00187026": ("DS", "1-2", "Detector Active Dimension(s)", "", "DetectorActiveDimensions"), + "00187028": ("DS", "2", "Detector Active Origin", "", "DetectorActiveOrigin"), + "0018702A": ("LO", "1", "Detector Manufacturer Name", "", "DetectorManufacturerName"), + "0018702B": ("LO", "1", "Detector Manufacturer's Model Name", "", "DetectorManufacturerModelName"), + "00187030": ("DS", "2", "Field of View Origin", "", "FieldOfViewOrigin"), + "00187032": ("DS", "1", "Field of View Rotation", "", "FieldOfViewRotation"), + "00187034": ("CS", "1", "Field of View Horizontal Flip", "", "FieldOfViewHorizontalFlip"), + "00187036": ("FL", "2", "Pixel Data Area Origin Relative To FOV", "", "PixelDataAreaOriginRelativeToFOV"), + "00187038": ("FL", "1", "Pixel Data Area Rotation Angle Relative To FOV", "", "PixelDataAreaRotationAngleRelativeToFOV"), + "00187040": ("LT", "1", "Grid Absorbing Material", "", "GridAbsorbingMaterial"), + "00187041": ("LT", "1", "Grid Spacing Material", "", "GridSpacingMaterial"), + "00187042": ("DS", "1", "Grid Thickness", "", "GridThickness"), + "00187044": ("DS", "1", "Grid Pitch", "", "GridPitch"), + "00187046": ("IS", "2", "Grid Aspect Ratio", "", "GridAspectRatio"), + "00187048": ("DS", "1", "Grid Period", "", "GridPeriod"), + "0018704C": ("DS", "1", "Grid Focal Distance", "", "GridFocalDistance"), + "00187050": ("CS", "1-n", "Filter Material", "", "FilterMaterial"), + "00187052": ("DS", "1-n", "Filter Thickness Minimum", "", "FilterThicknessMinimum"), + "00187054": ("DS", "1-n", "Filter Thickness Maximum", "", "FilterThicknessMaximum"), + "00187056": ("FL", "1-n", "Filter Beam Path Length Minimum", "", "FilterBeamPathLengthMinimum"), + "00187058": ("FL", "1-n", "Filter Beam Path Length Maximum", "", "FilterBeamPathLengthMaximum"), + "00187060": ("CS", "1", "Exposure Control Mode", "", "ExposureControlMode"), + "00187062": ("LT", "1", "Exposure Control Mode Description", "", "ExposureControlModeDescription"), + "00187064": ("CS", "1", "Exposure Status", "", "ExposureStatus"), + "00187065": ("DS", "1", "Phototimer Setting", "", "PhototimerSetting"), + "00188150": ("DS", "1", "Exposure Time in uS", "", "ExposureTimeInuS"), + "00188151": ("DS", "1", "X-Ray Tube Current in uA", "", "XRayTubeCurrentInuA"), + "00189004": ("CS", "1", "Content Qualification", "", "ContentQualification"), + "00189005": ("SH", "1", "Pulse Sequence Name", "", "PulseSequenceName"), + "00189006": ("SQ", "1", "MR Imaging Modifier Sequence", "", "MRImagingModifierSequence"), + "00189008": ("CS", "1", "Echo Pulse Sequence", "", "EchoPulseSequence"), + "00189009": ("CS", "1", "Inversion Recovery", "", "InversionRecovery"), + "00189010": ("CS", "1", "Flow Compensation", "", "FlowCompensation"), + "00189011": ("CS", "1", "Multiple Spin Echo", "", "MultipleSpinEcho"), + "00189012": ("CS", "1", "Multi-planar Excitation", "", "MultiPlanarExcitation"), + "00189014": ("CS", "1", "Phase Contrast", "", "PhaseContrast"), + "00189015": ("CS", "1", "Time of Flight Contrast", "", "TimeOfFlightContrast"), + "00189016": ("CS", "1", "Spoiling", "", "Spoiling"), + "00189017": ("CS", "1", "Steady State Pulse Sequence", "", "SteadyStatePulseSequence"), + "00189018": ("CS", "1", "Echo Planar Pulse Sequence", "", "EchoPlanarPulseSequence"), + "00189019": ("FD", "1", "Tag Angle First Axis", "", "TagAngleFirstAxis"), + "00189020": ("CS", "1", "Magnetization Transfer", "", "MagnetizationTransfer"), + "00189021": ("CS", "1", "T2 Preparation", "", "T2Preparation"), + "00189022": ("CS", "1", "Blood Signal Nulling", "", "BloodSignalNulling"), + "00189024": ("CS", "1", "Saturation Recovery", "", "SaturationRecovery"), + "00189025": ("CS", "1", "Spectrally Selected Suppression", "", "SpectrallySelectedSuppression"), + "00189026": ("CS", "1", "Spectrally Selected Excitation", "", "SpectrallySelectedExcitation"), + "00189027": ("CS", "1", "Spatial Pre-saturation", "", "SpatialPresaturation"), + "00189028": ("CS", "1", "Tagging", "", "Tagging"), + "00189029": ("CS", "1", "Oversampling Phase", "", "OversamplingPhase"), + "00189030": ("FD", "1", "Tag Spacing First Dimension", "", "TagSpacingFirstDimension"), + "00189032": ("CS", "1", "Geometry of k-Space Traversal", "", "GeometryOfKSpaceTraversal"), + "00189033": ("CS", "1", "Segmented k-Space Traversal", "", "SegmentedKSpaceTraversal"), + "00189034": ("CS", "1", "Rectilinear Phase Encode Reordering", "", "RectilinearPhaseEncodeReordering"), + "00189035": ("FD", "1", "Tag Thickness", "", "TagThickness"), + "00189036": ("CS", "1", "Partial Fourier Direction", "", "PartialFourierDirection"), + "00189037": ("CS", "1", "Cardiac Synchronization Technique", "", "CardiacSynchronizationTechnique"), + "00189041": ("LO", "1", "Receive Coil Manufacturer Name", "", "ReceiveCoilManufacturerName"), + "00189042": ("SQ", "1", "MR Receive Coil Sequence", "", "MRReceiveCoilSequence"), + "00189043": ("CS", "1", "Receive Coil Type", "", "ReceiveCoilType"), + "00189044": ("CS", "1", "Quadrature Receive Coil", "", "QuadratureReceiveCoil"), + "00189045": ("SQ", "1", "Multi-Coil Definition Sequence", "", "MultiCoilDefinitionSequence"), + "00189046": ("LO", "1", "Multi-Coil Configuration", "", "MultiCoilConfiguration"), + "00189047": ("SH", "1", "Multi-Coil Element Name", "", "MultiCoilElementName"), + "00189048": ("CS", "1", "Multi-Coil Element Used", "", "MultiCoilElementUsed"), + "00189049": ("SQ", "1", "MR Transmit Coil Sequence", "", "MRTransmitCoilSequence"), + "00189050": ("LO", "1", "Transmit Coil Manufacturer Name", "", "TransmitCoilManufacturerName"), + "00189051": ("CS", "1", "Transmit Coil Type", "", "TransmitCoilType"), + "00189052": ("FD", "1-2", "Spectral Width", "", "SpectralWidth"), + "00189053": ("FD", "1-2", "Chemical Shift Reference", "", "ChemicalShiftReference"), + "00189054": ("CS", "1", "Volume Localization Technique", "", "VolumeLocalizationTechnique"), + "00189058": ("US", "1", "MR Acquisition Frequency Encoding Steps", "", "MRAcquisitionFrequencyEncodingSteps"), + "00189059": ("CS", "1", "De-coupling", "", "Decoupling"), + "00189060": ("CS", "1-2", "De-coupled Nucleus", "", "DecoupledNucleus"), + "00189061": ("FD", "1-2", "De-coupling Frequency", "", "DecouplingFrequency"), + "00189062": ("CS", "1", "De-coupling Method", "", "DecouplingMethod"), + "00189063": ("FD", "1-2", "De-coupling Chemical Shift Reference", "", "DecouplingChemicalShiftReference"), + "00189064": ("CS", "1", "k-space Filtering", "", "KSpaceFiltering"), + "00189065": ("CS", "1-2", "Time Domain Filtering", "", "TimeDomainFiltering"), + "00189066": ("US", "1-2", "Number of Zero Fills", "", "NumberOfZeroFills"), + "00189067": ("CS", "1", "Baseline Correction", "", "BaselineCorrection"), + "00189069": ("FD", "1", "Parallel Reduction Factor In-plane", "", "ParallelReductionFactorInPlane"), + "00189070": ("FD", "1", "Cardiac R-R Interval Specified", "", "CardiacRRIntervalSpecified"), + "00189073": ("FD", "1", "Acquisition Duration", "", "AcquisitionDuration"), + "00189074": ("DT", "1", "Frame Acquisition DateTime", "", "FrameAcquisitionDateTime"), + "00189075": ("CS", "1", "Diffusion Directionality", "", "DiffusionDirectionality"), + "00189076": ("SQ", "1", "Diffusion Gradient Direction Sequence", "", "DiffusionGradientDirectionSequence"), + "00189077": ("CS", "1", "Parallel Acquisition", "", "ParallelAcquisition"), + "00189078": ("CS", "1", "Parallel Acquisition Technique", "", "ParallelAcquisitionTechnique"), + "00189079": ("FD", "1-n", "Inversion Times", "", "InversionTimes"), + "00189080": ("ST", "1", "Metabolite Map Description", "", "MetaboliteMapDescription"), + "00189081": ("CS", "1", "Partial Fourier", "", "PartialFourier"), + "00189082": ("FD", "1", "Effective Echo Time", "", "EffectiveEchoTime"), + "00189083": ("SQ", "1", "Metabolite Map Code Sequence", "", "MetaboliteMapCodeSequence"), + "00189084": ("SQ", "1", "Chemical Shift Sequence", "", "ChemicalShiftSequence"), + "00189085": ("CS", "1", "Cardiac Signal Source", "", "CardiacSignalSource"), + "00189087": ("FD", "1", "Diffusion b-value", "", "DiffusionBValue"), + "00189089": ("FD", "3", "Diffusion Gradient Orientation", "", "DiffusionGradientOrientation"), + "00189090": ("FD", "3", "Velocity Encoding Direction", "", "VelocityEncodingDirection"), + "00189091": ("FD", "1", "Velocity Encoding Minimum Value", "", "VelocityEncodingMinimumValue"), + "00189092": ("SQ", "1", "Velocity Encoding Acquisition Sequence", "", "VelocityEncodingAcquisitionSequence"), + "00189093": ("US", "1", "Number of k-Space Trajectories", "", "NumberOfKSpaceTrajectories"), + "00189094": ("CS", "1", "Coverage of k-Space", "", "CoverageOfKSpace"), + "00189095": ("UL", "1", "Spectroscopy Acquisition Phase Rows", "", "SpectroscopyAcquisitionPhaseRows"), + "00189096": ("FD", "1", "Parallel Reduction Factor In-plane (Retired)", "Retired", "ParallelReductionFactorInPlaneRetired"), + "00189098": ("FD", "1-2", "Transmitter Frequency", "", "TransmitterFrequency"), + "00189100": ("CS", "1-2", "Resonant Nucleus", "", "ResonantNucleus"), + "00189101": ("CS", "1", "Frequency Correction", "", "FrequencyCorrection"), + "00189103": ("SQ", "1", "MR Spectroscopy FOV/Geometry Sequence", "", "MRSpectroscopyFOVGeometrySequence"), + "00189104": ("FD", "1", "Slab Thickness", "", "SlabThickness"), + "00189105": ("FD", "3", "Slab Orientation", "", "SlabOrientation"), + "00189106": ("FD", "3", "Mid Slab Position", "", "MidSlabPosition"), + "00189107": ("SQ", "1", "MR Spatial Saturation Sequence", "", "MRSpatialSaturationSequence"), + "00189112": ("SQ", "1", "MR Timing and Related Parameters Sequence", "", "MRTimingAndRelatedParametersSequence"), + "00189114": ("SQ", "1", "MR Echo Sequence", "", "MREchoSequence"), + "00189115": ("SQ", "1", "MR Modifier Sequence", "", "MRModifierSequence"), + "00189117": ("SQ", "1", "MR Diffusion Sequence", "", "MRDiffusionSequence"), + "00189118": ("SQ", "1", "Cardiac Synchronization Sequence", "", "CardiacSynchronizationSequence"), + "00189119": ("SQ", "1", "MR Averages Sequence", "", "MRAveragesSequence"), + "00189125": ("SQ", "1", "MR FOV/Geometry Sequence", "", "MRFOVGeometrySequence"), + "00189126": ("SQ", "1", "Volume Localization Sequence", "", "VolumeLocalizationSequence"), + "00189127": ("UL", "1", "Spectroscopy Acquisition Data Columns", "", "SpectroscopyAcquisitionDataColumns"), + "00189147": ("CS", "1", "Diffusion Anisotropy Type", "", "DiffusionAnisotropyType"), + "00189151": ("DT", "1", "Frame Reference DateTime", "", "FrameReferenceDateTime"), + "00189152": ("SQ", "1", "MR Metabolite Map Sequence", "", "MRMetaboliteMapSequence"), + "00189155": ("FD", "1", "Parallel Reduction Factor out-of-plane", "", "ParallelReductionFactorOutOfPlane"), + "00189159": ("UL", "1", "Spectroscopy Acquisition Out-of-plane Phase Steps", "", "SpectroscopyAcquisitionOutOfPlanePhaseSteps"), + "00189166": ("CS", "1", "Bulk Motion Status", "Retired", "BulkMotionStatus"), + "00189168": ("FD", "1", "Parallel Reduction Factor Second In-plane", "", "ParallelReductionFactorSecondInPlane"), + "00189169": ("CS", "1", "Cardiac Beat Rejection Technique", "", "CardiacBeatRejectionTechnique"), + "00189170": ("CS", "1", "Respiratory Motion Compensation Technique", "", "RespiratoryMotionCompensationTechnique"), + "00189171": ("CS", "1", "Respiratory Signal Source", "", "RespiratorySignalSource"), + "00189172": ("CS", "1", "Bulk Motion Compensation Technique", "", "BulkMotionCompensationTechnique"), + "00189173": ("CS", "1", "Bulk Motion Signal Source", "", "BulkMotionSignalSource"), + "00189174": ("CS", "1", "Applicable Safety Standard Agency", "", "ApplicableSafetyStandardAgency"), + "00189175": ("LO", "1", "Applicable Safety Standard Description", "", "ApplicableSafetyStandardDescription"), + "00189176": ("SQ", "1", "Operating Mode Sequence", "", "OperatingModeSequence"), + "00189177": ("CS", "1", "Operating Mode Type", "", "OperatingModeType"), + "00189178": ("CS", "1", "Operating Mode", "", "OperatingMode"), + "00189179": ("CS", "1", "Specific Absorption Rate Definition", "", "SpecificAbsorptionRateDefinition"), + "00189180": ("CS", "1", "Gradient Output Type", "", "GradientOutputType"), + "00189181": ("FD", "1", "Specific Absorption Rate Value", "", "SpecificAbsorptionRateValue"), + "00189182": ("FD", "1", "Gradient Output", "", "GradientOutput"), + "00189183": ("CS", "1", "Flow Compensation Direction", "", "FlowCompensationDirection"), + "00189184": ("FD", "1", "Tagging Delay", "", "TaggingDelay"), + "00189185": ("ST", "1", "Respiratory Motion Compensation Technique Description", "", "RespiratoryMotionCompensationTechniqueDescription"), + "00189186": ("SH", "1", "Respiratory Signal Source ID", "", "RespiratorySignalSourceID"), + "00189195": ("FD", "1", "Chemical Shift Minimum Integration Limit in Hz", "Retired", "ChemicalShiftMinimumIntegrationLimitInHz"), + "00189196": ("FD", "1", "Chemical Shift Maximum Integration Limit in Hz", "Retired", "ChemicalShiftMaximumIntegrationLimitInHz"), + "00189197": ("SQ", "1", "MR Velocity Encoding Sequence", "", "MRVelocityEncodingSequence"), + "00189198": ("CS", "1", "First Order Phase Correction", "", "FirstOrderPhaseCorrection"), + "00189199": ("CS", "1", "Water Referenced Phase Correction", "", "WaterReferencedPhaseCorrection"), + "00189200": ("CS", "1", "MR Spectroscopy Acquisition Type", "", "MRSpectroscopyAcquisitionType"), + "00189214": ("CS", "1", "Respiratory Cycle Position", "", "RespiratoryCyclePosition"), + "00189217": ("FD", "1", "Velocity Encoding Maximum Value", "", "VelocityEncodingMaximumValue"), + "00189218": ("FD", "1", "Tag Spacing Second Dimension", "", "TagSpacingSecondDimension"), + "00189219": ("SS", "1", "Tag Angle Second Axis", "", "TagAngleSecondAxis"), + "00189220": ("FD", "1", "Frame Acquisition Duration", "", "FrameAcquisitionDuration"), + "00189226": ("SQ", "1", "MR Image Frame Type Sequence", "", "MRImageFrameTypeSequence"), + "00189227": ("SQ", "1", "MR Spectroscopy Frame Type Sequence", "", "MRSpectroscopyFrameTypeSequence"), + "00189231": ("US", "1", "MR Acquisition Phase Encoding Steps in-plane", "", "MRAcquisitionPhaseEncodingStepsInPlane"), + "00189232": ("US", "1", "MR Acquisition Phase Encoding Steps out-of-plane", "", "MRAcquisitionPhaseEncodingStepsOutOfPlane"), + "00189234": ("UL", "1", "Spectroscopy Acquisition Phase Columns", "", "SpectroscopyAcquisitionPhaseColumns"), + "00189236": ("CS", "1", "Cardiac Cycle Position", "", "CardiacCyclePosition"), + "00189239": ("SQ", "1", "Specific Absorption Rate Sequence", "", "SpecificAbsorptionRateSequence"), + "00189240": ("US", "1", "RF Echo Train Length", "", "RFEchoTrainLength"), + "00189241": ("US", "1", "Gradient Echo Train Length", "", "GradientEchoTrainLength"), + "00189250": ("CS", "1", "Arterial Spin Labeling Contrast", "", "ArterialSpinLabelingContrast"), + "00189251": ("SQ", "1", "MR Arterial Spin Labeling Sequence", "", "MRArterialSpinLabelingSequence"), + "00189252": ("LO", "1", "ASL Technique Description", "", "ASLTechniqueDescription"), + "00189253": ("US", "1", "ASL Slab Number", "", "ASLSlabNumber"), + "00189254": ("FD", "1", "ASL Slab Thickness", "", "ASLSlabThickness"), + "00189255": ("FD", "3", "ASL Slab Orientation", "", "ASLSlabOrientation"), + "00189256": ("FD", "3", "ASL Mid Slab Position", "", "ASLMidSlabPosition"), + "00189257": ("CS", "1", "ASL Context", "", "ASLContext"), + "00189258": ("UL", "1", "ASL Pulse Train Duration", "", "ASLPulseTrainDuration"), + "00189259": ("CS", "1", "ASL Crusher Flag", "", "ASLCrusherFlag"), + "0018925A": ("FD", "1", "ASL Crusher Flow Limit", "", "ASLCrusherFlowLimit"), + "0018925B": ("LO", "1", "ASL Crusher Description", "", "ASLCrusherDescription"), + "0018925C": ("CS", "1", "ASL Bolus Cut-off Flag", "", "ASLBolusCutoffFlag"), + "0018925D": ("SQ", "1", "ASL Bolus Cut-off Timing Sequence", "", "ASLBolusCutoffTimingSequence"), + "0018925E": ("LO", "1", "ASL Bolus Cut-off Technique", "", "ASLBolusCutoffTechnique"), + "0018925F": ("UL", "1", "ASL Bolus Cut-off Delay Time", "", "ASLBolusCutoffDelayTime"), + "00189260": ("SQ", "1", "ASL Slab Sequence", "", "ASLSlabSequence"), + "00189295": ("FD", "1", "Chemical Shift Minimum Integration Limit in ppm", "", "ChemicalShiftMinimumIntegrationLimitInppm"), + "00189296": ("FD", "1", "Chemical Shift Maximum Integration Limit in ppm", "", "ChemicalShiftMaximumIntegrationLimitInppm"), + "00189297": ("CS", "1", "Water Reference Acquisition", "", "WaterReferenceAcquisition"), + "00189298": ("IS", "1", "Echo Peak Position", "", "EchoPeakPosition"), + "00189301": ("SQ", "1", "CT Acquisition Type Sequence", "", "CTAcquisitionTypeSequence"), + "00189302": ("CS", "1", "Acquisition Type", "", "AcquisitionType"), + "00189303": ("FD", "1", "Tube Angle", "", "TubeAngle"), + "00189304": ("SQ", "1", "CT Acquisition Details Sequence", "", "CTAcquisitionDetailsSequence"), + "00189305": ("FD", "1", "Revolution Time", "", "RevolutionTime"), + "00189306": ("FD", "1", "Single Collimation Width", "", "SingleCollimationWidth"), + "00189307": ("FD", "1", "Total Collimation Width", "", "TotalCollimationWidth"), + "00189308": ("SQ", "1", "CT Table Dynamics Sequence", "", "CTTableDynamicsSequence"), + "00189309": ("FD", "1", "Table Speed", "", "TableSpeed"), + "00189310": ("FD", "1", "Table Feed per Rotation", "", "TableFeedPerRotation"), + "00189311": ("FD", "1", "Spiral Pitch Factor", "", "SpiralPitchFactor"), + "00189312": ("SQ", "1", "CT Geometry Sequence", "", "CTGeometrySequence"), + "00189313": ("FD", "3", "Data Collection Center (Patient)", "", "DataCollectionCenterPatient"), + "00189314": ("SQ", "1", "CT Reconstruction Sequence", "", "CTReconstructionSequence"), + "00189315": ("CS", "1", "Reconstruction Algorithm", "", "ReconstructionAlgorithm"), + "00189316": ("CS", "1", "Convolution Kernel Group", "", "ConvolutionKernelGroup"), + "00189317": ("FD", "2", "Reconstruction Field of View", "", "ReconstructionFieldOfView"), + "00189318": ("FD", "3", "Reconstruction Target Center (Patient)", "", "ReconstructionTargetCenterPatient"), + "00189319": ("FD", "1", "Reconstruction Angle", "", "ReconstructionAngle"), + "00189320": ("SH", "1", "Image Filter", "", "ImageFilter"), + "00189321": ("SQ", "1", "CT Exposure Sequence", "", "CTExposureSequence"), + "00189322": ("FD", "2", "Reconstruction Pixel Spacing", "", "ReconstructionPixelSpacing"), + "00189323": ("CS", "1-n", "Exposure Modulation Type", "", "ExposureModulationType"), + "00189324": ("FD", "1", "Estimated Dose Saving", "", "EstimatedDoseSaving"), + "00189325": ("SQ", "1", "CT X-Ray Details Sequence", "", "CTXRayDetailsSequence"), + "00189326": ("SQ", "1", "CT Position Sequence", "", "CTPositionSequence"), + "00189327": ("FD", "1", "Table Position", "", "TablePosition"), + "00189328": ("FD", "1", "Exposure Time in ms", "", "ExposureTimeInms"), + "00189329": ("SQ", "1", "CT Image Frame Type Sequence", "", "CTImageFrameTypeSequence"), + "00189330": ("FD", "1", "X-Ray Tube Current in mA", "", "XRayTubeCurrentInmA"), + "00189332": ("FD", "1", "Exposure in mAs", "", "ExposureInmAs"), + "00189333": ("CS", "1", "Constant Volume Flag", "", "ConstantVolumeFlag"), + "00189334": ("CS", "1", "Fluoroscopy Flag", "", "FluoroscopyFlag"), + "00189335": ("FD", "1", "Distance Source to Data Collection Center", "", "DistanceSourceToDataCollectionCenter"), + "00189337": ("US", "1", "Contrast/Bolus Agent Number", "", "ContrastBolusAgentNumber"), + "00189338": ("SQ", "1", "Contrast/Bolus Ingredient Code Sequence", "", "ContrastBolusIngredientCodeSequence"), + "00189340": ("SQ", "1", "Contrast Administration Profile Sequence", "", "ContrastAdministrationProfileSequence"), + "00189341": ("SQ", "1", "Contrast/Bolus Usage Sequence", "", "ContrastBolusUsageSequence"), + "00189342": ("CS", "1", "Contrast/Bolus Agent Administered", "", "ContrastBolusAgentAdministered"), + "00189343": ("CS", "1", "Contrast/Bolus Agent Detected", "", "ContrastBolusAgentDetected"), + "00189344": ("CS", "1", "Contrast/Bolus Agent Phase", "", "ContrastBolusAgentPhase"), + "00189345": ("FD", "1", "CTDIvol", "", "CTDIvol"), + "00189346": ("SQ", "1", "CTDI Phantom Type Code Sequence", "", "CTDIPhantomTypeCodeSequence"), + "00189351": ("FL", "1", "Calcium Scoring Mass Factor Patient", "", "CalciumScoringMassFactorPatient"), + "00189352": ("FL", "3", "Calcium Scoring Mass Factor Device", "", "CalciumScoringMassFactorDevice"), + "00189353": ("FL", "1", "Energy Weighting Factor", "", "EnergyWeightingFactor"), + "00189360": ("SQ", "1", "CT Additional X-Ray Source Sequence", "", "CTAdditionalXRaySourceSequence"), + "00189401": ("SQ", "1", "Projection Pixel Calibration Sequence", "", "ProjectionPixelCalibrationSequence"), + "00189402": ("FL", "1", "Distance Source to Isocenter", "", "DistanceSourceToIsocenter"), + "00189403": ("FL", "1", "Distance Object to Table Top", "", "DistanceObjectToTableTop"), + "00189404": ("FL", "2", "Object Pixel Spacing in Center of Beam", "", "ObjectPixelSpacingInCenterOfBeam"), + "00189405": ("SQ", "1", "Positioner Position Sequence", "", "PositionerPositionSequence"), + "00189406": ("SQ", "1", "Table Position Sequence", "", "TablePositionSequence"), + "00189407": ("SQ", "1", "Collimator Shape Sequence", "", "CollimatorShapeSequence"), + "00189410": ("CS", "1", "Planes in Acquisition", "", "PlanesInAcquisition"), + "00189412": ("SQ", "1", "XA/XRF Frame Characteristics Sequence", "", "XAXRFFrameCharacteristicsSequence"), + "00189417": ("SQ", "1", "Frame Acquisition Sequence", "", "FrameAcquisitionSequence"), + "00189420": ("CS", "1", "X-Ray Receptor Type", "", "XRayReceptorType"), + "00189423": ("LO", "1", "Acquisition Protocol Name", "", "AcquisitionProtocolName"), + "00189424": ("LT", "1", "Acquisition Protocol Description", "", "AcquisitionProtocolDescription"), + "00189425": ("CS", "1", "Contrast/Bolus Ingredient Opaque", "", "ContrastBolusIngredientOpaque"), + "00189426": ("FL", "1", "Distance Receptor Plane to Detector Housing", "", "DistanceReceptorPlaneToDetectorHousing"), + "00189427": ("CS", "1", "Intensifier Active Shape", "", "IntensifierActiveShape"), + "00189428": ("FL", "1-2", "Intensifier Active Dimension(s)", "", "IntensifierActiveDimensions"), + "00189429": ("FL", "2", "Physical Detector Size", "", "PhysicalDetectorSize"), + "00189430": ("FL", "2", "Position of Isocenter Projection", "", "PositionOfIsocenterProjection"), + "00189432": ("SQ", "1", "Field of View Sequence", "", "FieldOfViewSequence"), + "00189433": ("LO", "1", "Field of View Description", "", "FieldOfViewDescription"), + "00189434": ("SQ", "1", "Exposure Control Sensing Regions Sequence", "", "ExposureControlSensingRegionsSequence"), + "00189435": ("CS", "1", "Exposure Control Sensing Region Shape", "", "ExposureControlSensingRegionShape"), + "00189436": ("SS", "1", "Exposure Control Sensing Region Left Vertical Edge", "", "ExposureControlSensingRegionLeftVerticalEdge"), + "00189437": ("SS", "1", "Exposure Control Sensing Region Right Vertical Edge", "", "ExposureControlSensingRegionRightVerticalEdge"), + "00189438": ("SS", "1", "Exposure Control Sensing Region Upper Horizontal Edge", "", "ExposureControlSensingRegionUpperHorizontalEdge"), + "00189439": ("SS", "1", "Exposure Control Sensing Region Lower Horizontal Edge", "", "ExposureControlSensingRegionLowerHorizontalEdge"), + "00189440": ("SS", "2", "Center of Circular Exposure Control Sensing Region", "", "CenterOfCircularExposureControlSensingRegion"), + "00189441": ("US", "1", "Radius of Circular Exposure Control Sensing Region", "", "RadiusOfCircularExposureControlSensingRegion"), + "00189442": ("SS", "2-n", "Vertices of the Polygonal Exposure Control Sensing Region", "", "VerticesOfThePolygonalExposureControlSensingRegion"), + "00189445": ("OB", "1", "Retired-blank", "Retired", ""), + "00189447": ("FL", "1", "Column Angulation (Patient)", "", "ColumnAngulationPatient"), + "00189449": ("FL", "1", "Beam Angle", "", "BeamAngle"), + "00189451": ("SQ", "1", "Frame Detector Parameters Sequence", "", "FrameDetectorParametersSequence"), + "00189452": ("FL", "1", "Calculated Anatomy Thickness", "", "CalculatedAnatomyThickness"), + "00189455": ("SQ", "1", "Calibration Sequence", "", "CalibrationSequence"), + "00189456": ("SQ", "1", "Object Thickness Sequence", "", "ObjectThicknessSequence"), + "00189457": ("CS", "1", "Plane Identification", "", "PlaneIdentification"), + "00189461": ("FL", "1-2", "Field of View Dimension(s) in Float", "", "FieldOfViewDimensionsInFloat"), + "00189462": ("SQ", "1", "Isocenter Reference System Sequence", "", "IsocenterReferenceSystemSequence"), + "00189463": ("FL", "1", "Positioner Isocenter Primary Angle", "", "PositionerIsocenterPrimaryAngle"), + "00189464": ("FL", "1", "Positioner Isocenter Secondary Angle", "", "PositionerIsocenterSecondaryAngle"), + "00189465": ("FL", "1", "Positioner Isocenter Detector Rotation Angle", "", "PositionerIsocenterDetectorRotationAngle"), + "00189466": ("FL", "1", "Table X Position to Isocenter", "", "TableXPositionToIsocenter"), + "00189467": ("FL", "1", "Table Y Position to Isocenter", "", "TableYPositionToIsocenter"), + "00189468": ("FL", "1", "Table Z Position to Isocenter", "", "TableZPositionToIsocenter"), + "00189469": ("FL", "1", "Table Horizontal Rotation Angle", "", "TableHorizontalRotationAngle"), + "00189470": ("FL", "1", "Table Head Tilt Angle", "", "TableHeadTiltAngle"), + "00189471": ("FL", "1", "Table Cradle Tilt Angle", "", "TableCradleTiltAngle"), + "00189472": ("SQ", "1", "Frame Display Shutter Sequence", "", "FrameDisplayShutterSequence"), + "00189473": ("FL", "1", "Acquired Image Area Dose Product", "", "AcquiredImageAreaDoseProduct"), + "00189474": ("CS", "1", "C-arm Positioner Tabletop Relationship", "", "CArmPositionerTabletopRelationship"), + "00189476": ("SQ", "1", "X-Ray Geometry Sequence", "", "XRayGeometrySequence"), + "00189477": ("SQ", "1", "Irradiation Event Identification Sequence", "", "IrradiationEventIdentificationSequence"), + "00189504": ("SQ", "1", "X-Ray 3D Frame Type Sequence", "", "XRay3DFrameTypeSequence"), + "00189506": ("SQ", "1", "Contributing Sources Sequence", "", "ContributingSourcesSequence"), + "00189507": ("SQ", "1", "X-Ray 3D Acquisition Sequence", "", "XRay3DAcquisitionSequence"), + "00189508": ("FL", "1", "Primary Positioner Scan Arc", "", "PrimaryPositionerScanArc"), + "00189509": ("FL", "1", "Secondary Positioner Scan Arc", "", "SecondaryPositionerScanArc"), + "00189510": ("FL", "1", "Primary Positioner Scan Start Angle", "", "PrimaryPositionerScanStartAngle"), + "00189511": ("FL", "1", "Secondary Positioner Scan Start Angle", "", "SecondaryPositionerScanStartAngle"), + "00189514": ("FL", "1", "Primary Positioner Increment", "", "PrimaryPositionerIncrement"), + "00189515": ("FL", "1", "Secondary Positioner Increment", "", "SecondaryPositionerIncrement"), + "00189516": ("DT", "1", "Start Acquisition DateTime", "", "StartAcquisitionDateTime"), + "00189517": ("DT", "1", "End Acquisition DateTime", "", "EndAcquisitionDateTime"), + "00189518": ("SS", "1", "Primary Positioner Increment Sign", "", "PrimaryPositionerIncrementSign"), + "00189519": ("SS", "1", "Secondary Positioner Increment Sign", "", "SecondaryPositionerIncrementSign"), + "00189524": ("LO", "1", "Application Name", "", "ApplicationName"), + "00189525": ("LO", "1", "Application Version", "", "ApplicationVersion"), + "00189526": ("LO", "1", "Application Manufacturer", "", "ApplicationManufacturer"), + "00189527": ("CS", "1", "Algorithm Type", "", "AlgorithmType"), + "00189528": ("LO", "1", "Algorithm Description", "", "AlgorithmDescription"), + "00189530": ("SQ", "1", "X-Ray 3D Reconstruction Sequence", "", "XRay3DReconstructionSequence"), + "00189531": ("LO", "1", "Reconstruction Description", "", "ReconstructionDescription"), + "00189538": ("SQ", "1", "Per Projection Acquisition Sequence", "", "PerProjectionAcquisitionSequence"), + "00189541": ("SQ", "1", "Detector Position Sequence", "", "DetectorPositionSequence"), + "00189542": ("SQ", "1", "X-Ray Acquisition Dose Sequence", "", "XRayAcquisitionDoseSequence"), + "00189543": ("FD", "1", "X-Ray Source Isocenter Primary Angle", "", "XRaySourceIsocenterPrimaryAngle"), + "00189544": ("FD", "1", "X-Ray Source Isocenter Secondary Angle", "", "XRaySourceIsocenterSecondaryAngle"), + "00189545": ("FD", "1", "Breast Support Isocenter Primary Angle", "", "BreastSupportIsocenterPrimaryAngle"), + "00189546": ("FD", "1", "Breast Support Isocenter Secondary Angle", "", "BreastSupportIsocenterSecondaryAngle"), + "00189547": ("FD", "1", "Breast Support X Position to Isocenter", "", "BreastSupportXPositionToIsocenter"), + "00189548": ("FD", "1", "Breast Support Y Position to Isocenter", "", "BreastSupportYPositionToIsocenter"), + "00189549": ("FD", "1", "Breast Support Z Position to Isocenter", "", "BreastSupportZPositionToIsocenter"), + "00189550": ("FD", "1", "Detector Isocenter Primary Angle", "", "DetectorIsocenterPrimaryAngle"), + "00189551": ("FD", "1", "Detector Isocenter Secondary Angle", "", "DetectorIsocenterSecondaryAngle"), + "00189552": ("FD", "1", "Detector X Position to Isocenter", "", "DetectorXPositionToIsocenter"), + "00189553": ("FD", "1", "Detector Y Position to Isocenter", "", "DetectorYPositionToIsocenter"), + "00189554": ("FD", "1", "Detector Z Position to Isocenter", "", "DetectorZPositionToIsocenter"), + "00189555": ("SQ", "1", "X-Ray Grid Sequence", "", "XRayGridSequence"), + "00189556": ("SQ", "1", "X-Ray Filter Sequence", "", "XRayFilterSequence"), + "00189557": ("FD", "3", "Detector Active Area TLHC Position", "", "DetectorActiveAreaTLHCPosition"), + "00189558": ("FD", "6", "Detector Active Area Orientation", "", "DetectorActiveAreaOrientation"), + "00189559": ("CS", "1", "Positioner Primary Angle Direction", "", "PositionerPrimaryAngleDirection"), + "00189601": ("SQ", "1", "Diffusion b-matrix Sequence", "", "DiffusionBMatrixSequence"), + "00189602": ("FD", "1", "Diffusion b-value XX", "", "DiffusionBValueXX"), + "00189603": ("FD", "1", "Diffusion b-value XY", "", "DiffusionBValueXY"), + "00189604": ("FD", "1", "Diffusion b-value XZ", "", "DiffusionBValueXZ"), + "00189605": ("FD", "1", "Diffusion b-value YY", "", "DiffusionBValueYY"), + "00189606": ("FD", "1", "Diffusion b-value YZ", "", "DiffusionBValueYZ"), + "00189607": ("FD", "1", "Diffusion b-value ZZ", "", "DiffusionBValueZZ"), + "00189621": ("SQ", "1", "Functional MR Sequence", "", "FunctionalMRSequence"), + "00189622": ("CS", "1", "Functional Settling Phase Frames Present", "", "FunctionalSettlingPhaseFramesPresent"), + "00189623": ("DT", "1", "Functional Sync Pulse", "", "FunctionalSyncPulse"), + "00189624": ("CS", "1", "Settling Phase Frame", "", "SettlingPhaseFrame"), + "00189701": ("DT", "1", "Decay Correction DateTime", "", "DecayCorrectionDateTime"), + "00189715": ("FD", "1", "Start Density Threshold", "", "StartDensityThreshold"), + "00189716": ("FD", "1", "Start Relative Density Difference Threshold", "", "StartRelativeDensityDifferenceThreshold"), + "00189717": ("FD", "1", "Start Cardiac Trigger Count Threshold", "", "StartCardiacTriggerCountThreshold"), + "00189718": ("FD", "1", "Start Respiratory Trigger Count Threshold", "", "StartRespiratoryTriggerCountThreshold"), + "00189719": ("FD", "1", "Termination Counts Threshold", "", "TerminationCountsThreshold"), + "00189720": ("FD", "1", "Termination Density Threshold", "", "TerminationDensityThreshold"), + "00189721": ("FD", "1", "Termination Relative Density Threshold", "", "TerminationRelativeDensityThreshold"), + "00189722": ("FD", "1", "Termination Time Threshold", "", "TerminationTimeThreshold"), + "00189723": ("FD", "1", "Termination Cardiac Trigger Count Threshold", "", "TerminationCardiacTriggerCountThreshold"), + "00189724": ("FD", "1", "Termination Respiratory Trigger Count Threshold", "", "TerminationRespiratoryTriggerCountThreshold"), + "00189725": ("CS", "1", "Detector Geometry", "", "DetectorGeometry"), + "00189726": ("FD", "1", "Transverse Detector Separation", "", "TransverseDetectorSeparation"), + "00189727": ("FD", "1", "Axial Detector Dimension", "", "AxialDetectorDimension"), + "00189729": ("US", "1", "Radiopharmaceutical Agent Number", "", "RadiopharmaceuticalAgentNumber"), + "00189732": ("SQ", "1", "PET Frame Acquisition Sequence", "", "PETFrameAcquisitionSequence"), + "00189733": ("SQ", "1", "PET Detector Motion Details Sequence", "", "PETDetectorMotionDetailsSequence"), + "00189734": ("SQ", "1", "PET Table Dynamics Sequence", "", "PETTableDynamicsSequence"), + "00189735": ("SQ", "1", "PET Position Sequence", "", "PETPositionSequence"), + "00189736": ("SQ", "1", "PET Frame Correction Factors Sequence", "", "PETFrameCorrectionFactorsSequence"), + "00189737": ("SQ", "1", "Radiopharmaceutical Usage Sequence", "", "RadiopharmaceuticalUsageSequence"), + "00189738": ("CS", "1", "Attenuation Correction Source", "", "AttenuationCorrectionSource"), + "00189739": ("US", "1", "Number of Iterations", "", "NumberOfIterations"), + "00189740": ("US", "1", "Number of Subsets", "", "NumberOfSubsets"), + "00189749": ("SQ", "1", "PET Reconstruction Sequence", "", "PETReconstructionSequence"), + "00189751": ("SQ", "1", "PET Frame Type Sequence", "", "PETFrameTypeSequence"), + "00189755": ("CS", "1", "Time of Flight Information Used", "", "TimeOfFlightInformationUsed"), + "00189756": ("CS", "1", "Reconstruction Type", "", "ReconstructionType"), + "00189758": ("CS", "1", "Decay Corrected", "", "DecayCorrected"), + "00189759": ("CS", "1", "Attenuation Corrected", "", "AttenuationCorrected"), + "00189760": ("CS", "1", "Scatter Corrected", "", "ScatterCorrected"), + "00189761": ("CS", "1", "Dead Time Corrected", "", "DeadTimeCorrected"), + "00189762": ("CS", "1", "Gantry Motion Corrected", "", "GantryMotionCorrected"), + "00189763": ("CS", "1", "Patient Motion Corrected", "", "PatientMotionCorrected"), + "00189764": ("CS", "1", "Count Loss Normalization Corrected", "", "CountLossNormalizationCorrected"), + "00189765": ("CS", "1", "Randoms Corrected", "", "RandomsCorrected"), + "00189766": ("CS", "1", "Non-uniform Radial Sampling Corrected", "", "NonUniformRadialSamplingCorrected"), + "00189767": ("CS", "1", "Sensitivity Calibrated", "", "SensitivityCalibrated"), + "00189768": ("CS", "1", "Detector Normalization Correction", "", "DetectorNormalizationCorrection"), + "00189769": ("CS", "1", "Iterative Reconstruction Method", "", "IterativeReconstructionMethod"), + "00189770": ("CS", "1", "Attenuation Correction Temporal Relationship", "", "AttenuationCorrectionTemporalRelationship"), + "00189771": ("SQ", "1", "Patient Physiological State Sequence", "", "PatientPhysiologicalStateSequence"), + "00189772": ("SQ", "1", "Patient Physiological State Code Sequence", "", "PatientPhysiologicalStateCodeSequence"), + "00189801": ("FD", "1-n", "Depth(s) of Focus", "", "DepthsOfFocus"), + "00189803": ("SQ", "1", "Excluded Intervals Sequence", "", "ExcludedIntervalsSequence"), + "00189804": ("DT", "1", "Exclusion Start DateTime", "", "ExclusionStartDateTime"), + "00189805": ("FD", "1", "Exclusion Duration", "", "ExclusionDuration"), + "00189806": ("SQ", "1", "US Image Description Sequence", "", "USImageDescriptionSequence"), + "00189807": ("SQ", "1", "Image Data Type Sequence", "", "ImageDataTypeSequence"), + "00189808": ("CS", "1", "Data Type", "", "DataType"), + "00189809": ("SQ", "1", "Transducer Scan Pattern Code Sequence", "", "TransducerScanPatternCodeSequence"), + "0018980B": ("CS", "1", "Aliased Data Type", "", "AliasedDataType"), + "0018980C": ("CS", "1", "Position Measuring Device Used", "", "PositionMeasuringDeviceUsed"), + "0018980D": ("SQ", "1", "Transducer Geometry Code Sequence", "", "TransducerGeometryCodeSequence"), + "0018980E": ("SQ", "1", "Transducer Beam Steering Code Sequence", "", "TransducerBeamSteeringCodeSequence"), + "0018980F": ("SQ", "1", "Transducer Application Code Sequence", "", "TransducerApplicationCodeSequence"), + "00189810": ("US or SS", "1", "Zero Velocity Pixel Value", "", "ZeroVelocityPixelValue"), + "00189900": ("LO", "1", "Reference Location Label", "", "ReferenceLocationLabel"), + "00189901": ("UT", "1", "Reference Location Description", "", "ReferenceLocationDescription"), + "00189902": ("SQ", "1", "Reference Basis Code Sequence", "", "ReferenceBasisCodeSequence"), + "00189903": ("SQ", "1", "Reference Geometry Code Sequence", "", "ReferenceGeometryCodeSequence"), + "00189904": ("DS", "1", "Offset Distance", "", "OffsetDistance"), + "00189905": ("CS", "1", "Offset Direction", "", "OffsetDirection"), + "00189906": ("SQ", "1", "Potential Scheduled Protocol Code Sequence", "", "PotentialScheduledProtocolCodeSequence"), + "00189907": ("SQ", "1", "Potential Requested Procedure Code Sequence", "", "PotentialRequestedProcedureCodeSequence"), + "00189908": ("UC", "1-n", "Potential Reasons for Procedure", "", "PotentialReasonsForProcedure"), + "00189909": ("SQ", "1", "Potential Reasons for Procedure Code Sequence", "", "PotentialReasonsForProcedureCodeSequence"), + "0018990A": ("UC", "1-n", "Potential Diagnostic Tasks", "", "PotentialDiagnosticTasks"), + "0018990B": ("SQ", "1", "Contraindications Code Sequence", "", "ContraindicationsCodeSequence"), + "0018990C": ("SQ", "1", "Referenced Defined Protocol Sequence", "", "ReferencedDefinedProtocolSequence"), + "0018990D": ("SQ", "1", "Referenced Performed Protocol Sequence", "", "ReferencedPerformedProtocolSequence"), + "0018990E": ("SQ", "1", "Predecessor Protocol Sequence", "", "PredecessorProtocolSequence"), + "0018990F": ("UT", "1", "Protocol Planning Information", "", "ProtocolPlanningInformation"), + "00189910": ("UT", "1", "Protocol Design Rationale", "", "ProtocolDesignRationale"), + "00189911": ("SQ", "1", "Patient Specification Sequence", "", "PatientSpecificationSequence"), + "00189912": ("SQ", "1", "Model Specification Sequence", "", "ModelSpecificationSequence"), + "00189913": ("SQ", "1", "Parameters Specification Sequence", "", "ParametersSpecificationSequence"), + "00189914": ("SQ", "1", "Instruction Sequence", "", "InstructionSequence"), + "00189915": ("US", "1", "Instruction Index", "", "InstructionIndex"), + "00189916": ("LO", "1", "Instruction Text", "", "InstructionText"), + "00189917": ("UT", "1", "Instruction Description", "", "InstructionDescription"), + "00189918": ("CS", "1", "Instruction Performed Flag", "", "InstructionPerformedFlag"), + "00189919": ("DT", "1", "Instruction Performed DateTime", "", "InstructionPerformedDateTime"), + "0018991A": ("UT", "1", "Instruction Performance Comment", "", "InstructionPerformanceComment"), + "0018991B": ("SQ", "1", "Patient Positioning Instruction Sequence", "", "PatientPositioningInstructionSequence"), + "0018991C": ("SQ", "1", "Positioning Method Code Sequence", "", "PositioningMethodCodeSequence"), + "0018991D": ("SQ", "1", "Positioning Landmark Sequence", "", "PositioningLandmarkSequence"), + "0018991E": ("UI", "1", "Target Frame of Reference UID", "", "TargetFrameOfReferenceUID"), + "0018991F": ("SQ", "1", "Acquisition Protocol Element Specification Sequence", "", "AcquisitionProtocolElementSpecificationSequence"), + "00189920": ("SQ", "1", "Acquisition Protocol Element Sequence", "", "AcquisitionProtocolElementSequence"), + "00189921": ("US", "1", "Protocol Element Number", "", "ProtocolElementNumber"), + "00189922": ("LO", "1", "Protocol Element Name", "", "ProtocolElementName"), + "00189923": ("UT", "1", "Protocol Element Characteristics Summary", "", "ProtocolElementCharacteristicsSummary"), + "00189924": ("UT", "1", "Protocol Element Purpose", "", "ProtocolElementPurpose"), + "00189930": ("CS", "1", "Acquisition Motion", "", "AcquisitionMotion"), + "00189931": ("SQ", "1", "Acquisition Start Location Sequence", "", "AcquisitionStartLocationSequence"), + "00189932": ("SQ", "1", "Acquisition End Location Sequence", "", "AcquisitionEndLocationSequence"), + "00189933": ("SQ", "1", "Reconstruction Protocol Element Specification Sequence", "", "ReconstructionProtocolElementSpecificationSequence"), + "00189934": ("SQ", "1", "Reconstruction Protocol Element Sequence", "", "ReconstructionProtocolElementSequence"), + "00189935": ("SQ", "1", "Storage Protocol Element Specification Sequence", "", "StorageProtocolElementSpecificationSequence"), + "00189936": ("SQ", "1", "Storage Protocol Element Sequence", "", "StorageProtocolElementSequence"), + "00189937": ("LO", "1", "Requested Series Description", "", "RequestedSeriesDescription"), + "00189938": ("US", "1-n", "Source Acquisition Protocol Element Number", "", "SourceAcquisitionProtocolElementNumber"), + "00189939": ("US", "1-n", "Source Acquisition Beam Number", "", "SourceAcquisitionBeamNumber"), + "0018993A": ("US", "1-n", "Source Reconstruction Protocol Element Number", "", "SourceReconstructionProtocolElementNumber"), + "0018993B": ("SQ", "1", "Reconstruction Start Location Sequence", "", "ReconstructionStartLocationSequence"), + "0018993C": ("SQ", "1", "Reconstruction End Location Sequence", "", "ReconstructionEndLocationSequence"), + "0018993D": ("SQ", "1", "Reconstruction Algorithm Sequence", "", "ReconstructionAlgorithmSequence"), + "0018993E": ("SQ", "1", "Reconstruction Target Center Location Sequence", "", "ReconstructionTargetCenterLocationSequence"), + "00189941": ("UT", "1", "Image Filter Description", "", "ImageFilterDescription"), + "00189942": ("FD", "1", "CTDIvol Notification Trigger", "", "CTDIvolNotificationTrigger"), + "00189943": ("FD", "1", "DLP Notification Trigger", "", "DLPNotificationTrigger"), + "00189944": ("CS", "1", "Auto KVP Selection Type", "", "AutoKVPSelectionType"), + "00189945": ("FD", "1", "Auto KVP Upper Bound", "", "AutoKVPUpperBound"), + "00189946": ("FD", "1", "Auto KVP Lower Bound", "", "AutoKVPLowerBound"), + "00189947": ("CS", "1", "Protocol Defined Patient Position", "", "ProtocolDefinedPatientPosition"), + "0018A001": ("SQ", "1", "Contributing Equipment Sequence", "", "ContributingEquipmentSequence"), + "0018A002": ("DT", "1", "Contribution DateTime", "", "ContributionDateTime"), + "0018A003": ("ST", "1", "Contribution Description", "", "ContributionDescription"), + "0020000D": ("UI", "1", "Study Instance UID", "", "StudyInstanceUID"), + "0020000E": ("UI", "1", "Series Instance UID", "", "SeriesInstanceUID"), + "00200010": ("SH", "1", "Study ID", "", "StudyID"), + "00200011": ("IS", "1", "Series Number", "", "SeriesNumber"), + "00200012": ("IS", "1", "Acquisition Number", "", "AcquisitionNumber"), + "00200013": ("IS", "1", "Instance Number", "", "InstanceNumber"), + "00200014": ("IS", "1", "Isotope Number", "Retired", "IsotopeNumber"), + "00200015": ("IS", "1", "Phase Number", "Retired", "PhaseNumber"), + "00200016": ("IS", "1", "Interval Number", "Retired", "IntervalNumber"), + "00200017": ("IS", "1", "Time Slot Number", "Retired", "TimeSlotNumber"), + "00200018": ("IS", "1", "Angle Number", "Retired", "AngleNumber"), + "00200019": ("IS", "1", "Item Number", "", "ItemNumber"), + "00200020": ("CS", "2", "Patient Orientation", "", "PatientOrientation"), + "00200022": ("IS", "1", "Overlay Number", "Retired", "OverlayNumber"), + "00200024": ("IS", "1", "Curve Number", "Retired", "CurveNumber"), + "00200026": ("IS", "1", "LUT Number", "Retired", "LUTNumber"), + "00200030": ("DS", "3", "Image Position", "Retired", "ImagePosition"), + "00200032": ("DS", "3", "Image Position (Patient)", "", "ImagePositionPatient"), + "00200035": ("DS", "6", "Image Orientation", "Retired", "ImageOrientation"), + "00200037": ("DS", "6", "Image Orientation (Patient)", "", "ImageOrientationPatient"), + "00200050": ("DS", "1", "Location", "Retired", "Location"), + "00200052": ("UI", "1", "Frame of Reference UID", "", "FrameOfReferenceUID"), + "00200060": ("CS", "1", "Laterality", "", "Laterality"), + "00200062": ("CS", "1", "Image Laterality", "", "ImageLaterality"), + "00200070": ("LO", "1", "Image Geometry Type", "Retired", "ImageGeometryType"), + "00200080": ("CS", "1-n", "Masking Image", "Retired", "MaskingImage"), + "002000AA": ("IS", "1", "Report Number", "Retired", "ReportNumber"), + "00200100": ("IS", "1", "Temporal Position Identifier", "", "TemporalPositionIdentifier"), + "00200105": ("IS", "1", "Number of Temporal Positions", "", "NumberOfTemporalPositions"), + "00200110": ("DS", "1", "Temporal Resolution", "", "TemporalResolution"), + "00200200": ("UI", "1", "Synchronization Frame of Reference UID", "", "SynchronizationFrameOfReferenceUID"), + "00200242": ("UI", "1", "SOP Instance UID of Concatenation Source", "", "SOPInstanceUIDOfConcatenationSource"), + "00201000": ("IS", "1", "Series in Study", "Retired", "SeriesInStudy"), + "00201001": ("IS", "1", "Acquisitions in Series", "Retired", "AcquisitionsInSeries"), + "00201002": ("IS", "1", "Images in Acquisition", "", "ImagesInAcquisition"), + "00201003": ("IS", "1", "Images in Series", "Retired", "ImagesInSeries"), + "00201004": ("IS", "1", "Acquisitions in Study", "Retired", "AcquisitionsInStudy"), + "00201005": ("IS", "1", "Images in Study", "Retired", "ImagesInStudy"), + "00201020": ("LO", "1-n", "Reference", "Retired", "Reference"), + "0020103F": ("LO", "1", "Target Position Reference Indicator", "", "TargetPositionReferenceIndicator"), + "00201040": ("LO", "1", "Position Reference Indicator", "", "PositionReferenceIndicator"), + "00201041": ("DS", "1", "Slice Location", "", "SliceLocation"), + "00201070": ("IS", "1-n", "Other Study Numbers", "Retired", "OtherStudyNumbers"), + "00201200": ("IS", "1", "Number of Patient Related Studies", "", "NumberOfPatientRelatedStudies"), + "00201202": ("IS", "1", "Number of Patient Related Series", "", "NumberOfPatientRelatedSeries"), + "00201204": ("IS", "1", "Number of Patient Related Instances", "", "NumberOfPatientRelatedInstances"), + "00201206": ("IS", "1", "Number of Study Related Series", "", "NumberOfStudyRelatedSeries"), + "00201208": ("IS", "1", "Number of Study Related Instances", "", "NumberOfStudyRelatedInstances"), + "00201209": ("IS", "1", "Number of Series Related Instances", "", "NumberOfSeriesRelatedInstances"), + "00203401": ("CS", "1", "Modifying Device ID", "Retired", "ModifyingDeviceID"), + "00203402": ("CS", "1", "Modified Image ID", "Retired", "ModifiedImageID"), + "00203403": ("DA", "1", "Modified Image Date", "Retired", "ModifiedImageDate"), + "00203404": ("LO", "1", "Modifying Device Manufacturer", "Retired", "ModifyingDeviceManufacturer"), + "00203405": ("TM", "1", "Modified Image Time", "Retired", "ModifiedImageTime"), + "00203406": ("LO", "1", "Modified Image Description", "Retired", "ModifiedImageDescription"), + "00204000": ("LT", "1", "Image Comments", "", "ImageComments"), + "00205000": ("AT", "1-n", "Original Image Identification", "Retired", "OriginalImageIdentification"), + "00205002": ("LO", "1-n", "Original Image Identification Nomenclature", "Retired", "OriginalImageIdentificationNomenclature"), + "00209056": ("SH", "1", "Stack ID", "", "StackID"), + "00209057": ("UL", "1", "In-Stack Position Number", "", "InStackPositionNumber"), + "00209071": ("SQ", "1", "Frame Anatomy Sequence", "", "FrameAnatomySequence"), + "00209072": ("CS", "1", "Frame Laterality", "", "FrameLaterality"), + "00209111": ("SQ", "1", "Frame Content Sequence", "", "FrameContentSequence"), + "00209113": ("SQ", "1", "Plane Position Sequence", "", "PlanePositionSequence"), + "00209116": ("SQ", "1", "Plane Orientation Sequence", "", "PlaneOrientationSequence"), + "00209128": ("UL", "1", "Temporal Position Index", "", "TemporalPositionIndex"), + "00209153": ("FD", "1", "Nominal Cardiac Trigger Delay Time", "", "NominalCardiacTriggerDelayTime"), + "00209154": ("FL", "1", "Nominal Cardiac Trigger Time Prior To R-Peak", "", "NominalCardiacTriggerTimePriorToRPeak"), + "00209155": ("FL", "1", "Actual Cardiac Trigger Time Prior To R-Peak", "", "ActualCardiacTriggerTimePriorToRPeak"), + "00209156": ("US", "1", "Frame Acquisition Number", "", "FrameAcquisitionNumber"), + "00209157": ("UL", "1-n", "Dimension Index Values", "", "DimensionIndexValues"), + "00209158": ("LT", "1", "Frame Comments", "", "FrameComments"), + "00209161": ("UI", "1", "Concatenation UID", "", "ConcatenationUID"), + "00209162": ("US", "1", "In-concatenation Number", "", "InConcatenationNumber"), + "00209163": ("US", "1", "In-concatenation Total Number", "", "InConcatenationTotalNumber"), + "00209164": ("UI", "1", "Dimension Organization UID", "", "DimensionOrganizationUID"), + "00209165": ("AT", "1", "Dimension Index Pointer", "", "DimensionIndexPointer"), + "00209167": ("AT", "1", "Functional Group Pointer", "", "FunctionalGroupPointer"), + "00209170": ("SQ", "1", "Unassigned Shared Converted Attributes Sequence", "", "UnassignedSharedConvertedAttributesSequence"), + "00209171": ("SQ", "1", "Unassigned Per-Frame Converted Attributes Sequence", "", "UnassignedPerFrameConvertedAttributesSequence"), + "00209172": ("SQ", "1", "Conversion Source Attributes Sequence", "", "ConversionSourceAttributesSequence"), + "00209213": ("LO", "1", "Dimension Index Private Creator", "", "DimensionIndexPrivateCreator"), + "00209221": ("SQ", "1", "Dimension Organization Sequence", "", "DimensionOrganizationSequence"), + "00209222": ("SQ", "1", "Dimension Index Sequence", "", "DimensionIndexSequence"), + "00209228": ("UL", "1", "Concatenation Frame Offset Number", "", "ConcatenationFrameOffsetNumber"), + "00209238": ("LO", "1", "Functional Group Private Creator", "", "FunctionalGroupPrivateCreator"), + "00209241": ("FL", "1", "Nominal Percentage of Cardiac Phase", "", "NominalPercentageOfCardiacPhase"), + "00209245": ("FL", "1", "Nominal Percentage of Respiratory Phase", "", "NominalPercentageOfRespiratoryPhase"), + "00209246": ("FL", "1", "Starting Respiratory Amplitude", "", "StartingRespiratoryAmplitude"), + "00209247": ("CS", "1", "Starting Respiratory Phase", "", "StartingRespiratoryPhase"), + "00209248": ("FL", "1", "Ending Respiratory Amplitude", "", "EndingRespiratoryAmplitude"), + "00209249": ("CS", "1", "Ending Respiratory Phase", "", "EndingRespiratoryPhase"), + "00209250": ("CS", "1", "Respiratory Trigger Type", "", "RespiratoryTriggerType"), + "00209251": ("FD", "1", "R-R Interval Time Nominal", "", "RRIntervalTimeNominal"), + "00209252": ("FD", "1", "Actual Cardiac Trigger Delay Time", "", "ActualCardiacTriggerDelayTime"), + "00209253": ("SQ", "1", "Respiratory Synchronization Sequence", "", "RespiratorySynchronizationSequence"), + "00209254": ("FD", "1", "Respiratory Interval Time", "", "RespiratoryIntervalTime"), + "00209255": ("FD", "1", "Nominal Respiratory Trigger Delay Time", "", "NominalRespiratoryTriggerDelayTime"), + "00209256": ("FD", "1", "Respiratory Trigger Delay Threshold", "", "RespiratoryTriggerDelayThreshold"), + "00209257": ("FD", "1", "Actual Respiratory Trigger Delay Time", "", "ActualRespiratoryTriggerDelayTime"), + "00209301": ("FD", "3", "Image Position (Volume)", "", "ImagePositionVolume"), + "00209302": ("FD", "6", "Image Orientation (Volume)", "", "ImageOrientationVolume"), + "00209307": ("CS", "1", "Ultrasound Acquisition Geometry", "", "UltrasoundAcquisitionGeometry"), + "00209308": ("FD", "3", "Apex Position", "", "ApexPosition"), + "00209309": ("FD", "16", "Volume to Transducer Mapping Matrix", "", "VolumeToTransducerMappingMatrix"), + "0020930A": ("FD", "16", "Volume to Table Mapping Matrix", "", "VolumeToTableMappingMatrix"), + "0020930B": ("CS", "1", "Volume to Transducer Relationship", "", "VolumeToTransducerRelationship"), + "0020930C": ("CS", "1", "Patient Frame of Reference Source", "", "PatientFrameOfReferenceSource"), + "0020930D": ("FD", "1", "Temporal Position Time Offset", "", "TemporalPositionTimeOffset"), + "0020930E": ("SQ", "1", "Plane Position (Volume) Sequence", "", "PlanePositionVolumeSequence"), + "0020930F": ("SQ", "1", "Plane Orientation (Volume) Sequence", "", "PlaneOrientationVolumeSequence"), + "00209310": ("SQ", "1", "Temporal Position Sequence", "", "TemporalPositionSequence"), + "00209311": ("CS", "1", "Dimension Organization Type", "", "DimensionOrganizationType"), + "00209312": ("UI", "1", "Volume Frame of Reference UID", "", "VolumeFrameOfReferenceUID"), + "00209313": ("UI", "1", "Table Frame of Reference UID", "", "TableFrameOfReferenceUID"), + "00209421": ("LO", "1", "Dimension Description Label", "", "DimensionDescriptionLabel"), + "00209450": ("SQ", "1", "Patient Orientation in Frame Sequence", "", "PatientOrientationInFrameSequence"), + "00209453": ("LO", "1", "Frame Label", "", "FrameLabel"), + "00209518": ("US", "1-n", "Acquisition Index", "", "AcquisitionIndex"), + "00209529": ("SQ", "1", "Contributing SOP Instances Reference Sequence", "", "ContributingSOPInstancesReferenceSequence"), + "00209536": ("US", "1", "Reconstruction Index", "", "ReconstructionIndex"), + "00220001": ("US", "1", "Light Path Filter Pass-Through Wavelength", "", "LightPathFilterPassThroughWavelength"), + "00220002": ("US", "2", "Light Path Filter Pass Band", "", "LightPathFilterPassBand"), + "00220003": ("US", "1", "Image Path Filter Pass-Through Wavelength", "", "ImagePathFilterPassThroughWavelength"), + "00220004": ("US", "2", "Image Path Filter Pass Band", "", "ImagePathFilterPassBand"), + "00220005": ("CS", "1", "Patient Eye Movement Commanded", "", "PatientEyeMovementCommanded"), + "00220006": ("SQ", "1", "Patient Eye Movement Command Code Sequence", "", "PatientEyeMovementCommandCodeSequence"), + "00220007": ("FL", "1", "Spherical Lens Power", "", "SphericalLensPower"), + "00220008": ("FL", "1", "Cylinder Lens Power", "", "CylinderLensPower"), + "00220009": ("FL", "1", "Cylinder Axis", "", "CylinderAxis"), + "0022000A": ("FL", "1", "Emmetropic Magnification", "", "EmmetropicMagnification"), + "0022000B": ("FL", "1", "Intra Ocular Pressure", "", "IntraOcularPressure"), + "0022000C": ("FL", "1", "Horizontal Field of View", "", "HorizontalFieldOfView"), + "0022000D": ("CS", "1", "Pupil Dilated", "", "PupilDilated"), + "0022000E": ("FL", "1", "Degree of Dilation", "", "DegreeOfDilation"), + "00220010": ("FL", "1", "Stereo Baseline Angle", "", "StereoBaselineAngle"), + "00220011": ("FL", "1", "Stereo Baseline Displacement", "", "StereoBaselineDisplacement"), + "00220012": ("FL", "1", "Stereo Horizontal Pixel Offset", "", "StereoHorizontalPixelOffset"), + "00220013": ("FL", "1", "Stereo Vertical Pixel Offset", "", "StereoVerticalPixelOffset"), + "00220014": ("FL", "1", "Stereo Rotation", "", "StereoRotation"), + "00220015": ("SQ", "1", "Acquisition Device Type Code Sequence", "", "AcquisitionDeviceTypeCodeSequence"), + "00220016": ("SQ", "1", "Illumination Type Code Sequence", "", "IlluminationTypeCodeSequence"), + "00220017": ("SQ", "1", "Light Path Filter Type Stack Code Sequence", "", "LightPathFilterTypeStackCodeSequence"), + "00220018": ("SQ", "1", "Image Path Filter Type Stack Code Sequence", "", "ImagePathFilterTypeStackCodeSequence"), + "00220019": ("SQ", "1", "Lenses Code Sequence", "", "LensesCodeSequence"), + "0022001A": ("SQ", "1", "Channel Description Code Sequence", "", "ChannelDescriptionCodeSequence"), + "0022001B": ("SQ", "1", "Refractive State Sequence", "", "RefractiveStateSequence"), + "0022001C": ("SQ", "1", "Mydriatic Agent Code Sequence", "", "MydriaticAgentCodeSequence"), + "0022001D": ("SQ", "1", "Relative Image Position Code Sequence", "", "RelativeImagePositionCodeSequence"), + "0022001E": ("FL", "1", "Camera Angle of View", "", "CameraAngleOfView"), + "00220020": ("SQ", "1", "Stereo Pairs Sequence", "", "StereoPairsSequence"), + "00220021": ("SQ", "1", "Left Image Sequence", "", "LeftImageSequence"), + "00220022": ("SQ", "1", "Right Image Sequence", "", "RightImageSequence"), + "00220028": ("CS", "1", "Stereo Pairs Present", "", "StereoPairsPresent"), + "00220030": ("FL", "1", "Axial Length of the Eye", "", "AxialLengthOfTheEye"), + "00220031": ("SQ", "1", "Ophthalmic Frame Location Sequence", "", "OphthalmicFrameLocationSequence"), + "00220032": ("FL", "2-2n", "Reference Coordinates", "", "ReferenceCoordinates"), + "00220035": ("FL", "1", "Depth Spatial Resolution", "", "DepthSpatialResolution"), + "00220036": ("FL", "1", "Maximum Depth Distortion", "", "MaximumDepthDistortion"), + "00220037": ("FL", "1", "Along-scan Spatial Resolution", "", "AlongScanSpatialResolution"), + "00220038": ("FL", "1", "Maximum Along-scan Distortion", "", "MaximumAlongScanDistortion"), + "00220039": ("CS", "1", "Ophthalmic Image Orientation", "", "OphthalmicImageOrientation"), + "00220041": ("FL", "1", "Depth of Transverse Image", "", "DepthOfTransverseImage"), + "00220042": ("SQ", "1", "Mydriatic Agent Concentration Units Sequence", "", "MydriaticAgentConcentrationUnitsSequence"), + "00220048": ("FL", "1", "Across-scan Spatial Resolution", "", "AcrossScanSpatialResolution"), + "00220049": ("FL", "1", "Maximum Across-scan Distortion", "", "MaximumAcrossScanDistortion"), + "0022004E": ("DS", "1", "Mydriatic Agent Concentration", "", "MydriaticAgentConcentration"), + "00220055": ("FL", "1", "Illumination Wave Length", "", "IlluminationWaveLength"), + "00220056": ("FL", "1", "Illumination Power", "", "IlluminationPower"), + "00220057": ("FL", "1", "Illumination Bandwidth", "", "IlluminationBandwidth"), + "00220058": ("SQ", "1", "Mydriatic Agent Sequence", "", "MydriaticAgentSequence"), + "00221007": ("SQ", "1", "Ophthalmic Axial Measurements Right Eye Sequence", "", "OphthalmicAxialMeasurementsRightEyeSequence"), + "00221008": ("SQ", "1", "Ophthalmic Axial Measurements Left Eye Sequence", "", "OphthalmicAxialMeasurementsLeftEyeSequence"), + "00221009": ("CS", "1", "Ophthalmic Axial Measurements Device Type", "", "OphthalmicAxialMeasurementsDeviceType"), + "00221010": ("CS", "1", "Ophthalmic Axial Length Measurements Type", "", "OphthalmicAxialLengthMeasurementsType"), + "00221012": ("SQ", "1", "Ophthalmic Axial Length Sequence", "", "OphthalmicAxialLengthSequence"), + "00221019": ("FL", "1", "Ophthalmic Axial Length", "", "OphthalmicAxialLength"), + "00221024": ("SQ", "1", "Lens Status Code Sequence", "", "LensStatusCodeSequence"), + "00221025": ("SQ", "1", "Vitreous Status Code Sequence", "", "VitreousStatusCodeSequence"), + "00221028": ("SQ", "1", "IOL Formula Code Sequence", "", "IOLFormulaCodeSequence"), + "00221029": ("LO", "1", "IOL Formula Detail", "", "IOLFormulaDetail"), + "00221033": ("FL", "1", "Keratometer Index", "", "KeratometerIndex"), + "00221035": ("SQ", "1", "Source of Ophthalmic Axial Length Code Sequence", "", "SourceOfOphthalmicAxialLengthCodeSequence"), + "00221037": ("FL", "1", "Target Refraction", "", "TargetRefraction"), + "00221039": ("CS", "1", "Refractive Procedure Occurred", "", "RefractiveProcedureOccurred"), + "00221040": ("SQ", "1", "Refractive Surgery Type Code Sequence", "", "RefractiveSurgeryTypeCodeSequence"), + "00221044": ("SQ", "1", "Ophthalmic Ultrasound Method Code Sequence", "", "OphthalmicUltrasoundMethodCodeSequence"), + "00221050": ("SQ", "1", "Ophthalmic Axial Length Measurements Sequence", "", "OphthalmicAxialLengthMeasurementsSequence"), + "00221053": ("FL", "1", "IOL Power", "", "IOLPower"), + "00221054": ("FL", "1", "Predicted Refractive Error", "", "PredictedRefractiveError"), + "00221059": ("FL", "1", "Ophthalmic Axial Length Velocity", "", "OphthalmicAxialLengthVelocity"), + "00221065": ("LO", "1", "Lens Status Description", "", "LensStatusDescription"), + "00221066": ("LO", "1", "Vitreous Status Description", "", "VitreousStatusDescription"), + "00221090": ("SQ", "1", "IOL Power Sequence", "", "IOLPowerSequence"), + "00221092": ("SQ", "1", "Lens Constant Sequence", "", "LensConstantSequence"), + "00221093": ("LO", "1", "IOL Manufacturer", "", "IOLManufacturer"), + "00221094": ("LO", "1", "Lens Constant Description", "Retired", "LensConstantDescription"), + "00221095": ("LO", "1", "Implant Name", "", "ImplantName"), + "00221096": ("SQ", "1", "Keratometry Measurement Type Code Sequence", "", "KeratometryMeasurementTypeCodeSequence"), + "00221097": ("LO", "1", "Implant Part Number", "", "ImplantPartNumber"), + "00221100": ("SQ", "1", "Referenced Ophthalmic Axial Measurements Sequence", "", "ReferencedOphthalmicAxialMeasurementsSequence"), + "00221101": ("SQ", "1", "Ophthalmic Axial Length Measurements Segment Name Code Sequence", "", "OphthalmicAxialLengthMeasurementsSegmentNameCodeSequence"), + "00221103": ("SQ", "1", "Refractive Error Before Refractive Surgery Code Sequence", "", "RefractiveErrorBeforeRefractiveSurgeryCodeSequence"), + "00221121": ("FL", "1", "IOL Power For Exact Emmetropia", "", "IOLPowerForExactEmmetropia"), + "00221122": ("FL", "1", "IOL Power For Exact Target Refraction", "", "IOLPowerForExactTargetRefraction"), + "00221125": ("SQ", "1", "Anterior Chamber Depth Definition Code Sequence", "", "AnteriorChamberDepthDefinitionCodeSequence"), + "00221127": ("SQ", "1", "Lens Thickness Sequence", "", "LensThicknessSequence"), + "00221128": ("SQ", "1", "Anterior Chamber Depth Sequence", "", "AnteriorChamberDepthSequence"), + "00221130": ("FL", "1", "Lens Thickness", "", "LensThickness"), + "00221131": ("FL", "1", "Anterior Chamber Depth", "", "AnteriorChamberDepth"), + "00221132": ("SQ", "1", "Source of Lens Thickness Data Code Sequence", "", "SourceOfLensThicknessDataCodeSequence"), + "00221133": ("SQ", "1", "Source of Anterior Chamber Depth Data Code Sequence", "", "SourceOfAnteriorChamberDepthDataCodeSequence"), + "00221134": ("SQ", "1", "Source of Refractive Measurements Sequence", "", "SourceOfRefractiveMeasurementsSequence"), + "00221135": ("SQ", "1", "Source of Refractive Measurements Code Sequence", "", "SourceOfRefractiveMeasurementsCodeSequence"), + "00221140": ("CS", "1", "Ophthalmic Axial Length Measurement Modified", "", "OphthalmicAxialLengthMeasurementModified"), + "00221150": ("SQ", "1", "Ophthalmic Axial Length Data Source Code Sequence", "", "OphthalmicAxialLengthDataSourceCodeSequence"), + "00221153": ("SQ", "1", "Ophthalmic Axial Length Acquisition Method Code Sequence", "Retired", "OphthalmicAxialLengthAcquisitionMethodCodeSequence"), + "00221155": ("FL", "1", "Signal to Noise Ratio", "", "SignalToNoiseRatio"), + "00221159": ("LO", "1", "Ophthalmic Axial Length Data Source Description", "", "OphthalmicAxialLengthDataSourceDescription"), + "00221210": ("SQ", "1", "Ophthalmic Axial Length Measurements Total Length Sequence", "", "OphthalmicAxialLengthMeasurementsTotalLengthSequence"), + "00221211": ("SQ", "1", "Ophthalmic Axial Length Measurements Segmental Length Sequence", "", "OphthalmicAxialLengthMeasurementsSegmentalLengthSequence"), + "00221212": ("SQ", "1", "Ophthalmic Axial Length Measurements Length Summation Sequence", "", "OphthalmicAxialLengthMeasurementsLengthSummationSequence"), + "00221220": ("SQ", "1", "Ultrasound Ophthalmic Axial Length Measurements Sequence", "", "UltrasoundOphthalmicAxialLengthMeasurementsSequence"), + "00221225": ("SQ", "1", "Optical Ophthalmic Axial Length Measurements Sequence", "", "OpticalOphthalmicAxialLengthMeasurementsSequence"), + "00221230": ("SQ", "1", "Ultrasound Selected Ophthalmic Axial Length Sequence", "", "UltrasoundSelectedOphthalmicAxialLengthSequence"), + "00221250": ("SQ", "1", "Ophthalmic Axial Length Selection Method Code Sequence", "", "OphthalmicAxialLengthSelectionMethodCodeSequence"), + "00221255": ("SQ", "1", "Optical Selected Ophthalmic Axial Length Sequence", "", "OpticalSelectedOphthalmicAxialLengthSequence"), + "00221257": ("SQ", "1", "Selected Segmental Ophthalmic Axial Length Sequence", "", "SelectedSegmentalOphthalmicAxialLengthSequence"), + "00221260": ("SQ", "1", "Selected Total Ophthalmic Axial Length Sequence", "", "SelectedTotalOphthalmicAxialLengthSequence"), + "00221262": ("SQ", "1", "Ophthalmic Axial Length Quality Metric Sequence", "", "OphthalmicAxialLengthQualityMetricSequence"), + "00221265": ("SQ", "1", "Ophthalmic Axial Length Quality Metric Type Code Sequence", "Retired", "OphthalmicAxialLengthQualityMetricTypeCodeSequence"), + "00221273": ("LO", "1", "Ophthalmic Axial Length Quality Metric Type Description", "Retired", "OphthalmicAxialLengthQualityMetricTypeDescription"), + "00221300": ("SQ", "1", "Intraocular Lens Calculations Right Eye Sequence", "", "IntraocularLensCalculationsRightEyeSequence"), + "00221310": ("SQ", "1", "Intraocular Lens Calculations Left Eye Sequence", "", "IntraocularLensCalculationsLeftEyeSequence"), + "00221330": ("SQ", "1", "Referenced Ophthalmic Axial Length Measurement QC Image Sequence", "", "ReferencedOphthalmicAxialLengthMeasurementQCImageSequence"), + "00221415": ("CS", "1", "Ophthalmic Mapping Device Type", "", "OphthalmicMappingDeviceType"), + "00221420": ("SQ", "1", "Acquisition Method Code Sequence", "", "AcquisitionMethodCodeSequence"), + "00221423": ("SQ", "1", "Acquisition Method Algorithm Sequence", "", "AcquisitionMethodAlgorithmSequence"), + "00221436": ("SQ", "1", "Ophthalmic Thickness Map Type Code Sequence", "", "OphthalmicThicknessMapTypeCodeSequence"), + "00221443": ("SQ", "1", "Ophthalmic Thickness Mapping Normals Sequence", "", "OphthalmicThicknessMappingNormalsSequence"), + "00221445": ("SQ", "1", "Retinal Thickness Definition Code Sequence", "", "RetinalThicknessDefinitionCodeSequence"), + "00221450": ("SQ", "1", "Pixel Value Mapping to Coded Concept Sequence", "", "PixelValueMappingToCodedConceptSequence"), + "00221452": ("US or SS", "1", "Mapped Pixel Value", "", "MappedPixelValue"), + "00221454": ("LO", "1", "Pixel Value Mapping Explanation", "", "PixelValueMappingExplanation"), + "00221458": ("SQ", "1", "Ophthalmic Thickness Map Quality Threshold Sequence", "", "OphthalmicThicknessMapQualityThresholdSequence"), + "00221460": ("FL", "1", "Ophthalmic Thickness Map Threshold Quality Rating", "", "OphthalmicThicknessMapThresholdQualityRating"), + "00221463": ("FL", "2", "Anatomic Structure Reference Point", "", "AnatomicStructureReferencePoint"), + "00221465": ("SQ", "1", "Registration to Localizer Sequence", "", "RegistrationToLocalizerSequence"), + "00221466": ("CS", "1", "Registered Localizer Units", "", "RegisteredLocalizerUnits"), + "00221467": ("FL", "2", "Registered Localizer Top Left Hand Corner", "", "RegisteredLocalizerTopLeftHandCorner"), + "00221468": ("FL", "2", "Registered Localizer Bottom Right Hand Corner", "", "RegisteredLocalizerBottomRightHandCorner"), + "00221470": ("SQ", "1", "Ophthalmic Thickness Map Quality Rating Sequence", "", "OphthalmicThicknessMapQualityRatingSequence"), + "00221472": ("SQ", "1", "Relevant OPT Attributes Sequence", "", "RelevantOPTAttributesSequence"), + "00221512": ("SQ", "1", "Transformation Method Code Sequence", "", "TransformationMethodCodeSequence"), + "00221513": ("SQ", "1", "Transformation Algorithm Sequence", "", "TransformationAlgorithmSequence"), + "00221515": ("CS", "1", "Ophthalmic Axial Length Method", "", "OphthalmicAxialLengthMethod"), + "00221517": ("FL", "1", "Ophthalmic FOV", "", "OphthalmicFOV"), + "00221518": ("SQ", "1", "Two Dimensional to Three Dimensional Map Sequence", "", "TwoDimensionalToThreeDimensionalMapSequence"), + "00221525": ("SQ", "1", "Wide Field Ophthalmic Photography Quality Rating Sequence", "", "WideFieldOphthalmicPhotographyQualityRatingSequence"), + "00221526": ("SQ", "1", "Wide Field Ophthalmic Photography Quality Threshold Sequence", "", "WideFieldOphthalmicPhotographyQualityThresholdSequence"), + "00221527": ("FL", "1", "Wide Field Ophthalmic Photography Threshold Quality Rating", "", "WideFieldOphthalmicPhotographyThresholdQualityRating"), + "00221528": ("FL", "1", "X Coordinates Center Pixel View Angle", "", "XCoordinatesCenterPixelViewAngle"), + "00221529": ("FL", "1", "Y Coordinates Center Pixel View Angle", "", "YCoordinatesCenterPixelViewAngle"), + "00221530": ("UL", "1", "Number of Map Points", "", "NumberOfMapPoints"), + "00221531": ("OF", "1", "Two Dimensional to Three Dimensional Map Data", "", "TwoDimensionalToThreeDimensionalMapData"), + "00221612": ("SQ", "1", "Derivation Algorithm Sequence", "", "DerivationAlgorithmSequence"), + "00221615": ("SQ", "1", "Ophthalmic Image Type Code Sequence", "", "OphthalmicImageTypeCodeSequence"), + "00221616": ("LO", "1", "Ophthalmic Image Type Description", "", "OphthalmicImageTypeDescription"), + "00221618": ("SQ", "1", "Scan Pattern Type Code Sequence", "", "ScanPatternTypeCodeSequence"), + "00221620": ("SQ", "1", "Referenced Surface Mesh Identification Sequence", "", "ReferencedSurfaceMeshIdentificationSequence"), + "00221622": ("CS", "1", "Ophthalmic Volumetric Properties Flag", "", "OphthalmicVolumetricPropertiesFlag"), + "00221624": ("FL", "1", "Ophthalmic Anatomic Reference Point X-Coordinate", "", "OphthalmicAnatomicReferencePointXCoordinate"), + "00221626": ("FL", "1", "Ophthalmic Anatomic Reference Point Y-Coordinate", "", "OphthalmicAnatomicReferencePointYCoordinate"), + "00221628": ("SQ", "1", "Ophthalmic En Face Image Quality Rating Sequence", "", "OphthalmicEnFaceImageQualityRatingSequence"), + "00221630": ("DS", "1", "Quality Threshold", "", "QualityThreshold"), + "00221640": ("SQ", "1", "OCT B-scan Analysis Acquisition Parameters Sequence", "", "OCTBscanAnalysisAcquisitionParametersSequence"), + "00221642": ("UL", "1", "Number of B-scans Per Frame", "", "NumberofBscansPerFrame"), + "00221643": ("FL", "1", "B-scan Slab Thickness", "", "BscanSlabThickness"), + "00221644": ("FL", "1", "Distance Between B-scan Slabs", "", "DistanceBetweenBscanSlabs"), + "00221645": ("FL", "1", "B-scan Cycle Time", "", "BscanCycleTime"), + "00221646": ("FL", "1-n", "B-scan Cycle Time Vector", "", "BscanCycleTimeVector"), + "00221649": ("FL", "1", "A-scan Rate", "", "AscanRate"), + "00221650": ("FL", "1", "B-scan Rate", "", "BscanRate"), + "00221658": ("UL", "1", "Surface Mesh Z-Pixel Offset", "", "SurfaceMeshZPixelOffset"), + "00240010": ("FL", "1", "Visual Field Horizontal Extent", "", "VisualFieldHorizontalExtent"), + "00240011": ("FL", "1", "Visual Field Vertical Extent", "", "VisualFieldVerticalExtent"), + "00240012": ("CS", "1", "Visual Field Shape", "", "VisualFieldShape"), + "00240016": ("SQ", "1", "Screening Test Mode Code Sequence", "", "ScreeningTestModeCodeSequence"), + "00240018": ("FL", "1", "Maximum Stimulus Luminance", "", "MaximumStimulusLuminance"), + "00240020": ("FL", "1", "Background Luminance", "", "BackgroundLuminance"), + "00240021": ("SQ", "1", "Stimulus Color Code Sequence", "", "StimulusColorCodeSequence"), + "00240024": ("SQ", "1", "Background Illumination Color Code Sequence", "", "BackgroundIlluminationColorCodeSequence"), + "00240025": ("FL", "1", "Stimulus Area", "", "StimulusArea"), + "00240028": ("FL", "1", "Stimulus Presentation Time", "", "StimulusPresentationTime"), + "00240032": ("SQ", "1", "Fixation Sequence", "", "FixationSequence"), + "00240033": ("SQ", "1", "Fixation Monitoring Code Sequence", "", "FixationMonitoringCodeSequence"), + "00240034": ("SQ", "1", "Visual Field Catch Trial Sequence", "", "VisualFieldCatchTrialSequence"), + "00240035": ("US", "1", "Fixation Checked Quantity", "", "FixationCheckedQuantity"), + "00240036": ("US", "1", "Patient Not Properly Fixated Quantity", "", "PatientNotProperlyFixatedQuantity"), + "00240037": ("CS", "1", "Presented Visual Stimuli Data Flag", "", "PresentedVisualStimuliDataFlag"), + "00240038": ("US", "1", "Number of Visual Stimuli", "", "NumberOfVisualStimuli"), + "00240039": ("CS", "1", "Excessive Fixation Losses Data Flag", "", "ExcessiveFixationLossesDataFlag"), + "00240040": ("CS", "1", "Excessive Fixation Losses", "", "ExcessiveFixationLosses"), + "00240042": ("US", "1", "Stimuli Retesting Quantity", "", "StimuliRetestingQuantity"), + "00240044": ("LT", "1", "Comments on Patient's Performance of Visual Field", "", "CommentsOnPatientPerformanceOfVisualField"), + "00240045": ("CS", "1", "False Negatives Estimate Flag", "", "FalseNegativesEstimateFlag"), + "00240046": ("FL", "1", "False Negatives Estimate", "", "FalseNegativesEstimate"), + "00240048": ("US", "1", "Negative Catch Trials Quantity", "", "NegativeCatchTrialsQuantity"), + "00240050": ("US", "1", "False Negatives Quantity", "", "FalseNegativesQuantity"), + "00240051": ("CS", "1", "Excessive False Negatives Data Flag", "", "ExcessiveFalseNegativesDataFlag"), + "00240052": ("CS", "1", "Excessive False Negatives", "", "ExcessiveFalseNegatives"), + "00240053": ("CS", "1", "False Positives Estimate Flag", "", "FalsePositivesEstimateFlag"), + "00240054": ("FL", "1", "False Positives Estimate", "", "FalsePositivesEstimate"), + "00240055": ("CS", "1", "Catch Trials Data Flag", "", "CatchTrialsDataFlag"), + "00240056": ("US", "1", "Positive Catch Trials Quantity", "", "PositiveCatchTrialsQuantity"), + "00240057": ("CS", "1", "Test Point Normals Data Flag", "", "TestPointNormalsDataFlag"), + "00240058": ("SQ", "1", "Test Point Normals Sequence", "", "TestPointNormalsSequence"), + "00240059": ("CS", "1", "Global Deviation Probability Normals Flag", "", "GlobalDeviationProbabilityNormalsFlag"), + "00240060": ("US", "1", "False Positives Quantity", "", "FalsePositivesQuantity"), + "00240061": ("CS", "1", "Excessive False Positives Data Flag", "", "ExcessiveFalsePositivesDataFlag"), + "00240062": ("CS", "1", "Excessive False Positives", "", "ExcessiveFalsePositives"), + "00240063": ("CS", "1", "Visual Field Test Normals Flag", "", "VisualFieldTestNormalsFlag"), + "00240064": ("SQ", "1", "Results Normals Sequence", "", "ResultsNormalsSequence"), + "00240065": ("SQ", "1", "Age Corrected Sensitivity Deviation Algorithm Sequence", "", "AgeCorrectedSensitivityDeviationAlgorithmSequence"), + "00240066": ("FL", "1", "Global Deviation From Normal", "", "GlobalDeviationFromNormal"), + "00240067": ("SQ", "1", "Generalized Defect Sensitivity Deviation Algorithm Sequence", "", "GeneralizedDefectSensitivityDeviationAlgorithmSequence"), + "00240068": ("FL", "1", "Localized Deviation From Normal", "", "LocalizedDeviationFromNormal"), + "00240069": ("LO", "1", "Patient Reliability Indicator", "", "PatientReliabilityIndicator"), + "00240070": ("FL", "1", "Visual Field Mean Sensitivity", "", "VisualFieldMeanSensitivity"), + "00240071": ("FL", "1", "Global Deviation Probability", "", "GlobalDeviationProbability"), + "00240072": ("CS", "1", "Local Deviation Probability Normals Flag", "", "LocalDeviationProbabilityNormalsFlag"), + "00240073": ("FL", "1", "Localized Deviation Probability", "", "LocalizedDeviationProbability"), + "00240074": ("CS", "1", "Short Term Fluctuation Calculated", "", "ShortTermFluctuationCalculated"), + "00240075": ("FL", "1", "Short Term Fluctuation", "", "ShortTermFluctuation"), + "00240076": ("CS", "1", "Short Term Fluctuation Probability Calculated", "", "ShortTermFluctuationProbabilityCalculated"), + "00240077": ("FL", "1", "Short Term Fluctuation Probability", "", "ShortTermFluctuationProbability"), + "00240078": ("CS", "1", "Corrected Localized Deviation From Normal Calculated", "", "CorrectedLocalizedDeviationFromNormalCalculated"), + "00240079": ("FL", "1", "Corrected Localized Deviation From Normal", "", "CorrectedLocalizedDeviationFromNormal"), + "00240080": ("CS", "1", "Corrected Localized Deviation From Normal Probability Calculated", "", "CorrectedLocalizedDeviationFromNormalProbabilityCalculated"), + "00240081": ("FL", "1", "Corrected Localized Deviation From Normal Probability", "", "CorrectedLocalizedDeviationFromNormalProbability"), + "00240083": ("SQ", "1", "Global Deviation Probability Sequence", "", "GlobalDeviationProbabilitySequence"), + "00240085": ("SQ", "1", "Localized Deviation Probability Sequence", "", "LocalizedDeviationProbabilitySequence"), + "00240086": ("CS", "1", "Foveal Sensitivity Measured", "", "FovealSensitivityMeasured"), + "00240087": ("FL", "1", "Foveal Sensitivity", "", "FovealSensitivity"), + "00240088": ("FL", "1", "Visual Field Test Duration", "", "VisualFieldTestDuration"), + "00240089": ("SQ", "1", "Visual Field Test Point Sequence", "", "VisualFieldTestPointSequence"), + "00240090": ("FL", "1", "Visual Field Test Point X-Coordinate", "", "VisualFieldTestPointXCoordinate"), + "00240091": ("FL", "1", "Visual Field Test Point Y-Coordinate", "", "VisualFieldTestPointYCoordinate"), + "00240092": ("FL", "1", "Age Corrected Sensitivity Deviation Value", "", "AgeCorrectedSensitivityDeviationValue"), + "00240093": ("CS", "1", "Stimulus Results", "", "StimulusResults"), + "00240094": ("FL", "1", "Sensitivity Value", "", "SensitivityValue"), + "00240095": ("CS", "1", "Retest Stimulus Seen", "", "RetestStimulusSeen"), + "00240096": ("FL", "1", "Retest Sensitivity Value", "", "RetestSensitivityValue"), + "00240097": ("SQ", "1", "Visual Field Test Point Normals Sequence", "", "VisualFieldTestPointNormalsSequence"), + "00240098": ("FL", "1", "Quantified Defect", "", "QuantifiedDefect"), + "00240100": ("FL", "1", "Age Corrected Sensitivity Deviation Probability Value", "", "AgeCorrectedSensitivityDeviationProbabilityValue"), + "00240102": ("CS", "1", "Generalized Defect Corrected Sensitivity Deviation Flag", "", "GeneralizedDefectCorrectedSensitivityDeviationFlag"), + "00240103": ("FL", "1", "Generalized Defect Corrected Sensitivity Deviation Value", "", "GeneralizedDefectCorrectedSensitivityDeviationValue"), + "00240104": ("FL", "1", "Generalized Defect Corrected Sensitivity Deviation Probability Value", "", "GeneralizedDefectCorrectedSensitivityDeviationProbabilityValue"), + "00240105": ("FL", "1", "Minimum Sensitivity Value", "", "MinimumSensitivityValue"), + "00240106": ("CS", "1", "Blind Spot Localized", "", "BlindSpotLocalized"), + "00240107": ("FL", "1", "Blind Spot X-Coordinate", "", "BlindSpotXCoordinate"), + "00240108": ("FL", "1", "Blind Spot Y-Coordinate", "", "BlindSpotYCoordinate"), + "00240110": ("SQ", "1", "Visual Acuity Measurement Sequence", "", "VisualAcuityMeasurementSequence"), + "00240112": ("SQ", "1", "Refractive Parameters Used on Patient Sequence", "", "RefractiveParametersUsedOnPatientSequence"), + "00240113": ("CS", "1", "Measurement Laterality", "", "MeasurementLaterality"), + "00240114": ("SQ", "1", "Ophthalmic Patient Clinical Information Left Eye Sequence", "", "OphthalmicPatientClinicalInformationLeftEyeSequence"), + "00240115": ("SQ", "1", "Ophthalmic Patient Clinical Information Right Eye Sequence", "", "OphthalmicPatientClinicalInformationRightEyeSequence"), + "00240117": ("CS", "1", "Foveal Point Normative Data Flag", "", "FovealPointNormativeDataFlag"), + "00240118": ("FL", "1", "Foveal Point Probability Value", "", "FovealPointProbabilityValue"), + "00240120": ("CS", "1", "Screening Baseline Measured", "", "ScreeningBaselineMeasured"), + "00240122": ("SQ", "1", "Screening Baseline Measured Sequence", "", "ScreeningBaselineMeasuredSequence"), + "00240124": ("CS", "1", "Screening Baseline Type", "", "ScreeningBaselineType"), + "00240126": ("FL", "1", "Screening Baseline Value", "", "ScreeningBaselineValue"), + "00240202": ("LO", "1", "Algorithm Source", "", "AlgorithmSource"), + "00240306": ("LO", "1", "Data Set Name", "", "DataSetName"), + "00240307": ("LO", "1", "Data Set Version", "", "DataSetVersion"), + "00240308": ("LO", "1", "Data Set Source", "", "DataSetSource"), + "00240309": ("LO", "1", "Data Set Description", "", "DataSetDescription"), + "00240317": ("SQ", "1", "Visual Field Test Reliability Global Index Sequence", "", "VisualFieldTestReliabilityGlobalIndexSequence"), + "00240320": ("SQ", "1", "Visual Field Global Results Index Sequence", "", "VisualFieldGlobalResultsIndexSequence"), + "00240325": ("SQ", "1", "Data Observation Sequence", "", "DataObservationSequence"), + "00240338": ("CS", "1", "Index Normals Flag", "", "IndexNormalsFlag"), + "00240341": ("FL", "1", "Index Probability", "", "IndexProbability"), + "00240344": ("SQ", "1", "Index Probability Sequence", "", "IndexProbabilitySequence"), + "00280002": ("US", "1", "Samples per Pixel", "", "SamplesPerPixel"), + "00280003": ("US", "1", "Samples per Pixel Used", "", "SamplesPerPixelUsed"), + "00280004": ("CS", "1", "Photometric Interpretation", "", "PhotometricInterpretation"), + "00280005": ("US", "1", "Image Dimensions", "Retired", "ImageDimensions"), + "00280006": ("US", "1", "Planar Configuration", "", "PlanarConfiguration"), + "00280008": ("IS", "1", "Number of Frames", "", "NumberOfFrames"), + "00280009": ("AT", "1-n", "Frame Increment Pointer", "", "FrameIncrementPointer"), + "0028000A": ("AT", "1-n", "Frame Dimension Pointer", "", "FrameDimensionPointer"), + "00280010": ("US", "1", "Rows", "", "Rows"), + "00280011": ("US", "1", "Columns", "", "Columns"), + "00280012": ("US", "1", "Planes", "Retired", "Planes"), + "00280014": ("US", "1", "Ultrasound Color Data Present", "", "UltrasoundColorDataPresent"), + "00280020": ("OB", "1", "Retired-blank", "Retired", ""), + "00280030": ("DS", "2", "Pixel Spacing", "", "PixelSpacing"), + "00280031": ("DS", "2", "Zoom Factor", "", "ZoomFactor"), + "00280032": ("DS", "2", "Zoom Center", "", "ZoomCenter"), + "00280034": ("IS", "2", "Pixel Aspect Ratio", "", "PixelAspectRatio"), + "00280040": ("CS", "1", "Image Format", "Retired", "ImageFormat"), + "00280050": ("LO", "1-n", "Manipulated Image", "Retired", "ManipulatedImage"), + "00280051": ("CS", "1-n", "Corrected Image", "", "CorrectedImage"), + "0028005F": ("LO", "1", "Compression Recognition Code", "Retired", "CompressionRecognitionCode"), + "00280060": ("CS", "1", "Compression Code", "Retired", "CompressionCode"), + "00280061": ("SH", "1", "Compression Originator", "Retired", "CompressionOriginator"), + "00280062": ("LO", "1", "Compression Label", "Retired", "CompressionLabel"), + "00280063": ("SH", "1", "Compression Description", "Retired", "CompressionDescription"), + "00280065": ("CS", "1-n", "Compression Sequence", "Retired", "CompressionSequence"), + "00280066": ("AT", "1-n", "Compression Step Pointers", "Retired", "CompressionStepPointers"), + "00280068": ("US", "1", "Repeat Interval", "Retired", "RepeatInterval"), + "00280069": ("US", "1", "Bits Grouped", "Retired", "BitsGrouped"), + "00280070": ("US", "1-n", "Perimeter Table", "Retired", "PerimeterTable"), + "00280071": ("US or SS", "1", "Perimeter Value", "Retired", "PerimeterValue"), + "00280080": ("US", "1", "Predictor Rows", "Retired", "PredictorRows"), + "00280081": ("US", "1", "Predictor Columns", "Retired", "PredictorColumns"), + "00280082": ("US", "1-n", "Predictor Constants", "Retired", "PredictorConstants"), + "00280090": ("CS", "1", "Blocked Pixels", "Retired", "BlockedPixels"), + "00280091": ("US", "1", "Block Rows", "Retired", "BlockRows"), + "00280092": ("US", "1", "Block Columns", "Retired", "BlockColumns"), + "00280093": ("US", "1", "Row Overlap", "Retired", "RowOverlap"), + "00280094": ("US", "1", "Column Overlap", "Retired", "ColumnOverlap"), + "00280100": ("US", "1", "Bits Allocated", "", "BitsAllocated"), + "00280101": ("US", "1", "Bits Stored", "", "BitsStored"), + "00280102": ("US", "1", "High Bit", "", "HighBit"), + "00280103": ("US", "1", "Pixel Representation", "", "PixelRepresentation"), + "00280104": ("US or SS", "1", "Smallest Valid Pixel Value", "Retired", "SmallestValidPixelValue"), + "00280105": ("US or SS", "1", "Largest Valid Pixel Value", "Retired", "LargestValidPixelValue"), + "00280106": ("US or SS", "1", "Smallest Image Pixel Value", "", "SmallestImagePixelValue"), + "00280107": ("US or SS", "1", "Largest Image Pixel Value", "", "LargestImagePixelValue"), + "00280108": ("US or SS", "1", "Smallest Pixel Value in Series", "", "SmallestPixelValueInSeries"), + "00280109": ("US or SS", "1", "Largest Pixel Value in Series", "", "LargestPixelValueInSeries"), + "00280110": ("US or SS", "1", "Smallest Image Pixel Value in Plane", "Retired", "SmallestImagePixelValueInPlane"), + "00280111": ("US or SS", "1", "Largest Image Pixel Value in Plane", "Retired", "LargestImagePixelValueInPlane"), + "00280120": ("US or SS", "1", "Pixel Padding Value", "", "PixelPaddingValue"), + "00280121": ("US or SS", "1", "Pixel Padding Range Limit", "", "PixelPaddingRangeLimit"), + "00280122": ("FL", "1", "Float Pixel Padding Value", "", "FloatPixelPaddingValue"), + "00280123": ("FD", "1", "Double Float Pixel Padding Value", "", "DoubleFloatPixelPaddingValue"), + "00280124": ("FL", "1", "Float Pixel Padding Range Limit", "", "FloatPixelPaddingRangeLimit"), + "00280125": ("FD", "1", "Double Float Pixel Padding Range Limit", "", "DoubleFloatPixelPaddingRangeLimit"), + "00280200": ("US", "1", "Image Location", "Retired", "ImageLocation"), + "00280300": ("CS", "1", "Quality Control Image", "", "QualityControlImage"), + "00280301": ("CS", "1", "Burned In Annotation", "", "BurnedInAnnotation"), + "00280302": ("CS", "1", "Recognizable Visual Features", "", "RecognizableVisualFeatures"), + "00280303": ("CS", "1", "Longitudinal Temporal Information Modified", "", "LongitudinalTemporalInformationModified"), + "00280304": ("UI", "1", "Referenced Color Palette Instance UID", "", "ReferencedColorPaletteInstanceUID"), + "00280400": ("LO", "1", "Transform Label", "Retired", "TransformLabel"), + "00280401": ("LO", "1", "Transform Version Number", "Retired", "TransformVersionNumber"), + "00280402": ("US", "1", "Number of Transform Steps", "Retired", "NumberOfTransformSteps"), + "00280403": ("LO", "1-n", "Sequence of Compressed Data", "Retired", "SequenceOfCompressedData"), + "00280404": ("AT", "1-n", "Details of Coefficients", "Retired", "DetailsOfCoefficients"), + "00280700": ("LO", "1", "DCT Label", "Retired", "DCTLabel"), + "00280701": ("CS", "1-n", "Data Block Description", "Retired", "DataBlockDescription"), + "00280702": ("AT", "1-n", "Data Block", "Retired", "DataBlock"), + "00280710": ("US", "1", "Normalization Factor Format", "Retired", "NormalizationFactorFormat"), + "00280720": ("US", "1", "Zonal Map Number Format", "Retired", "ZonalMapNumberFormat"), + "00280721": ("AT", "1-n", "Zonal Map Location", "Retired", "ZonalMapLocation"), + "00280722": ("US", "1", "Zonal Map Format", "Retired", "ZonalMapFormat"), + "00280730": ("US", "1", "Adaptive Map Format", "Retired", "AdaptiveMapFormat"), + "00280740": ("US", "1", "Code Number Format", "Retired", "CodeNumberFormat"), + "00280A02": ("CS", "1", "Pixel Spacing Calibration Type", "", "PixelSpacingCalibrationType"), + "00280A04": ("LO", "1", "Pixel Spacing Calibration Description", "", "PixelSpacingCalibrationDescription"), + "00281040": ("CS", "1", "Pixel Intensity Relationship", "", "PixelIntensityRelationship"), + "00281041": ("SS", "1", "Pixel Intensity Relationship Sign", "", "PixelIntensityRelationshipSign"), + "00281050": ("DS", "1-n", "Window Center", "", "WindowCenter"), + "00281051": ("DS", "1-n", "Window Width", "", "WindowWidth"), + "00281052": ("DS", "1", "Rescale Intercept", "", "RescaleIntercept"), + "00281053": ("DS", "1", "Rescale Slope", "", "RescaleSlope"), + "00281054": ("LO", "1", "Rescale Type", "", "RescaleType"), + "00281055": ("LO", "1-n", "Window Center & Width Explanation", "", "WindowCenterWidthExplanation"), + "00281056": ("CS", "1", "VOI LUT Function", "", "VOILUTFunction"), + "00281080": ("CS", "1", "Gray Scale", "Retired", "GrayScale"), + "00281090": ("CS", "1", "Recommended Viewing Mode", "", "RecommendedViewingMode"), + "00281100": ("US or SS", "3", "Gray Lookup Table Descriptor", "Retired", "GrayLookupTableDescriptor"), + "00281101": ("US or SS", "3", "Red Palette Color Lookup Table Descriptor", "", "RedPaletteColorLookupTableDescriptor"), + "00281102": ("US or SS", "3", "Green Palette Color Lookup Table Descriptor", "", "GreenPaletteColorLookupTableDescriptor"), + "00281103": ("US or SS", "3", "Blue Palette Color Lookup Table Descriptor", "", "BluePaletteColorLookupTableDescriptor"), + "00281104": ("US", "3", "Alpha Palette Color Lookup Table Descriptor", "", "AlphaPaletteColorLookupTableDescriptor"), + "00281111": ("US or SS", "4", "Large Red Palette Color Lookup Table Descriptor", "Retired", "LargeRedPaletteColorLookupTableDescriptor"), + "00281112": ("US or SS", "4", "Large Green Palette Color Lookup Table Descriptor", "Retired", "LargeGreenPaletteColorLookupTableDescriptor"), + "00281113": ("US or SS", "4", "Large Blue Palette Color Lookup Table Descriptor", "Retired", "LargeBluePaletteColorLookupTableDescriptor"), + "00281199": ("UI", "1", "Palette Color Lookup Table UID", "", "PaletteColorLookupTableUID"), + "00281200": ("US or SS or OW", "1-n 1", "Gray Lookup Table Data", "Retired", "GrayLookupTableData"), + "00281201": ("OW", "1", "Red Palette Color Lookup Table Data", "", "RedPaletteColorLookupTableData"), + "00281202": ("OW", "1", "Green Palette Color Lookup Table Data", "", "GreenPaletteColorLookupTableData"), + "00281203": ("OW", "1", "Blue Palette Color Lookup Table Data", "", "BluePaletteColorLookupTableData"), + "00281204": ("OW", "1", "Alpha Palette Color Lookup Table Data", "", "AlphaPaletteColorLookupTableData"), + "00281211": ("OW", "1", "Large Red Palette Color Lookup Table Data", "Retired", "LargeRedPaletteColorLookupTableData"), + "00281212": ("OW", "1", "Large Green Palette Color Lookup Table Data", "Retired", "LargeGreenPaletteColorLookupTableData"), + "00281213": ("OW", "1", "Large Blue Palette Color Lookup Table Data", "Retired", "LargeBluePaletteColorLookupTableData"), + "00281214": ("UI", "1", "Large Palette Color Lookup Table UID", "Retired", "LargePaletteColorLookupTableUID"), + "00281221": ("OW", "1", "Segmented Red Palette Color Lookup Table Data", "", "SegmentedRedPaletteColorLookupTableData"), + "00281222": ("OW", "1", "Segmented Green Palette Color Lookup Table Data", "", "SegmentedGreenPaletteColorLookupTableData"), + "00281223": ("OW", "1", "Segmented Blue Palette Color Lookup Table Data", "", "SegmentedBluePaletteColorLookupTableData"), + "00281224": ("OW", "1", "Segmented Alpha Palette Color Lookup Table Data", "", "SegmentedAlphaPaletteColorLookupTableData"), + "00281230": ("SQ", "1", "Stored Value Color Range Sequence", "", "StoredValueColorRangeSequence"), + "00281231": ("FD", "1", "Minimum Stored Value Mapped", "", "MinimumStoredValueMapped"), + "00281232": ("FD", "1", "Maximum Stored Value Mapped", "", "MaximumStoredValueMapped"), + "00281300": ("CS", "1", "Breast Implant Present", "", "BreastImplantPresent"), + "00281350": ("CS", "1", "Partial View", "", "PartialView"), + "00281351": ("ST", "1", "Partial View Description", "", "PartialViewDescription"), + "00281352": ("SQ", "1", "Partial View Code Sequence", "", "PartialViewCodeSequence"), + "0028135A": ("CS", "1", "Spatial Locations Preserved", "", "SpatialLocationsPreserved"), + "00281401": ("SQ", "1", "Data Frame Assignment Sequence", "", "DataFrameAssignmentSequence"), + "00281402": ("CS", "1", "Data Path Assignment", "", "DataPathAssignment"), + "00281403": ("US", "1", "Bits Mapped to Color Lookup Table", "", "BitsMappedToColorLookupTable"), + "00281404": ("SQ", "1", "Blending LUT 1 Sequence", "", "BlendingLUT1Sequence"), + "00281405": ("CS", "1", "Blending LUT 1 Transfer Function", "", "BlendingLUT1TransferFunction"), + "00281406": ("FD", "1", "Blending Weight Constant", "", "BlendingWeightConstant"), + "00281407": ("US", "3", "Blending Lookup Table Descriptor", "", "BlendingLookupTableDescriptor"), + "00281408": ("OW", "1", "Blending Lookup Table Data", "", "BlendingLookupTableData"), + "0028140B": ("SQ", "1", "Enhanced Palette Color Lookup Table Sequence", "", "EnhancedPaletteColorLookupTableSequence"), + "0028140C": ("SQ", "1", "Blending LUT 2 Sequence", "", "BlendingLUT2Sequence"), + "0028140D": ("CS", "1", "Blending LUT 2 Transfer Function", "", "BlendingLUT2TransferFunction"), + "0028140E": ("CS", "1", "Data Path ID", "", "DataPathID"), + "0028140F": ("CS", "1", "RGB LUT Transfer Function", "", "RGBLUTTransferFunction"), + "00281410": ("CS", "1", "Alpha LUT Transfer Function", "", "AlphaLUTTransferFunction"), + "00282000": ("OB", "1", "ICC Profile", "", "ICCProfile"), + "00282002": ("CS", "1", "Color Space", "", "ColorSpace"), + "00282110": ("CS", "1", "Lossy Image Compression", "", "LossyImageCompression"), + "00282112": ("DS", "1-n", "Lossy Image Compression Ratio", "", "LossyImageCompressionRatio"), + "00282114": ("CS", "1-n", "Lossy Image Compression Method", "", "LossyImageCompressionMethod"), + "00283000": ("SQ", "1", "Modality LUT Sequence", "", "ModalityLUTSequence"), + "00283002": ("US or SS", "3", "LUT Descriptor", "", "LUTDescriptor"), + "00283003": ("LO", "1", "LUT Explanation", "", "LUTExplanation"), + "00283004": ("LO", "1", "Modality LUT Type", "", "ModalityLUTType"), + "00283006": ("US or OW", "1-n 1", "LUT Data", "", "LUTData"), + "00283010": ("SQ", "1", "VOI LUT Sequence", "", "VOILUTSequence"), + "00283110": ("SQ", "1", "Softcopy VOI LUT Sequence", "", "SoftcopyVOILUTSequence"), + "00284000": ("LT", "1", "Image Presentation Comments", "Retired", "ImagePresentationComments"), + "00285000": ("SQ", "1", "Bi-Plane Acquisition Sequence", "Retired", "BiPlaneAcquisitionSequence"), + "00286010": ("US", "1", "Representative Frame Number", "", "RepresentativeFrameNumber"), + "00286020": ("US", "1-n", "Frame Numbers of Interest (FOI)", "", "FrameNumbersOfInterest"), + "00286022": ("LO", "1-n", "Frame of Interest Description", "", "FrameOfInterestDescription"), + "00286023": ("CS", "1-n", "Frame of Interest Type", "", "FrameOfInterestType"), + "00286030": ("US", "1-n", "Mask Pointer(s)", "Retired", "MaskPointers"), + "00286040": ("US", "1-n", "R Wave Pointer", "", "RWavePointer"), + "00286100": ("SQ", "1", "Mask Subtraction Sequence", "", "MaskSubtractionSequence"), + "00286101": ("CS", "1", "Mask Operation", "", "MaskOperation"), + "00286102": ("US", "2-2n", "Applicable Frame Range", "", "ApplicableFrameRange"), + "00286110": ("US", "1-n", "Mask Frame Numbers", "", "MaskFrameNumbers"), + "00286112": ("US", "1", "Contrast Frame Averaging", "", "ContrastFrameAveraging"), + "00286114": ("FL", "2", "Mask Sub-pixel Shift", "", "MaskSubPixelShift"), + "00286120": ("SS", "1", "TID Offset", "", "TIDOffset"), + "00286190": ("ST", "1", "Mask Operation Explanation", "", "MaskOperationExplanation"), + "00287000": ("SQ", "1", "Equipment Administrator Sequence", "", "EquipmentAdministratorSequence"), + "00287001": ("US", "1", "Number of Display Subsystems", "", "NumberOfDisplaySubsystems"), + "00287002": ("US", "1", "Current Configuration ID", "", "CurrentConfigurationID"), + "00287003": ("US", "1", "Display Subsystem ID", "", "DisplaySubsystemID"), + "00287004": ("SH", "1", "Display Subsystem Name", "", "DisplaySubsystemName"), + "00287005": ("LO", "1", "Display Subsystem Description", "", "DisplaySubsystemDescription"), + "00287006": ("CS", "1", "System Status", "", "SystemStatus"), + "00287007": ("LO", "1", "System Status Comment", "", "SystemStatusComment"), + "00287008": ("SQ", "1", "Target Luminance Characteristics Sequence", "", "TargetLuminanceCharacteristicsSequence"), + "00287009": ("US", "1", "Luminance Characteristics ID", "", "LuminanceCharacteristicsID"), + "0028700A": ("SQ", "1", "Display Subsystem Configuration Sequence", "", "DisplaySubsystemConfigurationSequence"), + "0028700B": ("US", "1", "Configuration ID", "", "ConfigurationID"), + "0028700C": ("SH", "1", "Configuration Name", "", "ConfigurationName"), + "0028700D": ("LO", "1", "Configuration Description", "", "ConfigurationDescription"), + "0028700E": ("US", "1", "Referenced Target Luminance Characteristics ID", "", "ReferencedTargetLuminanceCharacteristicsID"), + "0028700F": ("SQ", "1", "QA Results Sequence", "", "QAResultsSequence"), + "00287010": ("SQ", "1", "Display Subsystem QA Results Sequence", "", "DisplaySubsystemQAResultsSequence"), + "00287011": ("SQ", "1", "Configuration QA Results Sequence", "", "ConfigurationQAResultsSequence"), + "00287012": ("SQ", "1", "Measurement Equipment Sequence", "", "MeasurementEquipmentSequence"), + "00287013": ("CS", "1-n", "Measurement Functions", "", "MeasurementFunctions"), + "00287014": ("CS", "1", "Measurement Equipment Type", "", "MeasurementEquipmentType"), + "00287015": ("SQ", "1", "Visual Evaluation Result Sequence", "", "VisualEvaluationResultSequence"), + "00287016": ("SQ", "1", "Display Calibration Result Sequence", "", "DisplayCalibrationResultSequence"), + "00287017": ("US", "1", "DDL Value", "", "DDLValue"), + "00287018": ("FL", "2", "CIExy White Point", "", "CIExyWhitePoint"), + "00287019": ("CS", "1", "Display Function Type", "", "DisplayFunctionType"), + "0028701A": ("FL", "1", "Gamma Value", "", "GammaValue"), + "0028701B": ("US", "1", "Number of Luminance Points", "", "NumberOfLuminancePoints"), + "0028701C": ("SQ", "1", "Luminance Response Sequence", "", "LuminanceResponseSequence"), + "0028701D": ("FL", "1", "Target Minimum Luminance", "", "TargetMinimumLuminance"), + "0028701E": ("FL", "1", "Target Maximum Luminance", "", "TargetMaximumLuminance"), + "0028701F": ("FL", "1", "Luminance Value", "", "LuminanceValue"), + "00287020": ("LO", "1", "Luminance Response Description", "", "LuminanceResponseDescription"), + "00287021": ("CS", "1", "White Point Flag", "", "WhitePointFlag"), + "00287022": ("SQ", "1", "Display Device Type Code Sequence", "", "DisplayDeviceTypeCodeSequence"), + "00287023": ("SQ", "1", "Display Subsystem Sequence", "", "DisplaySubsystemSequence"), + "00287024": ("SQ", "1", "Luminance Result Sequence", "", "LuminanceResultSequence"), + "00287025": ("CS", "1", "Ambient Light Value Source", "", "AmbientLightValueSource"), + "00287026": ("CS", "1-n", "Measured Characteristics", "", "MeasuredCharacteristics"), + "00287027": ("SQ", "1", "Luminance Uniformity Result Sequence", "", "LuminanceUniformityResultSequence"), + "00287028": ("SQ", "1", "Visual Evaluation Test Sequence", "", "VisualEvaluationTestSequence"), + "00287029": ("CS", "1", "Test Result", "", "TestResult"), + "0028702A": ("LO", "1", "Test Result Comment", "", "TestResultComment"), + "0028702B": ("CS", "1", "Test Image Validation", "", "TestImageValidation"), + "0028702C": ("SQ", "1", "Test Pattern Code Sequence", "", "TestPatternCodeSequence"), + "0028702D": ("SQ", "1", "Measurement Pattern Code Sequence", "", "MeasurementPatternCodeSequence"), + "0028702E": ("SQ", "1", "Visual Evaluation Method Code Sequence", "", "VisualEvaluationMethodCodeSequence"), + "00287FE0": ("UR", "1", "Pixel Data Provider URL", "", "PixelDataProviderURL"), + "00289001": ("UL", "1", "Data Point Rows", "", "DataPointRows"), + "00289002": ("UL", "1", "Data Point Columns", "", "DataPointColumns"), + "00289003": ("CS", "1", "Signal Domain Columns", "", "SignalDomainColumns"), + "00289099": ("US", "1", "Largest Monochrome Pixel Value", "Retired", "LargestMonochromePixelValue"), + "00289108": ("CS", "1", "Data Representation", "", "DataRepresentation"), + "00289110": ("SQ", "1", "Pixel Measures Sequence", "", "PixelMeasuresSequence"), + "00289132": ("SQ", "1", "Frame VOI LUT Sequence", "", "FrameVOILUTSequence"), + "00289145": ("SQ", "1", "Pixel Value Transformation Sequence", "", "PixelValueTransformationSequence"), + "00289235": ("CS", "1", "Signal Domain Rows", "", "SignalDomainRows"), + "00289411": ("FL", "1", "Display Filter Percentage", "", "DisplayFilterPercentage"), + "00289415": ("SQ", "1", "Frame Pixel Shift Sequence", "", "FramePixelShiftSequence"), + "00289416": ("US", "1", "Subtraction Item ID", "", "SubtractionItemID"), + "00289422": ("SQ", "1", "Pixel Intensity Relationship LUT Sequence", "", "PixelIntensityRelationshipLUTSequence"), + "00289443": ("SQ", "1", "Frame Pixel Data Properties Sequence", "", "FramePixelDataPropertiesSequence"), + "00289444": ("CS", "1", "Geometrical Properties", "", "GeometricalProperties"), + "00289445": ("FL", "1", "Geometric Maximum Distortion", "", "GeometricMaximumDistortion"), + "00289446": ("CS", "1-n", "Image Processing Applied", "", "ImageProcessingApplied"), + "00289454": ("CS", "1", "Mask Selection Mode", "", "MaskSelectionMode"), + "00289474": ("CS", "1", "LUT Function", "", "LUTFunction"), + "00289478": ("FL", "1", "Mask Visibility Percentage", "", "MaskVisibilityPercentage"), + "00289501": ("SQ", "1", "Pixel Shift Sequence", "", "PixelShiftSequence"), + "00289502": ("SQ", "1", "Region Pixel Shift Sequence", "", "RegionPixelShiftSequence"), + "00289503": ("SS", "2-2n", "Vertices of the Region", "", "VerticesOfTheRegion"), + "00289505": ("SQ", "1", "Multi-frame Presentation Sequence", "", "MultiFramePresentationSequence"), + "00289506": ("US", "2-2n", "Pixel Shift Frame Range", "", "PixelShiftFrameRange"), + "00289507": ("US", "2-2n", "LUT Frame Range", "", "LUTFrameRange"), + "00289520": ("DS", "16", "Image to Equipment Mapping Matrix", "", "ImageToEquipmentMappingMatrix"), + "00289537": ("CS", "1", "Equipment Coordinate System Identification", "", "EquipmentCoordinateSystemIdentification"), + "0032000A": ("CS", "1", "Study Status ID", "Retired", "StudyStatusID"), + "0032000C": ("CS", "1", "Study Priority ID", "Retired", "StudyPriorityID"), + "00320012": ("LO", "1", "Study ID Issuer", "Retired", "StudyIDIssuer"), + "00320032": ("DA", "1", "Study Verified Date", "Retired", "StudyVerifiedDate"), + "00320033": ("TM", "1", "Study Verified Time", "Retired", "StudyVerifiedTime"), + "00320034": ("DA", "1", "Study Read Date", "Retired", "StudyReadDate"), + "00320035": ("TM", "1", "Study Read Time", "Retired", "StudyReadTime"), + "00321000": ("DA", "1", "Scheduled Study Start Date", "Retired", "ScheduledStudyStartDate"), + "00321001": ("TM", "1", "Scheduled Study Start Time", "Retired", "ScheduledStudyStartTime"), + "00321010": ("DA", "1", "Scheduled Study Stop Date", "Retired", "ScheduledStudyStopDate"), + "00321011": ("TM", "1", "Scheduled Study Stop Time", "Retired", "ScheduledStudyStopTime"), + "00321020": ("LO", "1", "Scheduled Study Location", "Retired", "ScheduledStudyLocation"), + "00321021": ("AE", "1-n", "Scheduled Study Location AE Title", "Retired", "ScheduledStudyLocationAETitle"), + "00321030": ("LO", "1", "Reason for Study", "Retired", "ReasonForStudy"), + "00321031": ("SQ", "1", "Requesting Physician Identification Sequence", "", "RequestingPhysicianIdentificationSequence"), + "00321032": ("PN", "1", "Requesting Physician", "", "RequestingPhysician"), + "00321033": ("LO", "1", "Requesting Service", "", "RequestingService"), + "00321034": ("SQ", "1", "Requesting Service Code Sequence", "", "RequestingServiceCodeSequence"), + "00321040": ("DA", "1", "Study Arrival Date", "Retired", "StudyArrivalDate"), + "00321041": ("TM", "1", "Study Arrival Time", "Retired", "StudyArrivalTime"), + "00321050": ("DA", "1", "Study Completion Date", "Retired", "StudyCompletionDate"), + "00321051": ("TM", "1", "Study Completion Time", "Retired", "StudyCompletionTime"), + "00321055": ("CS", "1", "Study Component Status ID", "Retired", "StudyComponentStatusID"), + "00321060": ("LO", "1", "Requested Procedure Description", "", "RequestedProcedureDescription"), + "00321064": ("SQ", "1", "Requested Procedure Code Sequence", "", "RequestedProcedureCodeSequence"), + "00321070": ("LO", "1", "Requested Contrast Agent", "", "RequestedContrastAgent"), + "00324000": ("LT", "1", "Study Comments", "Retired", "StudyComments"), + "00380004": ("SQ", "1", "Referenced Patient Alias Sequence", "", "ReferencedPatientAliasSequence"), + "00380008": ("CS", "1", "Visit Status ID", "", "VisitStatusID"), + "00380010": ("LO", "1", "Admission ID", "", "AdmissionID"), + "00380011": ("LO", "1", "Issuer of Admission ID", "Retired", "IssuerOfAdmissionID"), + "00380014": ("SQ", "1", "Issuer of Admission ID Sequence", "", "IssuerOfAdmissionIDSequence"), + "00380016": ("LO", "1", "Route of Admissions", "", "RouteOfAdmissions"), + "0038001A": ("DA", "1", "Scheduled Admission Date", "Retired", "ScheduledAdmissionDate"), + "0038001B": ("TM", "1", "Scheduled Admission Time", "Retired", "ScheduledAdmissionTime"), + "0038001C": ("DA", "1", "Scheduled Discharge Date", "Retired", "ScheduledDischargeDate"), + "0038001D": ("TM", "1", "Scheduled Discharge Time", "Retired", "ScheduledDischargeTime"), + "0038001E": ("LO", "1", "Scheduled Patient Institution Residence", "Retired", "ScheduledPatientInstitutionResidence"), + "00380020": ("DA", "1", "Admitting Date", "", "AdmittingDate"), + "00380021": ("TM", "1", "Admitting Time", "", "AdmittingTime"), + "00380030": ("DA", "1", "Discharge Date", "Retired", "DischargeDate"), + "00380032": ("TM", "1", "Discharge Time", "Retired", "DischargeTime"), + "00380040": ("LO", "1", "Discharge Diagnosis Description", "Retired", "DischargeDiagnosisDescription"), + "00380044": ("SQ", "1", "Discharge Diagnosis Code Sequence", "Retired", "DischargeDiagnosisCodeSequence"), + "00380050": ("LO", "1", "Special Needs", "", "SpecialNeeds"), + "00380060": ("LO", "1", "Service Episode ID", "", "ServiceEpisodeID"), + "00380061": ("LO", "1", "Issuer of Service Episode ID", "Retired", "IssuerOfServiceEpisodeID"), + "00380062": ("LO", "1", "Service Episode Description", "", "ServiceEpisodeDescription"), + "00380064": ("SQ", "1", "Issuer of Service Episode ID Sequence", "", "IssuerOfServiceEpisodeIDSequence"), + "00380100": ("SQ", "1", "Pertinent Documents Sequence", "", "PertinentDocumentsSequence"), + "00380101": ("SQ", "1", "Pertinent Resources Sequence", "", "PertinentResourcesSequence"), + "00380102": ("LO", "1", "Resource Description", "", "ResourceDescription"), + "00380300": ("LO", "1", "Current Patient Location", "", "CurrentPatientLocation"), + "00380400": ("LO", "1", "Patient's Institution Residence", "", "PatientInstitutionResidence"), + "00380500": ("LO", "1", "Patient State", "", "PatientState"), + "00380502": ("SQ", "1", "Patient Clinical Trial Participation Sequence", "", "PatientClinicalTrialParticipationSequence"), + "00384000": ("LT", "1", "Visit Comments", "", "VisitComments"), + "003A0004": ("CS", "1", "Waveform Originality", "", "WaveformOriginality"), + "003A0005": ("US", "1", "Number of Waveform Channels", "", "NumberOfWaveformChannels"), + "003A0010": ("UL", "1", "Number of Waveform Samples", "", "NumberOfWaveformSamples"), + "003A001A": ("DS", "1", "Sampling Frequency", "", "SamplingFrequency"), + "003A0020": ("SH", "1", "Multiplex Group Label", "", "MultiplexGroupLabel"), + "003A0200": ("SQ", "1", "Channel Definition Sequence", "", "ChannelDefinitionSequence"), + "003A0202": ("IS", "1", "Waveform Channel Number", "", "WaveformChannelNumber"), + "003A0203": ("SH", "1", "Channel Label", "", "ChannelLabel"), + "003A0205": ("CS", "1-n", "Channel Status", "", "ChannelStatus"), + "003A0208": ("SQ", "1", "Channel Source Sequence", "", "ChannelSourceSequence"), + "003A0209": ("SQ", "1", "Channel Source Modifiers Sequence", "", "ChannelSourceModifiersSequence"), + "003A020A": ("SQ", "1", "Source Waveform Sequence", "", "SourceWaveformSequence"), + "003A020C": ("LO", "1", "Channel Derivation Description", "", "ChannelDerivationDescription"), + "003A0210": ("DS", "1", "Channel Sensitivity", "", "ChannelSensitivity"), + "003A0211": ("SQ", "1", "Channel Sensitivity Units Sequence", "", "ChannelSensitivityUnitsSequence"), + "003A0212": ("DS", "1", "Channel Sensitivity Correction Factor", "", "ChannelSensitivityCorrectionFactor"), + "003A0213": ("DS", "1", "Channel Baseline", "", "ChannelBaseline"), + "003A0214": ("DS", "1", "Channel Time Skew", "", "ChannelTimeSkew"), + "003A0215": ("DS", "1", "Channel Sample Skew", "", "ChannelSampleSkew"), + "003A0218": ("DS", "1", "Channel Offset", "", "ChannelOffset"), + "003A021A": ("US", "1", "Waveform Bits Stored", "", "WaveformBitsStored"), + "003A0220": ("DS", "1", "Filter Low Frequency", "", "FilterLowFrequency"), + "003A0221": ("DS", "1", "Filter High Frequency", "", "FilterHighFrequency"), + "003A0222": ("DS", "1", "Notch Filter Frequency", "", "NotchFilterFrequency"), + "003A0223": ("DS", "1", "Notch Filter Bandwidth", "", "NotchFilterBandwidth"), + "003A0230": ("FL", "1", "Waveform Data Display Scale", "", "WaveformDataDisplayScale"), + "003A0231": ("US", "3", "Waveform Display Background CIELab Value", "", "WaveformDisplayBackgroundCIELabValue"), + "003A0240": ("SQ", "1", "Waveform Presentation Group Sequence", "", "WaveformPresentationGroupSequence"), + "003A0241": ("US", "1", "Presentation Group Number", "", "PresentationGroupNumber"), + "003A0242": ("SQ", "1", "Channel Display Sequence", "", "ChannelDisplaySequence"), + "003A0244": ("US", "3", "Channel Recommended Display CIELab Value", "", "ChannelRecommendedDisplayCIELabValue"), + "003A0245": ("FL", "1", "Channel Position", "", "ChannelPosition"), + "003A0246": ("CS", "1", "Display Shading Flag", "", "DisplayShadingFlag"), + "003A0247": ("FL", "1", "Fractional Channel Display Scale", "", "FractionalChannelDisplayScale"), + "003A0248": ("FL", "1", "Absolute Channel Display Scale", "", "AbsoluteChannelDisplayScale"), + "003A0300": ("SQ", "1", "Multiplexed Audio Channels Description Code Sequence", "", "MultiplexedAudioChannelsDescriptionCodeSequence"), + "003A0301": ("IS", "1", "Channel Identification Code", "", "ChannelIdentificationCode"), + "003A0302": ("CS", "1", "Channel Mode", "", "ChannelMode"), + "00400001": ("AE", "1-n", "Scheduled Station AE Title", "", "ScheduledStationAETitle"), + "00400002": ("DA", "1", "Scheduled Procedure Step Start Date", "", "ScheduledProcedureStepStartDate"), + "00400003": ("TM", "1", "Scheduled Procedure Step Start Time", "", "ScheduledProcedureStepStartTime"), + "00400004": ("DA", "1", "Scheduled Procedure Step End Date", "", "ScheduledProcedureStepEndDate"), + "00400005": ("TM", "1", "Scheduled Procedure Step End Time", "", "ScheduledProcedureStepEndTime"), + "00400006": ("PN", "1", "Scheduled Performing Physician's Name", "", "ScheduledPerformingPhysicianName"), + "00400007": ("LO", "1", "Scheduled Procedure Step Description", "", "ScheduledProcedureStepDescription"), + "00400008": ("SQ", "1", "Scheduled Protocol Code Sequence", "", "ScheduledProtocolCodeSequence"), + "00400009": ("SH", "1", "Scheduled Procedure Step ID", "", "ScheduledProcedureStepID"), + "0040000A": ("SQ", "1", "Stage Code Sequence", "", "StageCodeSequence"), + "0040000B": ("SQ", "1", "Scheduled Performing Physician Identification Sequence", "", "ScheduledPerformingPhysicianIdentificationSequence"), + "00400010": ("SH", "1-n", "Scheduled Station Name", "", "ScheduledStationName"), + "00400011": ("SH", "1", "Scheduled Procedure Step Location", "", "ScheduledProcedureStepLocation"), + "00400012": ("LO", "1", "Pre-Medication", "", "PreMedication"), + "00400020": ("CS", "1", "Scheduled Procedure Step Status", "", "ScheduledProcedureStepStatus"), + "00400026": ("SQ", "1", "Order Placer Identifier Sequence", "", "OrderPlacerIdentifierSequence"), + "00400027": ("SQ", "1", "Order Filler Identifier Sequence", "", "OrderFillerIdentifierSequence"), + "00400031": ("UT", "1", "Local Namespace Entity ID", "", "LocalNamespaceEntityID"), + "00400032": ("UT", "1", "Universal Entity ID", "", "UniversalEntityID"), + "00400033": ("CS", "1", "Universal Entity ID Type", "", "UniversalEntityIDType"), + "00400035": ("CS", "1", "Identifier Type Code", "", "IdentifierTypeCode"), + "00400036": ("SQ", "1", "Assigning Facility Sequence", "", "AssigningFacilitySequence"), + "00400039": ("SQ", "1", "Assigning Jurisdiction Code Sequence", "", "AssigningJurisdictionCodeSequence"), + "0040003A": ("SQ", "1", "Assigning Agency or Department Code Sequence", "", "AssigningAgencyOrDepartmentCodeSequence"), + "00400100": ("SQ", "1", "Scheduled Procedure Step Sequence", "", "ScheduledProcedureStepSequence"), + "00400220": ("SQ", "1", "Referenced Non-Image Composite SOP Instance Sequence", "", "ReferencedNonImageCompositeSOPInstanceSequence"), + "00400241": ("AE", "1", "Performed Station AE Title", "", "PerformedStationAETitle"), + "00400242": ("SH", "1", "Performed Station Name", "", "PerformedStationName"), + "00400243": ("SH", "1", "Performed Location", "", "PerformedLocation"), + "00400244": ("DA", "1", "Performed Procedure Step Start Date", "", "PerformedProcedureStepStartDate"), + "00400245": ("TM", "1", "Performed Procedure Step Start Time", "", "PerformedProcedureStepStartTime"), + "00400250": ("DA", "1", "Performed Procedure Step End Date", "", "PerformedProcedureStepEndDate"), + "00400251": ("TM", "1", "Performed Procedure Step End Time", "", "PerformedProcedureStepEndTime"), + "00400252": ("CS", "1", "Performed Procedure Step Status", "", "PerformedProcedureStepStatus"), + "00400253": ("SH", "1", "Performed Procedure Step ID", "", "PerformedProcedureStepID"), + "00400254": ("LO", "1", "Performed Procedure Step Description", "", "PerformedProcedureStepDescription"), + "00400255": ("LO", "1", "Performed Procedure Type Description", "", "PerformedProcedureTypeDescription"), + "00400260": ("SQ", "1", "Performed Protocol Code Sequence", "", "PerformedProtocolCodeSequence"), + "00400261": ("CS", "1", "Performed Protocol Type", "", "PerformedProtocolType"), + "00400270": ("SQ", "1", "Scheduled Step Attributes Sequence", "", "ScheduledStepAttributesSequence"), + "00400275": ("SQ", "1", "Request Attributes Sequence", "", "RequestAttributesSequence"), + "00400280": ("ST", "1", "Comments on the Performed Procedure Step", "", "CommentsOnThePerformedProcedureStep"), + "00400281": ("SQ", "1", "Performed Procedure Step Discontinuation Reason Code Sequence", "", "PerformedProcedureStepDiscontinuationReasonCodeSequence"), + "00400293": ("SQ", "1", "Quantity Sequence", "", "QuantitySequence"), + "00400294": ("DS", "1", "Quantity", "", "Quantity"), + "00400295": ("SQ", "1", "Measuring Units Sequence", "", "MeasuringUnitsSequence"), + "00400296": ("SQ", "1", "Billing Item Sequence", "", "BillingItemSequence"), + "00400300": ("US", "1", "Total Time of Fluoroscopy", "Retired", "TotalTimeOfFluoroscopy"), + "00400301": ("US", "1", "Total Number of Exposures", "Retired", "TotalNumberOfExposures"), + "00400302": ("US", "1", "Entrance Dose", "", "EntranceDose"), + "00400303": ("US", "1-2", "Exposed Area", "", "ExposedArea"), + "00400306": ("DS", "1", "Distance Source to Entrance", "", "DistanceSourceToEntrance"), + "00400307": ("DS", "1", "Distance Source to Support", "Retired", "DistanceSourceToSupport"), + "0040030E": ("SQ", "1", "Exposure Dose Sequence", "Retired", "ExposureDoseSequence"), + "00400310": ("ST", "1", "Comments on Radiation Dose", "", "CommentsOnRadiationDose"), + "00400312": ("DS", "1", "X-Ray Output", "", "XRayOutput"), + "00400314": ("DS", "1", "Half Value Layer", "", "HalfValueLayer"), + "00400316": ("DS", "1", "Organ Dose", "", "OrganDose"), + "00400318": ("CS", "1", "Organ Exposed", "", "OrganExposed"), + "00400320": ("SQ", "1", "Billing Procedure Step Sequence", "", "BillingProcedureStepSequence"), + "00400321": ("SQ", "1", "Film Consumption Sequence", "", "FilmConsumptionSequence"), + "00400324": ("SQ", "1", "Billing Supplies and Devices Sequence", "", "BillingSuppliesAndDevicesSequence"), + "00400330": ("SQ", "1", "Referenced Procedure Step Sequence", "Retired", "ReferencedProcedureStepSequence"), + "00400340": ("SQ", "1", "Performed Series Sequence", "", "PerformedSeriesSequence"), + "00400400": ("LT", "1", "Comments on the Scheduled Procedure Step", "", "CommentsOnTheScheduledProcedureStep"), + "00400440": ("SQ", "1", "Protocol Context Sequence", "", "ProtocolContextSequence"), + "00400441": ("SQ", "1", "Content Item Modifier Sequence", "", "ContentItemModifierSequence"), + "00400500": ("SQ", "1", "Scheduled Specimen Sequence", "", "ScheduledSpecimenSequence"), + "0040050A": ("LO", "1", "Specimen Accession Number", "Retired", "SpecimenAccessionNumber"), + "00400512": ("LO", "1", "Container Identifier", "", "ContainerIdentifier"), + "00400513": ("SQ", "1", "Issuer of the Container Identifier Sequence", "", "IssuerOfTheContainerIdentifierSequence"), + "00400515": ("SQ", "1", "Alternate Container Identifier Sequence", "", "AlternateContainerIdentifierSequence"), + "00400518": ("SQ", "1", "Container Type Code Sequence", "", "ContainerTypeCodeSequence"), + "0040051A": ("LO", "1", "Container Description", "", "ContainerDescription"), + "00400520": ("SQ", "1", "Container Component Sequence", "", "ContainerComponentSequence"), + "00400550": ("SQ", "1", "Specimen Sequence", "Retired", "SpecimenSequence"), + "00400551": ("LO", "1", "Specimen Identifier", "", "SpecimenIdentifier"), + "00400552": ("SQ", "1", "Specimen Description Sequence (Trial)", "Retired", "SpecimenDescriptionSequenceTrial"), + "00400553": ("ST", "1", "Specimen Description (Trial)", "Retired", "SpecimenDescriptionTrial"), + "00400554": ("UI", "1", "Specimen UID", "", "SpecimenUID"), + "00400555": ("SQ", "1", "Acquisition Context Sequence", "", "AcquisitionContextSequence"), + "00400556": ("ST", "1", "Acquisition Context Description", "", "AcquisitionContextDescription"), + "00400560": ("SQ", "1", "Specimen Description Sequence", "", "SpecimenDescriptionSequence"), + "00400562": ("SQ", "1", "Issuer of the Specimen Identifier Sequence", "", "IssuerOfTheSpecimenIdentifierSequence"), + "0040059A": ("SQ", "1", "Specimen Type Code Sequence", "", "SpecimenTypeCodeSequence"), + "00400600": ("LO", "1", "Specimen Short Description", "", "SpecimenShortDescription"), + "00400602": ("UT", "1", "Specimen Detailed Description", "", "SpecimenDetailedDescription"), + "00400610": ("SQ", "1", "Specimen Preparation Sequence", "", "SpecimenPreparationSequence"), + "00400612": ("SQ", "1", "Specimen Preparation Step Content Item Sequence", "", "SpecimenPreparationStepContentItemSequence"), + "00400620": ("SQ", "1", "Specimen Localization Content Item Sequence", "", "SpecimenLocalizationContentItemSequence"), + "004006FA": ("LO", "1", "Slide Identifier", "Retired", "SlideIdentifier"), + "00400710": ("SQ", "1", "Whole Slide Microscopy Image Frame Type Sequence", "", "WholeSlideMicroscopyImageFrameTypeSequence"), + "0040071A": ("SQ", "1", "Image Center Point Coordinates Sequence", "", "ImageCenterPointCoordinatesSequence"), + "0040072A": ("DS", "1", "X Offset in Slide Coordinate System", "", "XOffsetInSlideCoordinateSystem"), + "0040073A": ("DS", "1", "Y Offset in Slide Coordinate System", "", "YOffsetInSlideCoordinateSystem"), + "0040074A": ("DS", "1", "Z Offset in Slide Coordinate System", "", "ZOffsetInSlideCoordinateSystem"), + "004008D8": ("SQ", "1", "Pixel Spacing Sequence", "Retired", "PixelSpacingSequence"), + "004008DA": ("SQ", "1", "Coordinate System Axis Code Sequence", "Retired", "CoordinateSystemAxisCodeSequence"), + "004008EA": ("SQ", "1", "Measurement Units Code Sequence", "", "MeasurementUnitsCodeSequence"), + "004009F8": ("SQ", "1", "Vital Stain Code Sequence (Trial)", "Retired", "VitalStainCodeSequenceTrial"), + "00401001": ("SH", "1", "Requested Procedure ID", "", "RequestedProcedureID"), + "00401002": ("LO", "1", "Reason for the Requested Procedure", "", "ReasonForTheRequestedProcedure"), + "00401003": ("SH", "1", "Requested Procedure Priority", "", "RequestedProcedurePriority"), + "00401004": ("LO", "1", "Patient Transport Arrangements", "", "PatientTransportArrangements"), + "00401005": ("LO", "1", "Requested Procedure Location", "", "RequestedProcedureLocation"), + "00401006": ("SH", "1", "Placer Order Number / Procedure", "Retired", "PlacerOrderNumberProcedure"), + "00401007": ("SH", "1", "Filler Order Number / Procedure", "Retired", "FillerOrderNumberProcedure"), + "00401008": ("LO", "1", "Confidentiality Code", "", "ConfidentialityCode"), + "00401009": ("SH", "1", "Reporting Priority", "", "ReportingPriority"), + "0040100A": ("SQ", "1", "Reason for Requested Procedure Code Sequence", "", "ReasonForRequestedProcedureCodeSequence"), + "00401010": ("PN", "1-n", "Names of Intended Recipients of Results", "", "NamesOfIntendedRecipientsOfResults"), + "00401011": ("SQ", "1", "Intended Recipients of Results Identification Sequence", "", "IntendedRecipientsOfResultsIdentificationSequence"), + "00401012": ("SQ", "1", "Reason For Performed Procedure Code Sequence", "", "ReasonForPerformedProcedureCodeSequence"), + "00401060": ("LO", "1", "Requested Procedure Description (Trial)", "Retired", "RequestedProcedureDescriptionTrial"), + "00401101": ("SQ", "1", "Person Identification Code Sequence", "", "PersonIdentificationCodeSequence"), + "00401102": ("ST", "1", "Person's Address", "", "PersonAddress"), + "00401103": ("LO", "1-n", "Person's Telephone Numbers", "", "PersonTelephoneNumbers"), + "00401104": ("LT", "1", "Person's Telecom Information", "", "PersonTelecomInformation"), + "00401400": ("LT", "1", "Requested Procedure Comments", "", "RequestedProcedureComments"), + "00402001": ("LO", "1", "Reason for the Imaging Service Request", "Retired", "ReasonForTheImagingServiceRequest"), + "00402004": ("DA", "1", "Issue Date of Imaging Service Request", "", "IssueDateOfImagingServiceRequest"), + "00402005": ("TM", "1", "Issue Time of Imaging Service Request", "", "IssueTimeOfImagingServiceRequest"), + "00402006": ("SH", "1", "Placer Order Number / Imaging Service Request (Retired)", "Retired", "PlacerOrderNumberImagingServiceRequestRetired"), + "00402007": ("SH", "1", "Filler Order Number / Imaging Service Request (Retired)", "Retired", "FillerOrderNumberImagingServiceRequestRetired"), + "00402008": ("PN", "1", "Order Entered By", "", "OrderEnteredBy"), + "00402009": ("SH", "1", "Order Enterer's Location", "", "OrderEntererLocation"), + "00402010": ("SH", "1", "Order Callback Phone Number", "", "OrderCallbackPhoneNumber"), + "00402011": ("LT", "1", "Order Callback Telecom Information", "", "OrderCallbackTelecomInformation"), + "00402016": ("LO", "1", "Placer Order Number / Imaging Service Request", "", "PlacerOrderNumberImagingServiceRequest"), + "00402017": ("LO", "1", "Filler Order Number / Imaging Service Request", "", "FillerOrderNumberImagingServiceRequest"), + "00402400": ("LT", "1", "Imaging Service Request Comments", "", "ImagingServiceRequestComments"), + "00403001": ("LO", "1", "Confidentiality Constraint on Patient Data Description", "", "ConfidentialityConstraintOnPatientDataDescription"), + "00404001": ("CS", "1", "General Purpose Scheduled Procedure Step Status", "Retired", "GeneralPurposeScheduledProcedureStepStatus"), + "00404002": ("CS", "1", "General Purpose Performed Procedure Step Status", "Retired", "GeneralPurposePerformedProcedureStepStatus"), + "00404003": ("CS", "1", "General Purpose Scheduled Procedure Step Priority", "Retired", "GeneralPurposeScheduledProcedureStepPriority"), + "00404004": ("SQ", "1", "Scheduled Processing Applications Code Sequence", "Retired", "ScheduledProcessingApplicationsCodeSequence"), + "00404005": ("DT", "1", "Scheduled Procedure Step Start DateTime", "", "ScheduledProcedureStepStartDateTime"), + "00404006": ("CS", "1", "Multiple Copies Flag", "Retired", "MultipleCopiesFlag"), + "00404007": ("SQ", "1", "Performed Processing Applications Code Sequence", "Retired", "PerformedProcessingApplicationsCodeSequence"), + "00404008": ("DT", "1", "Scheduled Procedure Step Expiration DateTime", "", "ScheduledProcedureStepExpirationDateTime"), + "00404009": ("SQ", "1", "Human Performer Code Sequence", "", "HumanPerformerCodeSequence"), + "00404010": ("DT", "1", "Scheduled Procedure Step Modification DateTime", "", "ScheduledProcedureStepModificationDateTime"), + "00404011": ("DT", "1", "Expected Completion DateTime", "", "ExpectedCompletionDateTime"), + "00404015": ("SQ", "1", "Resulting General Purpose Performed Procedure Steps Sequence", "Retired", "ResultingGeneralPurposePerformedProcedureStepsSequence"), + "00404016": ("SQ", "1", "Referenced General Purpose Scheduled Procedure Step Sequence", "Retired", "ReferencedGeneralPurposeScheduledProcedureStepSequence"), + "00404018": ("SQ", "1", "Scheduled Workitem Code Sequence", "", "ScheduledWorkitemCodeSequence"), + "00404019": ("SQ", "1", "Performed Workitem Code Sequence", "", "PerformedWorkitemCodeSequence"), + "00404020": ("CS", "1", "Input Availability Flag", "Retired", "InputAvailabilityFlag"), + "00404021": ("SQ", "1", "Input Information Sequence", "", "InputInformationSequence"), + "00404022": ("SQ", "1", "Relevant Information Sequence", "Retired", "RelevantInformationSequence"), + "00404023": ("UI", "1", "Referenced General Purpose Scheduled Procedure Step Transaction UID", "Retired", "ReferencedGeneralPurposeScheduledProcedureStepTransactionUID"), + "00404025": ("SQ", "1", "Scheduled Station Name Code Sequence", "", "ScheduledStationNameCodeSequence"), + "00404026": ("SQ", "1", "Scheduled Station Class Code Sequence", "", "ScheduledStationClassCodeSequence"), + "00404027": ("SQ", "1", "Scheduled Station Geographic Location Code Sequence", "", "ScheduledStationGeographicLocationCodeSequence"), + "00404028": ("SQ", "1", "Performed Station Name Code Sequence", "", "PerformedStationNameCodeSequence"), + "00404029": ("SQ", "1", "Performed Station Class Code Sequence", "", "PerformedStationClassCodeSequence"), + "00404030": ("SQ", "1", "Performed Station Geographic Location Code Sequence", "", "PerformedStationGeographicLocationCodeSequence"), + "00404031": ("SQ", "1", "Requested Subsequent Workitem Code Sequence", "Retired", "RequestedSubsequentWorkitemCodeSequence"), + "00404032": ("SQ", "1", "Non-DICOM Output Code Sequence", "Retired", "NonDICOMOutputCodeSequence"), + "00404033": ("SQ", "1", "Output Information Sequence", "", "OutputInformationSequence"), + "00404034": ("SQ", "1", "Scheduled Human Performers Sequence", "", "ScheduledHumanPerformersSequence"), + "00404035": ("SQ", "1", "Actual Human Performers Sequence", "", "ActualHumanPerformersSequence"), + "00404036": ("LO", "1", "Human Performer's Organization", "", "HumanPerformerOrganization"), + "00404037": ("PN", "1", "Human Performer's Name", "", "HumanPerformerName"), + "00404040": ("CS", "1", "Raw Data Handling", "", "RawDataHandling"), + "00404041": ("CS", "1", "Input Readiness State", "", "InputReadinessState"), + "00404050": ("DT", "1", "Performed Procedure Step Start DateTime", "", "PerformedProcedureStepStartDateTime"), + "00404051": ("DT", "1", "Performed Procedure Step End DateTime", "", "PerformedProcedureStepEndDateTime"), + "00404052": ("DT", "1", "Procedure Step Cancellation DateTime", "", "ProcedureStepCancellationDateTime"), + "00404070": ("SQ", "1", "Output Destination Sequence", "", "OutputDestinationSequence"), + "00404071": ("SQ", "1", "DICOM Storage Sequence", "", "DICOMStorageSequence"), + "00404072": ("SQ", "1", "STOW-RS Storage Sequence", "", "STOWRSStorageSequence"), + "00404073": ("UR", "1", "Storage URL", "", "StorageURL"), + "00404074": ("SQ", "1", "XDS Storage Sequence", "", "XDSStorageSequence"), + "00408302": ("DS", "1", "Entrance Dose in mGy", "", "EntranceDoseInmGy"), + "00408303": ("CS", "1", "Entrance Dose Derivation", "", "EntranceDoseDerivation"), + "00409092": ("SQ", "1", "Parametric Map Frame Type Sequence", "", "ParametricMapFrameTypeSequence"), + "00409094": ("SQ", "1", "Referenced Image Real World Value Mapping Sequence", "", "ReferencedImageRealWorldValueMappingSequence"), + "00409096": ("SQ", "1", "Real World Value Mapping Sequence", "", "RealWorldValueMappingSequence"), + "00409098": ("SQ", "1", "Pixel Value Mapping Code Sequence", "", "PixelValueMappingCodeSequence"), + "00409210": ("SH", "1", "LUT Label", "", "LUTLabel"), + "00409211": ("US or SS", "1", "Real World Value Last Value Mapped", "", "RealWorldValueLastValueMapped"), + "00409212": ("FD", "1-n", "Real World Value LUT Data", "", "RealWorldValueLUTData"), + "00409213": ("FD", "1", "Double Float Real World Value Last Value Mapped", "", "DoubleFloatRealWorldValueLastValueMapped"), + "00409214": ("FD", "1", "Double Float Real World Value First Value Mapped", "", "DoubleFloatRealWorldValueFirstValueMapped"), + "00409216": ("US or SS", "1", "Real World Value First Value Mapped", "", "RealWorldValueFirstValueMapped"), + "00409220": ("SQ", "1", "Quantity Definition Sequence", "", "QuantityDefinitionSequence"), + "00409224": ("FD", "1", "Real World Value Intercept", "", "RealWorldValueIntercept"), + "00409225": ("FD", "1", "Real World Value Slope", "", "RealWorldValueSlope"), + "0040A007": ("CS", "1", "Findings Flag (Trial)", "Retired", "FindingsFlagTrial"), + "0040A010": ("CS", "1", "Relationship Type", "", "RelationshipType"), + "0040A020": ("SQ", "1", "Findings Sequence (Trial)", "Retired", "FindingsSequenceTrial"), + "0040A021": ("UI", "1", "Findings Group UID (Trial)", "Retired", "FindingsGroupUIDTrial"), + "0040A022": ("UI", "1", "Referenced Findings Group UID (Trial)", "Retired", "ReferencedFindingsGroupUIDTrial"), + "0040A023": ("DA", "1", "Findings Group Recording Date (Trial)", "Retired", "FindingsGroupRecordingDateTrial"), + "0040A024": ("TM", "1", "Findings Group Recording Time (Trial)", "Retired", "FindingsGroupRecordingTimeTrial"), + "0040A026": ("SQ", "1", "Findings Source Category Code Sequence (Trial)", "Retired", "FindingsSourceCategoryCodeSequenceTrial"), + "0040A027": ("LO", "1", "Verifying Organization", "", "VerifyingOrganization"), + "0040A028": ("SQ", "1", "Documenting Organization Identifier Code Sequence (Trial)", "Retired", "DocumentingOrganizationIdentifierCodeSequenceTrial"), + "0040A030": ("DT", "1", "Verification DateTime", "", "VerificationDateTime"), + "0040A032": ("DT", "1", "Observation DateTime", "", "ObservationDateTime"), + "0040A040": ("CS", "1", "Value Type", "", "ValueType"), + "0040A043": ("SQ", "1", "Concept Name Code Sequence", "", "ConceptNameCodeSequence"), + "0040A047": ("LO", "1", "Measurement Precision Description (Trial)", "Retired", "MeasurementPrecisionDescriptionTrial"), + "0040A050": ("CS", "1", "Continuity Of Content", "", "ContinuityOfContent"), + "0040A057": ("CS", "1-n", "Urgency or Priority Alerts (Trial)", "Retired", "UrgencyOrPriorityAlertsTrial"), + "0040A060": ("LO", "1", "Sequencing Indicator (Trial)", "Retired", "SequencingIndicatorTrial"), + "0040A066": ("SQ", "1", "Document Identifier Code Sequence (Trial)", "Retired", "DocumentIdentifierCodeSequenceTrial"), + "0040A067": ("PN", "1", "Document Author (Trial)", "Retired", "DocumentAuthorTrial"), + "0040A068": ("SQ", "1", "Document Author Identifier Code Sequence (Trial)", "Retired", "DocumentAuthorIdentifierCodeSequenceTrial"), + "0040A070": ("SQ", "1", "Identifier Code Sequence (Trial)", "Retired", "IdentifierCodeSequenceTrial"), + "0040A073": ("SQ", "1", "Verifying Observer Sequence", "", "VerifyingObserverSequence"), + "0040A074": ("OB", "1", "Object Binary Identifier (Trial)", "Retired", "ObjectBinaryIdentifierTrial"), + "0040A075": ("PN", "1", "Verifying Observer Name", "", "VerifyingObserverName"), + "0040A076": ("SQ", "1", "Documenting Observer Identifier Code Sequence (Trial)", "Retired", "DocumentingObserverIdentifierCodeSequenceTrial"), + "0040A078": ("SQ", "1", "Author Observer Sequence", "", "AuthorObserverSequence"), + "0040A07A": ("SQ", "1", "Participant Sequence", "", "ParticipantSequence"), + "0040A07C": ("SQ", "1", "Custodial Organization Sequence", "", "CustodialOrganizationSequence"), + "0040A080": ("CS", "1", "Participation Type", "", "ParticipationType"), + "0040A082": ("DT", "1", "Participation DateTime", "", "ParticipationDateTime"), + "0040A084": ("CS", "1", "Observer Type", "", "ObserverType"), + "0040A085": ("SQ", "1", "Procedure Identifier Code Sequence (Trial)", "Retired", "ProcedureIdentifierCodeSequenceTrial"), + "0040A088": ("SQ", "1", "Verifying Observer Identification Code Sequence", "", "VerifyingObserverIdentificationCodeSequence"), + "0040A089": ("OB", "1", "Object Directory Binary Identifier (Trial)", "Retired", "ObjectDirectoryBinaryIdentifierTrial"), + "0040A090": ("SQ", "1", "Equivalent CDA Document Sequence", "Retired", "EquivalentCDADocumentSequence"), + "0040A0B0": ("US", "2-2n", "Referenced Waveform Channels", "", "ReferencedWaveformChannels"), + "0040A110": ("DA", "1", "Date of Document or Verbal Transaction (Trial)", "Retired", "DateOfDocumentOrVerbalTransactionTrial"), + "0040A112": ("TM", "1", "Time of Document Creation or Verbal Transaction (Trial)", "Retired", "TimeOfDocumentCreationOrVerbalTransactionTrial"), + "0040A120": ("DT", "1", "DateTime", "", "DateTime"), + "0040A121": ("DA", "1", "Date", "", "Date"), + "0040A122": ("TM", "1", "Time", "", "Time"), + "0040A123": ("PN", "1", "Person Name", "", "PersonName"), + "0040A124": ("UI", "1", "UID", "", "UID"), + "0040A125": ("CS", "2", "Report Status ID (Trial)", "Retired", "ReportStatusIDTrial"), + "0040A130": ("CS", "1", "Temporal Range Type", "", "TemporalRangeType"), + "0040A132": ("UL", "1-n", "Referenced Sample Positions", "", "ReferencedSamplePositions"), + "0040A136": ("US", "1-n", "Referenced Frame Numbers", "", "ReferencedFrameNumbers"), + "0040A138": ("DS", "1-n", "Referenced Time Offsets", "", "ReferencedTimeOffsets"), + "0040A13A": ("DT", "1-n", "Referenced DateTime", "", "ReferencedDateTime"), + "0040A160": ("UT", "1", "Text Value", "", "TextValue"), + "0040A161": ("FD", "1-n", "Floating Point Value", "", "FloatingPointValue"), + "0040A162": ("SL", "1-n", "Rational Numerator Value", "", "RationalNumeratorValue"), + "0040A163": ("UL", "1-n", "Rational Denominator Value", "", "RationalDenominatorValue"), + "0040A167": ("SQ", "1", "Observation Category Code Sequence (Trial)", "Retired", "ObservationCategoryCodeSequenceTrial"), + "0040A168": ("SQ", "1", "Concept Code Sequence", "", "ConceptCodeSequence"), + "0040A16A": ("ST", "1", "Bibliographic Citation (Trial)", "Retired", "BibliographicCitationTrial"), + "0040A170": ("SQ", "1", "Purpose of Reference Code Sequence", "", "PurposeOfReferenceCodeSequence"), + "0040A171": ("UI", "1", "Observation UID", "", "ObservationUID"), + "0040A172": ("UI", "1", "Referenced Observation UID (Trial)", "Retired", "ReferencedObservationUIDTrial"), + "0040A173": ("CS", "1", "Referenced Observation Class (Trial)", "Retired", "ReferencedObservationClassTrial"), + "0040A174": ("CS", "1", "Referenced Object Observation Class (Trial)", "Retired", "ReferencedObjectObservationClassTrial"), + "0040A180": ("US", "1", "Annotation Group Number", "", "AnnotationGroupNumber"), + "0040A192": ("DA", "1", "Observation Date (Trial)", "Retired", "ObservationDateTrial"), + "0040A193": ("TM", "1", "Observation Time (Trial)", "Retired", "ObservationTimeTrial"), + "0040A194": ("CS", "1", "Measurement Automation (Trial)", "Retired", "MeasurementAutomationTrial"), + "0040A195": ("SQ", "1", "Modifier Code Sequence", "", "ModifierCodeSequence"), + "0040A224": ("ST", "1", "Identification Description (Trial)", "Retired", "IdentificationDescriptionTrial"), + "0040A290": ("CS", "1", "Coordinates Set Geometric Type (Trial)", "Retired", "CoordinatesSetGeometricTypeTrial"), + "0040A296": ("SQ", "1", "Algorithm Code Sequence (Trial)", "Retired", "AlgorithmCodeSequenceTrial"), + "0040A297": ("ST", "1", "Algorithm Description (Trial)", "Retired", "AlgorithmDescriptionTrial"), + "0040A29A": ("SL", "2-2n", "Pixel Coordinates Set (Trial)", "Retired", "PixelCoordinatesSetTrial"), + "0040A300": ("SQ", "1", "Measured Value Sequence", "", "MeasuredValueSequence"), + "0040A301": ("SQ", "1", "Numeric Value Qualifier Code Sequence", "", "NumericValueQualifierCodeSequence"), + "0040A307": ("PN", "1", "Current Observer (Trial)", "Retired", "CurrentObserverTrial"), + "0040A30A": ("DS", "1-n", "Numeric Value", "", "NumericValue"), + "0040A313": ("SQ", "1", "Referenced Accession Sequence (Trial)", "Retired", "ReferencedAccessionSequenceTrial"), + "0040A33A": ("ST", "1", "Report Status Comment (Trial)", "Retired", "ReportStatusCommentTrial"), + "0040A340": ("SQ", "1", "Procedure Context Sequence (Trial)", "Retired", "ProcedureContextSequenceTrial"), + "0040A352": ("PN", "1", "Verbal Source (Trial)", "Retired", "VerbalSourceTrial"), + "0040A353": ("ST", "1", "Address (Trial)", "Retired", "AddressTrial"), + "0040A354": ("LO", "1", "Telephone Number (Trial)", "Retired", "TelephoneNumberTrial"), + "0040A358": ("SQ", "1", "Verbal Source Identifier Code Sequence (Trial)", "Retired", "VerbalSourceIdentifierCodeSequenceTrial"), + "0040A360": ("SQ", "1", "Predecessor Documents Sequence", "", "PredecessorDocumentsSequence"), + "0040A370": ("SQ", "1", "Referenced Request Sequence", "", "ReferencedRequestSequence"), + "0040A372": ("SQ", "1", "Performed Procedure Code Sequence", "", "PerformedProcedureCodeSequence"), + "0040A375": ("SQ", "1", "Current Requested Procedure Evidence Sequence", "", "CurrentRequestedProcedureEvidenceSequence"), + "0040A380": ("SQ", "1", "Report Detail Sequence (Trial)", "Retired", "ReportDetailSequenceTrial"), + "0040A385": ("SQ", "1", "Pertinent Other Evidence Sequence", "", "PertinentOtherEvidenceSequence"), + "0040A390": ("SQ", "1", "HL7 Structured Document Reference Sequence", "", "HL7StructuredDocumentReferenceSequence"), + "0040A402": ("UI", "1", "Observation Subject UID (Trial)", "Retired", "ObservationSubjectUIDTrial"), + "0040A403": ("CS", "1", "Observation Subject Class (Trial)", "Retired", "ObservationSubjectClassTrial"), + "0040A404": ("SQ", "1", "Observation Subject Type Code Sequence (Trial)", "Retired", "ObservationSubjectTypeCodeSequenceTrial"), + "0040A491": ("CS", "1", "Completion Flag", "", "CompletionFlag"), + "0040A492": ("LO", "1", "Completion Flag Description", "", "CompletionFlagDescription"), + "0040A493": ("CS", "1", "Verification Flag", "", "VerificationFlag"), + "0040A494": ("CS", "1", "Archive Requested", "", "ArchiveRequested"), + "0040A496": ("CS", "1", "Preliminary Flag", "", "PreliminaryFlag"), + "0040A504": ("SQ", "1", "Content Template Sequence", "", "ContentTemplateSequence"), + "0040A525": ("SQ", "1", "Identical Documents Sequence", "", "IdenticalDocumentsSequence"), + "0040A600": ("CS", "1", "Observation Subject Context Flag (Trial)", "Retired", "ObservationSubjectContextFlagTrial"), + "0040A601": ("CS", "1", "Observer Context Flag (Trial)", "Retired", "ObserverContextFlagTrial"), + "0040A603": ("CS", "1", "Procedure Context Flag (Trial)", "Retired", "ProcedureContextFlagTrial"), + "0040A730": ("SQ", "1", "Content Sequence", "", "ContentSequence"), + "0040A731": ("SQ", "1", "Relationship Sequence (Trial)", "Retired", "RelationshipSequenceTrial"), + "0040A732": ("SQ", "1", "Relationship Type Code Sequence (Trial)", "Retired", "RelationshipTypeCodeSequenceTrial"), + "0040A744": ("SQ", "1", "Language Code Sequence (Trial)", "Retired", "LanguageCodeSequenceTrial"), + "0040A992": ("ST", "1", "Uniform Resource Locator (Trial)", "Retired", "UniformResourceLocatorTrial"), + "0040B020": ("SQ", "1", "Waveform Annotation Sequence", "", "WaveformAnnotationSequence"), + "0040DB00": ("CS", "1", "Template Identifier", "", "TemplateIdentifier"), + "0040DB06": ("DT", "1", "Template Version", "Retired", "TemplateVersion"), + "0040DB07": ("DT", "1", "Template Local Version", "Retired", "TemplateLocalVersion"), + "0040DB0B": ("CS", "1", "Template Extension Flag", "Retired", "TemplateExtensionFlag"), + "0040DB0C": ("UI", "1", "Template Extension Organization UID", "Retired", "TemplateExtensionOrganizationUID"), + "0040DB0D": ("UI", "1", "Template Extension Creator UID", "Retired", "TemplateExtensionCreatorUID"), + "0040DB73": ("UL", "1-n", "Referenced Content Item Identifier", "", "ReferencedContentItemIdentifier"), + "0040E001": ("ST", "1", "HL7 Instance Identifier", "", "HL7InstanceIdentifier"), + "0040E004": ("DT", "1", "HL7 Document Effective Time", "", "HL7DocumentEffectiveTime"), + "0040E006": ("SQ", "1", "HL7 Document Type Code Sequence", "", "HL7DocumentTypeCodeSequence"), + "0040E008": ("SQ", "1", "Document Class Code Sequence", "", "DocumentClassCodeSequence"), + "0040E010": ("UR", "1", "Retrieve URI", "", "RetrieveURI"), + "0040E011": ("UI", "1", "Retrieve Location UID", "", "RetrieveLocationUID"), + "0040E020": ("CS", "1", "Type of Instances", "", "TypeOfInstances"), + "0040E021": ("SQ", "1", "DICOM Retrieval Sequence", "", "DICOMRetrievalSequence"), + "0040E022": ("SQ", "1", "DICOM Media Retrieval Sequence", "", "DICOMMediaRetrievalSequence"), + "0040E023": ("SQ", "1", "WADO Retrieval Sequence", "", "WADORetrievalSequence"), + "0040E024": ("SQ", "1", "XDS Retrieval Sequence", "", "XDSRetrievalSequence"), + "0040E025": ("SQ", "1", "WADO-RS Retrieval Sequence", "", "WADORSRetrievalSequence"), + "0040E030": ("UI", "1", "Repository Unique ID", "", "RepositoryUniqueID"), + "0040E031": ("UI", "1", "Home Community ID", "", "HomeCommunityID"), + "00420010": ("ST", "1", "Document Title", "", "DocumentTitle"), + "00420011": ("OB", "1", "Encapsulated Document", "", "EncapsulatedDocument"), + "00420012": ("LO", "1", "MIME Type of Encapsulated Document", "", "MIMETypeOfEncapsulatedDocument"), + "00420013": ("SQ", "1", "Source Instance Sequence", "", "SourceInstanceSequence"), + "00420014": ("LO", "1-n", "List of MIME Types", "", "ListOfMIMETypes"), + "00440001": ("ST", "1", "Product Package Identifier", "", "ProductPackageIdentifier"), + "00440002": ("CS", "1", "Substance Administration Approval", "", "SubstanceAdministrationApproval"), + "00440003": ("LT", "1", "Approval Status Further Description", "", "ApprovalStatusFurtherDescription"), + "00440004": ("DT", "1", "Approval Status DateTime", "", "ApprovalStatusDateTime"), + "00440007": ("SQ", "1", "Product Type Code Sequence", "", "ProductTypeCodeSequence"), + "00440008": ("LO", "1-n", "Product Name", "", "ProductName"), + "00440009": ("LT", "1", "Product Description", "", "ProductDescription"), + "0044000A": ("LO", "1", "Product Lot Identifier", "", "ProductLotIdentifier"), + "0044000B": ("DT", "1", "Product Expiration DateTime", "", "ProductExpirationDateTime"), + "00440010": ("DT", "1", "Substance Administration DateTime", "", "SubstanceAdministrationDateTime"), + "00440011": ("LO", "1", "Substance Administration Notes", "", "SubstanceAdministrationNotes"), + "00440012": ("LO", "1", "Substance Administration Device ID", "", "SubstanceAdministrationDeviceID"), + "00440013": ("SQ", "1", "Product Parameter Sequence", "", "ProductParameterSequence"), + "00440019": ("SQ", "1", "Substance Administration Parameter Sequence", "", "SubstanceAdministrationParameterSequence"), + "00440100": ("SQ", "1", "Approval Sequence", "", "ApprovalSequence"), + "00440101": ("SQ", "1", "Assertion Code Sequence", "", "AssertionCodeSequence"), + "00440102": ("UI", "1", "Assertion UID", "", "AssertionUID"), + "00440103": ("SQ", "1", "Asserter Identification Sequence", "", "AsserterIdentificationSequence"), + "00440104": ("DT", "1", "Assertion DateTime", "", "AssertionDateTime"), + "00440105": ("DT", "1", "Assertion Expiration DateTime", "", "AssertionExpirationDateTime"), + "00440106": ("UT", "1", "Assertion Comments", "", "AssertionComments"), + "00440107": ("SQ", "1", "Related Assertion Sequence", "", "RelatedAssertionSequence"), + "00440108": ("UI", "1", "Referenced Assertion UID", "", "ReferencedAssertionUID"), + "00440109": ("SQ", "1", "Approval Subject Sequence", "", "ApprovalSubjectSequence"), + "0044010A": ("SQ", "1", "Organizational Role Code Sequence", "", "OrganizationalRoleCodeSequence"), + "00460012": ("LO", "1", "Lens Description", "", "LensDescription"), + "00460014": ("SQ", "1", "Right Lens Sequence", "", "RightLensSequence"), + "00460015": ("SQ", "1", "Left Lens Sequence", "", "LeftLensSequence"), + "00460016": ("SQ", "1", "Unspecified Laterality Lens Sequence", "", "UnspecifiedLateralityLensSequence"), + "00460018": ("SQ", "1", "Cylinder Sequence", "", "CylinderSequence"), + "00460028": ("SQ", "1", "Prism Sequence", "", "PrismSequence"), + "00460030": ("FD", "1", "Horizontal Prism Power", "", "HorizontalPrismPower"), + "00460032": ("CS", "1", "Horizontal Prism Base", "", "HorizontalPrismBase"), + "00460034": ("FD", "1", "Vertical Prism Power", "", "VerticalPrismPower"), + "00460036": ("CS", "1", "Vertical Prism Base", "", "VerticalPrismBase"), + "00460038": ("CS", "1", "Lens Segment Type", "", "LensSegmentType"), + "00460040": ("FD", "1", "Optical Transmittance", "", "OpticalTransmittance"), + "00460042": ("FD", "1", "Channel Width", "", "ChannelWidth"), + "00460044": ("FD", "1", "Pupil Size", "", "PupilSize"), + "00460046": ("FD", "1", "Corneal Size", "", "CornealSize"), + "00460050": ("SQ", "1", "Autorefraction Right Eye Sequence", "", "AutorefractionRightEyeSequence"), + "00460052": ("SQ", "1", "Autorefraction Left Eye Sequence", "", "AutorefractionLeftEyeSequence"), + "00460060": ("FD", "1", "Distance Pupillary Distance", "", "DistancePupillaryDistance"), + "00460062": ("FD", "1", "Near Pupillary Distance", "", "NearPupillaryDistance"), + "00460063": ("FD", "1", "Intermediate Pupillary Distance", "", "IntermediatePupillaryDistance"), + "00460064": ("FD", "1", "Other Pupillary Distance", "", "OtherPupillaryDistance"), + "00460070": ("SQ", "1", "Keratometry Right Eye Sequence", "", "KeratometryRightEyeSequence"), + "00460071": ("SQ", "1", "Keratometry Left Eye Sequence", "", "KeratometryLeftEyeSequence"), + "00460074": ("SQ", "1", "Steep Keratometric Axis Sequence", "", "SteepKeratometricAxisSequence"), + "00460075": ("FD", "1", "Radius of Curvature", "", "RadiusOfCurvature"), + "00460076": ("FD", "1", "Keratometric Power", "", "KeratometricPower"), + "00460077": ("FD", "1", "Keratometric Axis", "", "KeratometricAxis"), + "00460080": ("SQ", "1", "Flat Keratometric Axis Sequence", "", "FlatKeratometricAxisSequence"), + "00460092": ("CS", "1", "Background Color", "", "BackgroundColor"), + "00460094": ("CS", "1", "Optotype", "", "Optotype"), + "00460095": ("CS", "1", "Optotype Presentation", "", "OptotypePresentation"), + "00460097": ("SQ", "1", "Subjective Refraction Right Eye Sequence", "", "SubjectiveRefractionRightEyeSequence"), + "00460098": ("SQ", "1", "Subjective Refraction Left Eye Sequence", "", "SubjectiveRefractionLeftEyeSequence"), + "00460100": ("SQ", "1", "Add Near Sequence", "", "AddNearSequence"), + "00460101": ("SQ", "1", "Add Intermediate Sequence", "", "AddIntermediateSequence"), + "00460102": ("SQ", "1", "Add Other Sequence", "", "AddOtherSequence"), + "00460104": ("FD", "1", "Add Power", "", "AddPower"), + "00460106": ("FD", "1", "Viewing Distance", "", "ViewingDistance"), + "00460121": ("SQ", "1", "Visual Acuity Type Code Sequence", "", "VisualAcuityTypeCodeSequence"), + "00460122": ("SQ", "1", "Visual Acuity Right Eye Sequence", "", "VisualAcuityRightEyeSequence"), + "00460123": ("SQ", "1", "Visual Acuity Left Eye Sequence", "", "VisualAcuityLeftEyeSequence"), + "00460124": ("SQ", "1", "Visual Acuity Both Eyes Open Sequence", "", "VisualAcuityBothEyesOpenSequence"), + "00460125": ("CS", "1", "Viewing Distance Type", "", "ViewingDistanceType"), + "00460135": ("SS", "2", "Visual Acuity Modifiers", "", "VisualAcuityModifiers"), + "00460137": ("FD", "1", "Decimal Visual Acuity", "", "DecimalVisualAcuity"), + "00460139": ("LO", "1", "Optotype Detailed Definition", "", "OptotypeDetailedDefinition"), + "00460145": ("SQ", "1", "Referenced Refractive Measurements Sequence", "", "ReferencedRefractiveMeasurementsSequence"), + "00460146": ("FD", "1", "Sphere Power", "", "SpherePower"), + "00460147": ("FD", "1", "Cylinder Power", "", "CylinderPower"), + "00460201": ("CS", "1", "Corneal Topography Surface", "", "CornealTopographySurface"), + "00460202": ("FL", "2", "Corneal Vertex Location", "", "CornealVertexLocation"), + "00460203": ("FL", "1", "Pupil Centroid X-Coordinate", "", "PupilCentroidXCoordinate"), + "00460204": ("FL", "1", "Pupil Centroid Y-Coordinate", "", "PupilCentroidYCoordinate"), + "00460205": ("FL", "1", "Equivalent Pupil Radius", "", "EquivalentPupilRadius"), + "00460207": ("SQ", "1", "Corneal Topography Map Type Code Sequence", "", "CornealTopographyMapTypeCodeSequence"), + "00460208": ("IS", "2-2n", "Vertices of the Outline of Pupil", "", "VerticesOfTheOutlineOfPupil"), + "00460210": ("SQ", "1", "Corneal Topography Mapping Normals Sequence", "", "CornealTopographyMappingNormalsSequence"), + "00460211": ("SQ", "1", "Maximum Corneal Curvature Sequence", "", "MaximumCornealCurvatureSequence"), + "00460212": ("FL", "1", "Maximum Corneal Curvature", "", "MaximumCornealCurvature"), + "00460213": ("FL", "2", "Maximum Corneal Curvature Location", "", "MaximumCornealCurvatureLocation"), + "00460215": ("SQ", "1", "Minimum Keratometric Sequence", "", "MinimumKeratometricSequence"), + "00460218": ("SQ", "1", "Simulated Keratometric Cylinder Sequence", "", "SimulatedKeratometricCylinderSequence"), + "00460220": ("FL", "1", "Average Corneal Power", "", "AverageCornealPower"), + "00460224": ("FL", "1", "Corneal I-S Value", "", "CornealISValue"), + "00460227": ("FL", "1", "Analyzed Area", "", "AnalyzedArea"), + "00460230": ("FL", "1", "Surface Regularity Index", "", "SurfaceRegularityIndex"), + "00460232": ("FL", "1", "Surface Asymmetry Index", "", "SurfaceAsymmetryIndex"), + "00460234": ("FL", "1", "Corneal Eccentricity Index", "", "CornealEccentricityIndex"), + "00460236": ("FL", "1", "Keratoconus Prediction Index", "", "KeratoconusPredictionIndex"), + "00460238": ("FL", "1", "Decimal Potential Visual Acuity", "", "DecimalPotentialVisualAcuity"), + "00460242": ("CS", "1", "Corneal Topography Map Quality Evaluation", "", "CornealTopographyMapQualityEvaluation"), + "00460244": ("SQ", "1", "Source Image Corneal Processed Data Sequence", "", "SourceImageCornealProcessedDataSequence"), + "00460247": ("FL", "3", "Corneal Point Location", "", "CornealPointLocation"), + "00460248": ("CS", "1", "Corneal Point Estimated", "", "CornealPointEstimated"), + "00460249": ("FL", "1", "Axial Power", "", "AxialPower"), + "00460250": ("FL", "1", "Tangential Power", "", "TangentialPower"), + "00460251": ("FL", "1", "Refractive Power", "", "RefractivePower"), + "00460252": ("FL", "1", "Relative Elevation", "", "RelativeElevation"), + "00460253": ("FL", "1", "Corneal Wavefront", "", "CornealWavefront"), + "00480001": ("FL", "1", "Imaged Volume Width", "", "ImagedVolumeWidth"), + "00480002": ("FL", "1", "Imaged Volume Height", "", "ImagedVolumeHeight"), + "00480003": ("FL", "1", "Imaged Volume Depth", "", "ImagedVolumeDepth"), + "00480006": ("UL", "1", "Total Pixel Matrix Columns", "", "TotalPixelMatrixColumns"), + "00480007": ("UL", "1", "Total Pixel Matrix Rows", "", "TotalPixelMatrixRows"), + "00480008": ("SQ", "1", "Total Pixel Matrix Origin Sequence", "", "TotalPixelMatrixOriginSequence"), + "00480010": ("CS", "1", "Specimen Label in Image", "", "SpecimenLabelInImage"), + "00480011": ("CS", "1", "Focus Method", "", "FocusMethod"), + "00480012": ("CS", "1", "Extended Depth of Field", "", "ExtendedDepthOfField"), + "00480013": ("US", "1", "Number of Focal Planes", "", "NumberOfFocalPlanes"), + "00480014": ("FL", "1", "Distance Between Focal Planes", "", "DistanceBetweenFocalPlanes"), + "00480015": ("US", "3", "Recommended Absent Pixel CIELab Value", "", "RecommendedAbsentPixelCIELabValue"), + "00480100": ("SQ", "1", "Illuminator Type Code Sequence", "", "IlluminatorTypeCodeSequence"), + "00480102": ("DS", "6", "Image Orientation (Slide)", "", "ImageOrientationSlide"), + "00480105": ("SQ", "1", "Optical Path Sequence", "", "OpticalPathSequence"), + "00480106": ("SH", "1", "Optical Path Identifier", "", "OpticalPathIdentifier"), + "00480107": ("ST", "1", "Optical Path Description", "", "OpticalPathDescription"), + "00480108": ("SQ", "1", "Illumination Color Code Sequence", "", "IlluminationColorCodeSequence"), + "00480110": ("SQ", "1", "Specimen Reference Sequence", "", "SpecimenReferenceSequence"), + "00480111": ("DS", "1", "Condenser Lens Power", "", "CondenserLensPower"), + "00480112": ("DS", "1", "Objective Lens Power", "", "ObjectiveLensPower"), + "00480113": ("DS", "1", "Objective Lens Numerical Aperture", "", "ObjectiveLensNumericalAperture"), + "00480120": ("SQ", "1", "Palette Color Lookup Table Sequence", "", "PaletteColorLookupTableSequence"), + "00480200": ("SQ", "1", "Referenced Image Navigation Sequence", "", "ReferencedImageNavigationSequence"), + "00480201": ("US", "2", "Top Left Hand Corner of Localizer Area", "", "TopLeftHandCornerOfLocalizerArea"), + "00480202": ("US", "2", "Bottom Right Hand Corner of Localizer Area", "", "BottomRightHandCornerOfLocalizerArea"), + "00480207": ("SQ", "1", "Optical Path Identification Sequence", "", "OpticalPathIdentificationSequence"), + "0048021A": ("SQ", "1", "Plane Position (Slide) Sequence", "", "PlanePositionSlideSequence"), + "0048021E": ("SL", "1", "Column Position In Total Image Pixel Matrix", "", "ColumnPositionInTotalImagePixelMatrix"), + "0048021F": ("SL", "1", "Row Position In Total Image Pixel Matrix", "", "RowPositionInTotalImagePixelMatrix"), + "00480301": ("CS", "1", "Pixel Origin Interpretation", "", "PixelOriginInterpretation"), + "00480302": ("UL", "1", "Number of Optical Paths", "", "NumberOfOpticalPaths"), + "00480303": ("UL", "1", "Total Pixel Matrix Focal Planes", "", "TotalPixelMatrixFocalPlanes"), + "00500004": ("CS", "1", "Calibration Image", "", "CalibrationImage"), + "00500010": ("SQ", "1", "Device Sequence", "", "DeviceSequence"), + "00500012": ("SQ", "1", "Container Component Type Code Sequence", "", "ContainerComponentTypeCodeSequence"), + "00500013": ("FD", "1", "Container Component Thickness", "", "ContainerComponentThickness"), + "00500014": ("DS", "1", "Device Length", "", "DeviceLength"), + "00500015": ("FD", "1", "Container Component Width", "", "ContainerComponentWidth"), + "00500016": ("DS", "1", "Device Diameter", "", "DeviceDiameter"), + "00500017": ("CS", "1", "Device Diameter Units", "", "DeviceDiameterUnits"), + "00500018": ("DS", "1", "Device Volume", "", "DeviceVolume"), + "00500019": ("DS", "1", "Inter-Marker Distance", "", "InterMarkerDistance"), + "0050001A": ("CS", "1", "Container Component Material", "", "ContainerComponentMaterial"), + "0050001B": ("LO", "1", "Container Component ID", "", "ContainerComponentID"), + "0050001C": ("FD", "1", "Container Component Length", "", "ContainerComponentLength"), + "0050001D": ("FD", "1", "Container Component Diameter", "", "ContainerComponentDiameter"), + "0050001E": ("LO", "1", "Container Component Description", "", "ContainerComponentDescription"), + "00500020": ("LO", "1", "Device Description", "", "DeviceDescription"), + "00520001": ("FL", "1", "Contrast/Bolus Ingredient Percent by Volume", "", "ContrastBolusIngredientPercentByVolume"), + "00520002": ("FD", "1", "OCT Focal Distance", "", "OCTFocalDistance"), + "00520003": ("FD", "1", "Beam Spot Size", "", "BeamSpotSize"), + "00520004": ("FD", "1", "Effective Refractive Index", "", "EffectiveRefractiveIndex"), + "00520006": ("CS", "1", "OCT Acquisition Domain", "", "OCTAcquisitionDomain"), + "00520007": ("FD", "1", "OCT Optical Center Wavelength", "", "OCTOpticalCenterWavelength"), + "00520008": ("FD", "1", "Axial Resolution", "", "AxialResolution"), + "00520009": ("FD", "1", "Ranging Depth", "", "RangingDepth"), + "00520011": ("FD", "1", "A-line Rate", "", "ALineRate"), + "00520012": ("US", "1", "A-lines Per Frame", "", "ALinesPerFrame"), + "00520013": ("FD", "1", "Catheter Rotational Rate", "", "CatheterRotationalRate"), + "00520014": ("FD", "1", "A-line Pixel Spacing", "", "ALinePixelSpacing"), + "00520016": ("SQ", "1", "Mode of Percutaneous Access Sequence", "", "ModeOfPercutaneousAccessSequence"), + "00520025": ("SQ", "1", "Intravascular OCT Frame Type Sequence", "", "IntravascularOCTFrameTypeSequence"), + "00520026": ("CS", "1", "OCT Z Offset Applied", "", "OCTZOffsetApplied"), + "00520027": ("SQ", "1", "Intravascular Frame Content Sequence", "", "IntravascularFrameContentSequence"), + "00520028": ("FD", "1", "Intravascular Longitudinal Distance", "", "IntravascularLongitudinalDistance"), + "00520029": ("SQ", "1", "Intravascular OCT Frame Content Sequence", "", "IntravascularOCTFrameContentSequence"), + "00520030": ("SS", "1", "OCT Z Offset Correction", "", "OCTZOffsetCorrection"), + "00520031": ("CS", "1", "Catheter Direction of Rotation", "", "CatheterDirectionOfRotation"), + "00520033": ("FD", "1", "Seam Line Location", "", "SeamLineLocation"), + "00520034": ("FD", "1", "First A-line Location", "", "FirstALineLocation"), + "00520036": ("US", "1", "Seam Line Index", "", "SeamLineIndex"), + "00520038": ("US", "1", "Number of Padded A-lines", "", "NumberOfPaddedALines"), + "00520039": ("CS", "1", "Interpolation Type", "", "InterpolationType"), + "0052003A": ("CS", "1", "Refractive Index Applied", "", "RefractiveIndexApplied"), + "00540010": ("US", "1-n", "Energy Window Vector", "", "EnergyWindowVector"), + "00540011": ("US", "1", "Number of Energy Windows", "", "NumberOfEnergyWindows"), + "00540012": ("SQ", "1", "Energy Window Information Sequence", "", "EnergyWindowInformationSequence"), + "00540013": ("SQ", "1", "Energy Window Range Sequence", "", "EnergyWindowRangeSequence"), + "00540014": ("DS", "1", "Energy Window Lower Limit", "", "EnergyWindowLowerLimit"), + "00540015": ("DS", "1", "Energy Window Upper Limit", "", "EnergyWindowUpperLimit"), + "00540016": ("SQ", "1", "Radiopharmaceutical Information Sequence", "", "RadiopharmaceuticalInformationSequence"), + "00540017": ("IS", "1", "Residual Syringe Counts", "", "ResidualSyringeCounts"), + "00540018": ("SH", "1", "Energy Window Name", "", "EnergyWindowName"), + "00540020": ("US", "1-n", "Detector Vector", "", "DetectorVector"), + "00540021": ("US", "1", "Number of Detectors", "", "NumberOfDetectors"), + "00540022": ("SQ", "1", "Detector Information Sequence", "", "DetectorInformationSequence"), + "00540030": ("US", "1-n", "Phase Vector", "", "PhaseVector"), + "00540031": ("US", "1", "Number of Phases", "", "NumberOfPhases"), + "00540032": ("SQ", "1", "Phase Information Sequence", "", "PhaseInformationSequence"), + "00540033": ("US", "1", "Number of Frames in Phase", "", "NumberOfFramesInPhase"), + "00540036": ("IS", "1", "Phase Delay", "", "PhaseDelay"), + "00540038": ("IS", "1", "Pause Between Frames", "", "PauseBetweenFrames"), + "00540039": ("CS", "1", "Phase Description", "", "PhaseDescription"), + "00540050": ("US", "1-n", "Rotation Vector", "", "RotationVector"), + "00540051": ("US", "1", "Number of Rotations", "", "NumberOfRotations"), + "00540052": ("SQ", "1", "Rotation Information Sequence", "", "RotationInformationSequence"), + "00540053": ("US", "1", "Number of Frames in Rotation", "", "NumberOfFramesInRotation"), + "00540060": ("US", "1-n", "R-R Interval Vector", "", "RRIntervalVector"), + "00540061": ("US", "1", "Number of R-R Intervals", "", "NumberOfRRIntervals"), + "00540062": ("SQ", "1", "Gated Information Sequence", "", "GatedInformationSequence"), + "00540063": ("SQ", "1", "Data Information Sequence", "", "DataInformationSequence"), + "00540070": ("US", "1-n", "Time Slot Vector", "", "TimeSlotVector"), + "00540071": ("US", "1", "Number of Time Slots", "", "NumberOfTimeSlots"), + "00540072": ("SQ", "1", "Time Slot Information Sequence", "", "TimeSlotInformationSequence"), + "00540073": ("DS", "1", "Time Slot Time", "", "TimeSlotTime"), + "00540080": ("US", "1-n", "Slice Vector", "", "SliceVector"), + "00540081": ("US", "1", "Number of Slices", "", "NumberOfSlices"), + "00540090": ("US", "1-n", "Angular View Vector", "", "AngularViewVector"), + "00540100": ("US", "1-n", "Time Slice Vector", "", "TimeSliceVector"), + "00540101": ("US", "1", "Number of Time Slices", "", "NumberOfTimeSlices"), + "00540200": ("DS", "1", "Start Angle", "", "StartAngle"), + "00540202": ("CS", "1", "Type of Detector Motion", "", "TypeOfDetectorMotion"), + "00540210": ("IS", "1-n", "Trigger Vector", "", "TriggerVector"), + "00540211": ("US", "1", "Number of Triggers in Phase", "", "NumberOfTriggersInPhase"), + "00540220": ("SQ", "1", "View Code Sequence", "", "ViewCodeSequence"), + "00540222": ("SQ", "1", "View Modifier Code Sequence", "", "ViewModifierCodeSequence"), + "00540300": ("SQ", "1", "Radionuclide Code Sequence", "", "RadionuclideCodeSequence"), + "00540302": ("SQ", "1", "Administration Route Code Sequence", "", "AdministrationRouteCodeSequence"), + "00540304": ("SQ", "1", "Radiopharmaceutical Code Sequence", "", "RadiopharmaceuticalCodeSequence"), + "00540306": ("SQ", "1", "Calibration Data Sequence", "", "CalibrationDataSequence"), + "00540308": ("US", "1", "Energy Window Number", "", "EnergyWindowNumber"), + "00540400": ("SH", "1", "Image ID", "", "ImageID"), + "00540410": ("SQ", "1", "Patient Orientation Code Sequence", "", "PatientOrientationCodeSequence"), + "00540412": ("SQ", "1", "Patient Orientation Modifier Code Sequence", "", "PatientOrientationModifierCodeSequence"), + "00540414": ("SQ", "1", "Patient Gantry Relationship Code Sequence", "", "PatientGantryRelationshipCodeSequence"), + "00540500": ("CS", "1", "Slice Progression Direction", "", "SliceProgressionDirection"), + "00540501": ("CS", "1", "Scan Progression Direction", "", "ScanProgressionDirection"), + "00541000": ("CS", "2", "Series Type", "", "SeriesType"), + "00541001": ("CS", "1", "Units", "", "Units"), + "00541002": ("CS", "1", "Counts Source", "", "CountsSource"), + "00541004": ("CS", "1", "Reprojection Method", "", "ReprojectionMethod"), + "00541006": ("CS", "1", "SUV Type", "", "SUVType"), + "00541100": ("CS", "1", "Randoms Correction Method", "", "RandomsCorrectionMethod"), + "00541101": ("LO", "1", "Attenuation Correction Method", "", "AttenuationCorrectionMethod"), + "00541102": ("CS", "1", "Decay Correction", "", "DecayCorrection"), + "00541103": ("LO", "1", "Reconstruction Method", "", "ReconstructionMethod"), + "00541104": ("LO", "1", "Detector Lines of Response Used", "", "DetectorLinesOfResponseUsed"), + "00541105": ("LO", "1", "Scatter Correction Method", "", "ScatterCorrectionMethod"), + "00541200": ("DS", "1", "Axial Acceptance", "", "AxialAcceptance"), + "00541201": ("IS", "2", "Axial Mash", "", "AxialMash"), + "00541202": ("IS", "1", "Transverse Mash", "", "TransverseMash"), + "00541203": ("DS", "2", "Detector Element Size", "", "DetectorElementSize"), + "00541210": ("DS", "1", "Coincidence Window Width", "", "CoincidenceWindowWidth"), + "00541220": ("CS", "1-n", "Secondary Counts Type", "", "SecondaryCountsType"), + "00541300": ("DS", "1", "Frame Reference Time", "", "FrameReferenceTime"), + "00541310": ("IS", "1", "Primary (Prompts) Counts Accumulated", "", "PrimaryPromptsCountsAccumulated"), + "00541311": ("IS", "1-n", "Secondary Counts Accumulated", "", "SecondaryCountsAccumulated"), + "00541320": ("DS", "1", "Slice Sensitivity Factor", "", "SliceSensitivityFactor"), + "00541321": ("DS", "1", "Decay Factor", "", "DecayFactor"), + "00541322": ("DS", "1", "Dose Calibration Factor", "", "DoseCalibrationFactor"), + "00541323": ("DS", "1", "Scatter Fraction Factor", "", "ScatterFractionFactor"), + "00541324": ("DS", "1", "Dead Time Factor", "", "DeadTimeFactor"), + "00541330": ("US", "1", "Image Index", "", "ImageIndex"), + "00541400": ("CS", "1-n", "Counts Included", "Retired", "CountsIncluded"), + "00541401": ("CS", "1", "Dead Time Correction Flag", "Retired", "DeadTimeCorrectionFlag"), + "00603000": ("SQ", "1", "Histogram Sequence", "", "HistogramSequence"), + "00603002": ("US", "1", "Histogram Number of Bins", "", "HistogramNumberOfBins"), + "00603004": ("US or SS", "1", "Histogram First Bin Value", "", "HistogramFirstBinValue"), + "00603006": ("US or SS", "1", "Histogram Last Bin Value", "", "HistogramLastBinValue"), + "00603008": ("US", "1", "Histogram Bin Width", "", "HistogramBinWidth"), + "00603010": ("LO", "1", "Histogram Explanation", "", "HistogramExplanation"), + "00603020": ("UL", "1-n", "Histogram Data", "", "HistogramData"), + "00620001": ("CS", "1", "Segmentation Type", "", "SegmentationType"), + "00620002": ("SQ", "1", "Segment Sequence", "", "SegmentSequence"), + "00620003": ("SQ", "1", "Segmented Property Category Code Sequence", "", "SegmentedPropertyCategoryCodeSequence"), + "00620004": ("US", "1", "Segment Number", "", "SegmentNumber"), + "00620005": ("LO", "1", "Segment Label", "", "SegmentLabel"), + "00620006": ("ST", "1", "Segment Description", "", "SegmentDescription"), + "00620007": ("SQ", "1", "Segmentation Algorithm Identification Sequence", "", "SegmentationAlgorithmIdentificationSequence"), + "00620008": ("CS", "1", "Segment Algorithm Type", "", "SegmentAlgorithmType"), + "00620009": ("LO", "1", "Segment Algorithm Name", "", "SegmentAlgorithmName"), + "0062000A": ("SQ", "1", "Segment Identification Sequence", "", "SegmentIdentificationSequence"), + "0062000B": ("US", "1-n", "Referenced Segment Number", "", "ReferencedSegmentNumber"), + "0062000C": ("US", "1", "Recommended Display Grayscale Value", "", "RecommendedDisplayGrayscaleValue"), + "0062000D": ("US", "3", "Recommended Display CIELab Value", "", "RecommendedDisplayCIELabValue"), + "0062000E": ("US", "1", "Maximum Fractional Value", "", "MaximumFractionalValue"), + "0062000F": ("SQ", "1", "Segmented Property Type Code Sequence", "", "SegmentedPropertyTypeCodeSequence"), + "00620010": ("CS", "1", "Segmentation Fractional Type", "", "SegmentationFractionalType"), + "00620011": ("SQ", "1", "Segmented Property Type Modifier Code Sequence", "", "SegmentedPropertyTypeModifierCodeSequence"), + "00620012": ("SQ", "1", "Used Segments Sequence", "", "UsedSegmentsSequence"), + "00620020": ("UT", "1", "Tracking ID", "", "TrackingID"), + "00620021": ("UI", "1", "Tracking UID", "", "TrackingUID"), + "00640002": ("SQ", "1", "Deformable Registration Sequence", "", "DeformableRegistrationSequence"), + "00640003": ("UI", "1", "Source Frame of Reference UID", "", "SourceFrameOfReferenceUID"), + "00640005": ("SQ", "1", "Deformable Registration Grid Sequence", "", "DeformableRegistrationGridSequence"), + "00640007": ("UL", "3", "Grid Dimensions", "", "GridDimensions"), + "00640008": ("FD", "3", "Grid Resolution", "", "GridResolution"), + "00640009": ("OF", "1", "Vector Grid Data", "", "VectorGridData"), + "0064000F": ("SQ", "1", "Pre Deformation Matrix Registration Sequence", "", "PreDeformationMatrixRegistrationSequence"), + "00640010": ("SQ", "1", "Post Deformation Matrix Registration Sequence", "", "PostDeformationMatrixRegistrationSequence"), + "00660001": ("UL", "1", "Number of Surfaces", "", "NumberOfSurfaces"), + "00660002": ("SQ", "1", "Surface Sequence", "", "SurfaceSequence"), + "00660003": ("UL", "1", "Surface Number", "", "SurfaceNumber"), + "00660004": ("LT", "1", "Surface Comments", "", "SurfaceComments"), + "00660009": ("CS", "1", "Surface Processing", "", "SurfaceProcessing"), + "0066000A": ("FL", "1", "Surface Processing Ratio", "", "SurfaceProcessingRatio"), + "0066000B": ("LO", "1", "Surface Processing Description", "", "SurfaceProcessingDescription"), + "0066000C": ("FL", "1", "Recommended Presentation Opacity", "", "RecommendedPresentationOpacity"), + "0066000D": ("CS", "1", "Recommended Presentation Type", "", "RecommendedPresentationType"), + "0066000E": ("CS", "1", "Finite Volume", "", "FiniteVolume"), + "00660010": ("CS", "1", "Manifold", "", "Manifold"), + "00660011": ("SQ", "1", "Surface Points Sequence", "", "SurfacePointsSequence"), + "00660012": ("SQ", "1", "Surface Points Normals Sequence", "", "SurfacePointsNormalsSequence"), + "00660013": ("SQ", "1", "Surface Mesh Primitives Sequence", "", "SurfaceMeshPrimitivesSequence"), + "00660015": ("UL", "1", "Number of Surface Points", "", "NumberOfSurfacePoints"), + "00660016": ("OF", "1", "Point Coordinates Data", "", "PointCoordinatesData"), + "00660017": ("FL", "3", "Point Position Accuracy", "", "PointPositionAccuracy"), + "00660018": ("FL", "1", "Mean Point Distance", "", "MeanPointDistance"), + "00660019": ("FL", "1", "Maximum Point Distance", "", "MaximumPointDistance"), + "0066001A": ("FL", "6", "Points Bounding Box Coordinates", "", "PointsBoundingBoxCoordinates"), + "0066001B": ("FL", "3", "Axis of Rotation", "", "AxisOfRotation"), + "0066001C": ("FL", "3", "Center of Rotation", "", "CenterOfRotation"), + "0066001E": ("UL", "1", "Number of Vectors", "", "NumberOfVectors"), + "0066001F": ("US", "1", "Vector Dimensionality", "", "VectorDimensionality"), + "00660020": ("FL", "1-n", "Vector Accuracy", "", "VectorAccuracy"), + "00660021": ("OF", "1", "Vector Coordinate Data", "", "VectorCoordinateData"), + "00660023": ("OW", "1", "Triangle Point Index List", "Retired", "TrianglePointIndexList"), + "00660024": ("OW", "1", "Edge Point Index List", "Retired", "EdgePointIndexList"), + "00660025": ("OW", "1", "Vertex Point Index List", "Retired", "VertexPointIndexList"), + "00660026": ("SQ", "1", "Triangle Strip Sequence", "", "TriangleStripSequence"), + "00660027": ("SQ", "1", "Triangle Fan Sequence", "", "TriangleFanSequence"), + "00660028": ("SQ", "1", "Line Sequence", "", "LineSequence"), + "00660029": ("OW", "1", "Primitive Point Index List", "Retired", "PrimitivePointIndexList"), + "0066002A": ("UL", "1", "Surface Count", "", "SurfaceCount"), + "0066002B": ("SQ", "1", "Referenced Surface Sequence", "", "ReferencedSurfaceSequence"), + "0066002C": ("UL", "1", "Referenced Surface Number", "", "ReferencedSurfaceNumber"), + "0066002D": ("SQ", "1", "Segment Surface Generation Algorithm Identification Sequence", "", "SegmentSurfaceGenerationAlgorithmIdentificationSequence"), + "0066002E": ("SQ", "1", "Segment Surface Source Instance Sequence", "", "SegmentSurfaceSourceInstanceSequence"), + "0066002F": ("SQ", "1", "Algorithm Family Code Sequence", "", "AlgorithmFamilyCodeSequence"), + "00660030": ("SQ", "1", "Algorithm Name Code Sequence", "", "AlgorithmNameCodeSequence"), + "00660031": ("LO", "1", "Algorithm Version", "", "AlgorithmVersion"), + "00660032": ("LT", "1", "Algorithm Parameters", "", "AlgorithmParameters"), + "00660034": ("SQ", "1", "Facet Sequence", "", "FacetSequence"), + "00660035": ("SQ", "1", "Surface Processing Algorithm Identification Sequence", "", "SurfaceProcessingAlgorithmIdentificationSequence"), + "00660036": ("LO", "1", "Algorithm Name", "", "AlgorithmName"), + "00660037": ("FL", "1", "Recommended Point Radius", "", "RecommendedPointRadius"), + "00660038": ("FL", "1", "Recommended Line Thickness", "", "RecommendedLineThickness"), + "00660040": ("OL", "1", "Long Primitive Point Index List", "", "LongPrimitivePointIndexList"), + "00660041": ("OL", "1", "Long Triangle Point Index List", "", "LongTrianglePointIndexList"), + "00660042": ("OL", "1", "Long Edge Point Index List", "", "LongEdgePointIndexList"), + "00660043": ("OL", "1", "Long Vertex Point Index List", "", "LongVertexPointIndexList"), + "00660101": ("SQ", "1", "Track Set Sequence", "", "TrackSetSequence"), + "00660102": ("SQ", "1", "Track Sequence", "", "TrackSequence"), + "00660103": ("OW", "1", "Recommended Display CIELab Value List", "", "RecommendedDisplayCIELabValueList"), + "00660104": ("SQ", "1", "Tracking Algorithm Identification Sequence", "", "TrackingAlgorithmIdentificationSequence"), + "00660105": ("UL", "1", "Track Set Number", "", "TrackSetNumber"), + "00660106": ("LO", "1", "Track Set Label", "", "TrackSetLabel"), + "00660107": ("UT", "1", "Track Set Description", "", "TrackSetDescription"), + "00660108": ("SQ", "1", "Track Set Anatomical Type Code Sequence", "", "TrackSetAnatomicalTypeCodeSequence"), + "00660121": ("SQ", "1", "Measurements Sequence", "", "MeasurementsSequence"), + "00660124": ("SQ", "1", "Track Set Statistics Sequence", "", "TrackSetStatisticsSequence"), + "00660125": ("OF", "1", "Floating Point Values", "", "FloatingPointValues"), + "00660129": ("OL", "1", "Track Point Index List", "", "TrackPointIndexList"), + "00660130": ("SQ", "1", "Track Statistics Sequence", "", "TrackStatisticsSequence"), + "00660132": ("SQ", "1", "Measurement Values Sequence", "", "MeasurementValuesSequence"), + "00660133": ("SQ", "1", "Diffusion Acquisition Code Sequence", "", "DiffusionAcquisitionCodeSequence"), + "00660134": ("SQ", "1", "Diffusion Model Code Sequence", "", "DiffusionModelCodeSequence"), + "00686210": ("LO", "1", "Implant Size", "", "ImplantSize"), + "00686221": ("LO", "1", "Implant Template Version", "", "ImplantTemplateVersion"), + "00686222": ("SQ", "1", "Replaced Implant Template Sequence", "", "ReplacedImplantTemplateSequence"), + "00686223": ("CS", "1", "Implant Type", "", "ImplantType"), + "00686224": ("SQ", "1", "Derivation Implant Template Sequence", "", "DerivationImplantTemplateSequence"), + "00686225": ("SQ", "1", "Original Implant Template Sequence", "", "OriginalImplantTemplateSequence"), + "00686226": ("DT", "1", "Effective DateTime", "", "EffectiveDateTime"), + "00686230": ("SQ", "1", "Implant Target Anatomy Sequence", "", "ImplantTargetAnatomySequence"), + "00686260": ("SQ", "1", "Information From Manufacturer Sequence", "", "InformationFromManufacturerSequence"), + "00686265": ("SQ", "1", "Notification From Manufacturer Sequence", "", "NotificationFromManufacturerSequence"), + "00686270": ("DT", "1", "Information Issue DateTime", "", "InformationIssueDateTime"), + "00686280": ("ST", "1", "Information Summary", "", "InformationSummary"), + "006862A0": ("SQ", "1", "Implant Regulatory Disapproval Code Sequence", "", "ImplantRegulatoryDisapprovalCodeSequence"), + "006862A5": ("FD", "1", "Overall Template Spatial Tolerance", "", "OverallTemplateSpatialTolerance"), + "006862C0": ("SQ", "1", "HPGL Document Sequence", "", "HPGLDocumentSequence"), + "006862D0": ("US", "1", "HPGL Document ID", "", "HPGLDocumentID"), + "006862D5": ("LO", "1", "HPGL Document Label", "", "HPGLDocumentLabel"), + "006862E0": ("SQ", "1", "View Orientation Code Sequence", "", "ViewOrientationCodeSequence"), + "006862F0": ("SQ", "1", "View Orientation Modifier Code Sequence", "", "ViewOrientationModifierCodeSequence"), + "006862F2": ("FD", "1", "HPGL Document Scaling", "", "HPGLDocumentScaling"), + "00686300": ("OB", "1", "HPGL Document", "", "HPGLDocument"), + "00686310": ("US", "1", "HPGL Contour Pen Number", "", "HPGLContourPenNumber"), + "00686320": ("SQ", "1", "HPGL Pen Sequence", "", "HPGLPenSequence"), + "00686330": ("US", "1", "HPGL Pen Number", "", "HPGLPenNumber"), + "00686340": ("LO", "1", "HPGL Pen Label", "", "HPGLPenLabel"), + "00686345": ("ST", "1", "HPGL Pen Description", "", "HPGLPenDescription"), + "00686346": ("FD", "2", "Recommended Rotation Point", "", "RecommendedRotationPoint"), + "00686347": ("FD", "4", "Bounding Rectangle", "", "BoundingRectangle"), + "00686350": ("US", "1-n", "Implant Template 3D Model Surface Number", "", "ImplantTemplate3DModelSurfaceNumber"), + "00686360": ("SQ", "1", "Surface Model Description Sequence", "", "SurfaceModelDescriptionSequence"), + "00686380": ("LO", "1", "Surface Model Label", "", "SurfaceModelLabel"), + "00686390": ("FD", "1", "Surface Model Scaling Factor", "", "SurfaceModelScalingFactor"), + "006863A0": ("SQ", "1", "Materials Code Sequence", "", "MaterialsCodeSequence"), + "006863A4": ("SQ", "1", "Coating Materials Code Sequence", "", "CoatingMaterialsCodeSequence"), + "006863A8": ("SQ", "1", "Implant Type Code Sequence", "", "ImplantTypeCodeSequence"), + "006863AC": ("SQ", "1", "Fixation Method Code Sequence", "", "FixationMethodCodeSequence"), + "006863B0": ("SQ", "1", "Mating Feature Sets Sequence", "", "MatingFeatureSetsSequence"), + "006863C0": ("US", "1", "Mating Feature Set ID", "", "MatingFeatureSetID"), + "006863D0": ("LO", "1", "Mating Feature Set Label", "", "MatingFeatureSetLabel"), + "006863E0": ("SQ", "1", "Mating Feature Sequence", "", "MatingFeatureSequence"), + "006863F0": ("US", "1", "Mating Feature ID", "", "MatingFeatureID"), + "00686400": ("SQ", "1", "Mating Feature Degree of Freedom Sequence", "", "MatingFeatureDegreeOfFreedomSequence"), + "00686410": ("US", "1", "Degree of Freedom ID", "", "DegreeOfFreedomID"), + "00686420": ("CS", "1", "Degree of Freedom Type", "", "DegreeOfFreedomType"), + "00686430": ("SQ", "1", "2D Mating Feature Coordinates Sequence", "", "TwoDMatingFeatureCoordinatesSequence"), + "00686440": ("US", "1", "Referenced HPGL Document ID", "", "ReferencedHPGLDocumentID"), + "00686450": ("FD", "2", "2D Mating Point", "", "TwoDMatingPoint"), + "00686460": ("FD", "4", "2D Mating Axes", "", "TwoDMatingAxes"), + "00686470": ("SQ", "1", "2D Degree of Freedom Sequence", "", "TwoDDegreeOfFreedomSequence"), + "00686490": ("FD", "3", "3D Degree of Freedom Axis", "", "ThreeDDegreeOfFreedomAxis"), + "006864A0": ("FD", "2", "Range of Freedom", "", "RangeOfFreedom"), + "006864C0": ("FD", "3", "3D Mating Point", "", "ThreeDMatingPoint"), + "006864D0": ("FD", "9", "3D Mating Axes", "", "ThreeDMatingAxes"), + "006864F0": ("FD", "3", "2D Degree of Freedom Axis", "", "TwoDDegreeOfFreedomAxis"), + "00686500": ("SQ", "1", "Planning Landmark Point Sequence", "", "PlanningLandmarkPointSequence"), + "00686510": ("SQ", "1", "Planning Landmark Line Sequence", "", "PlanningLandmarkLineSequence"), + "00686520": ("SQ", "1", "Planning Landmark Plane Sequence", "", "PlanningLandmarkPlaneSequence"), + "00686530": ("US", "1", "Planning Landmark ID", "", "PlanningLandmarkID"), + "00686540": ("LO", "1", "Planning Landmark Description", "", "PlanningLandmarkDescription"), + "00686545": ("SQ", "1", "Planning Landmark Identification Code Sequence", "", "PlanningLandmarkIdentificationCodeSequence"), + "00686550": ("SQ", "1", "2D Point Coordinates Sequence", "", "TwoDPointCoordinatesSequence"), + "00686560": ("FD", "2", "2D Point Coordinates", "", "TwoDPointCoordinates"), + "00686590": ("FD", "3", "3D Point Coordinates", "", "ThreeDPointCoordinates"), + "006865A0": ("SQ", "1", "2D Line Coordinates Sequence", "", "TwoDLineCoordinatesSequence"), + "006865B0": ("FD", "4", "2D Line Coordinates", "", "TwoDLineCoordinates"), + "006865D0": ("FD", "6", "3D Line Coordinates", "", "ThreeDLineCoordinates"), + "006865E0": ("SQ", "1", "2D Plane Coordinates Sequence", "", "TwoDPlaneCoordinatesSequence"), + "006865F0": ("FD", "4", "2D Plane Intersection", "", "TwoDPlaneIntersection"), + "00686610": ("FD", "3", "3D Plane Origin", "", "ThreeDPlaneOrigin"), + "00686620": ("FD", "3", "3D Plane Normal", "", "ThreeDPlaneNormal"), + "00687001": ("CS", "1", "Model Modification", "", "ModelModification"), + "00687002": ("CS", "1", "Model Mirroring", "", "ModelMirroring"), + "00687003": ("SQ", "1", "Model Usage Code Sequence", "", "ModelUsageCodeSequence"), + "00700001": ("SQ", "1", "Graphic Annotation Sequence", "", "GraphicAnnotationSequence"), + "00700002": ("CS", "1", "Graphic Layer", "", "GraphicLayer"), + "00700003": ("CS", "1", "Bounding Box Annotation Units", "", "BoundingBoxAnnotationUnits"), + "00700004": ("CS", "1", "Anchor Point Annotation Units", "", "AnchorPointAnnotationUnits"), + "00700005": ("CS", "1", "Graphic Annotation Units", "", "GraphicAnnotationUnits"), + "00700006": ("ST", "1", "Unformatted Text Value", "", "UnformattedTextValue"), + "00700008": ("SQ", "1", "Text Object Sequence", "", "TextObjectSequence"), + "00700009": ("SQ", "1", "Graphic Object Sequence", "", "GraphicObjectSequence"), + "00700010": ("FL", "2", "Bounding Box Top Left Hand Corner", "", "BoundingBoxTopLeftHandCorner"), + "00700011": ("FL", "2", "Bounding Box Bottom Right Hand Corner", "", "BoundingBoxBottomRightHandCorner"), + "00700012": ("CS", "1", "Bounding Box Text Horizontal Justification", "", "BoundingBoxTextHorizontalJustification"), + "00700014": ("FL", "2", "Anchor Point", "", "AnchorPoint"), + "00700015": ("CS", "1", "Anchor Point Visibility", "", "AnchorPointVisibility"), + "00700020": ("US", "1", "Graphic Dimensions", "", "GraphicDimensions"), + "00700021": ("US", "1", "Number of Graphic Points", "", "NumberOfGraphicPoints"), + "00700022": ("FL", "2-n", "Graphic Data", "", "GraphicData"), + "00700023": ("CS", "1", "Graphic Type", "", "GraphicType"), + "00700024": ("CS", "1", "Graphic Filled", "", "GraphicFilled"), + "00700040": ("IS", "1", "Image Rotation (Retired)", "Retired", "ImageRotationRetired"), + "00700041": ("CS", "1", "Image Horizontal Flip", "", "ImageHorizontalFlip"), + "00700042": ("US", "1", "Image Rotation", "", "ImageRotation"), + "00700050": ("US", "2", "Displayed Area Top Left Hand Corner (Trial)", "Retired", "DisplayedAreaTopLeftHandCornerTrial"), + "00700051": ("US", "2", "Displayed Area Bottom Right Hand Corner (Trial)", "Retired", "DisplayedAreaBottomRightHandCornerTrial"), + "00700052": ("SL", "2", "Displayed Area Top Left Hand Corner", "", "DisplayedAreaTopLeftHandCorner"), + "00700053": ("SL", "2", "Displayed Area Bottom Right Hand Corner", "", "DisplayedAreaBottomRightHandCorner"), + "0070005A": ("SQ", "1", "Displayed Area Selection Sequence", "", "DisplayedAreaSelectionSequence"), + "00700060": ("SQ", "1", "Graphic Layer Sequence", "", "GraphicLayerSequence"), + "00700062": ("IS", "1", "Graphic Layer Order", "", "GraphicLayerOrder"), + "00700066": ("US", "1", "Graphic Layer Recommended Display Grayscale Value", "", "GraphicLayerRecommendedDisplayGrayscaleValue"), + "00700067": ("US", "3", "Graphic Layer Recommended Display RGB Value", "Retired", "GraphicLayerRecommendedDisplayRGBValue"), + "00700068": ("LO", "1", "Graphic Layer Description", "", "GraphicLayerDescription"), + "00700080": ("CS", "1", "Content Label", "", "ContentLabel"), + "00700081": ("LO", "1", "Content Description", "", "ContentDescription"), + "00700082": ("DA", "1", "Presentation Creation Date", "", "PresentationCreationDate"), + "00700083": ("TM", "1", "Presentation Creation Time", "", "PresentationCreationTime"), + "00700084": ("PN", "1", "Content Creator's Name", "", "ContentCreatorName"), + "00700086": ("SQ", "1", "Content Creator's Identification Code Sequence", "", "ContentCreatorIdentificationCodeSequence"), + "00700087": ("SQ", "1", "Alternate Content Description Sequence", "", "AlternateContentDescriptionSequence"), + "00700100": ("CS", "1", "Presentation Size Mode", "", "PresentationSizeMode"), + "00700101": ("DS", "2", "Presentation Pixel Spacing", "", "PresentationPixelSpacing"), + "00700102": ("IS", "2", "Presentation Pixel Aspect Ratio", "", "PresentationPixelAspectRatio"), + "00700103": ("FL", "1", "Presentation Pixel Magnification Ratio", "", "PresentationPixelMagnificationRatio"), + "00700207": ("LO", "1", "Graphic Group Label", "", "GraphicGroupLabel"), + "00700208": ("ST", "1", "Graphic Group Description", "", "GraphicGroupDescription"), + "00700209": ("SQ", "1", "Compound Graphic Sequence", "", "CompoundGraphicSequence"), + "00700226": ("UL", "1", "Compound Graphic Instance ID", "", "CompoundGraphicInstanceID"), + "00700227": ("LO", "1", "Font Name", "", "FontName"), + "00700228": ("CS", "1", "Font Name Type", "", "FontNameType"), + "00700229": ("LO", "1", "CSS Font Name", "", "CSSFontName"), + "00700230": ("FD", "1", "Rotation Angle", "", "RotationAngle"), + "00700231": ("SQ", "1", "Text Style Sequence", "", "TextStyleSequence"), + "00700232": ("SQ", "1", "Line Style Sequence", "", "LineStyleSequence"), + "00700233": ("SQ", "1", "Fill Style Sequence", "", "FillStyleSequence"), + "00700234": ("SQ", "1", "Graphic Group Sequence", "", "GraphicGroupSequence"), + "00700241": ("US", "3", "Text Color CIELab Value", "", "TextColorCIELabValue"), + "00700242": ("CS", "1", "Horizontal Alignment", "", "HorizontalAlignment"), + "00700243": ("CS", "1", "Vertical Alignment", "", "VerticalAlignment"), + "00700244": ("CS", "1", "Shadow Style", "", "ShadowStyle"), + "00700245": ("FL", "1", "Shadow Offset X", "", "ShadowOffsetX"), + "00700246": ("FL", "1", "Shadow Offset Y", "", "ShadowOffsetY"), + "00700247": ("US", "3", "Shadow Color CIELab Value", "", "ShadowColorCIELabValue"), + "00700248": ("CS", "1", "Underlined", "", "Underlined"), + "00700249": ("CS", "1", "Bold", "", "Bold"), + "00700250": ("CS", "1", "Italic", "", "Italic"), + "00700251": ("US", "3", "Pattern On Color CIELab Value", "", "PatternOnColorCIELabValue"), + "00700252": ("US", "3", "Pattern Off Color CIELab Value", "", "PatternOffColorCIELabValue"), + "00700253": ("FL", "1", "Line Thickness", "", "LineThickness"), + "00700254": ("CS", "1", "Line Dashing Style", "", "LineDashingStyle"), + "00700255": ("UL", "1", "Line Pattern", "", "LinePattern"), + "00700256": ("OB", "1", "Fill Pattern", "", "FillPattern"), + "00700257": ("CS", "1", "Fill Mode", "", "FillMode"), + "00700258": ("FL", "1", "Shadow Opacity", "", "ShadowOpacity"), + "00700261": ("FL", "1", "Gap Length", "", "GapLength"), + "00700262": ("FL", "1", "Diameter of Visibility", "", "DiameterOfVisibility"), + "00700273": ("FL", "2", "Rotation Point", "", "RotationPoint"), + "00700274": ("CS", "1", "Tick Alignment", "", "TickAlignment"), + "00700278": ("CS", "1", "Show Tick Label", "", "ShowTickLabel"), + "00700279": ("CS", "1", "Tick Label Alignment", "", "TickLabelAlignment"), + "00700282": ("CS", "1", "Compound Graphic Units", "", "CompoundGraphicUnits"), + "00700284": ("FL", "1", "Pattern On Opacity", "", "PatternOnOpacity"), + "00700285": ("FL", "1", "Pattern Off Opacity", "", "PatternOffOpacity"), + "00700287": ("SQ", "1", "Major Ticks Sequence", "", "MajorTicksSequence"), + "00700288": ("FL", "1", "Tick Position", "", "TickPosition"), + "00700289": ("SH", "1", "Tick Label", "", "TickLabel"), + "00700294": ("CS", "1", "Compound Graphic Type", "", "CompoundGraphicType"), + "00700295": ("UL", "1", "Graphic Group ID", "", "GraphicGroupID"), + "00700306": ("CS", "1", "Shape Type", "", "ShapeType"), + "00700308": ("SQ", "1", "Registration Sequence", "", "RegistrationSequence"), + "00700309": ("SQ", "1", "Matrix Registration Sequence", "", "MatrixRegistrationSequence"), + "0070030A": ("SQ", "1", "Matrix Sequence", "", "MatrixSequence"), + "0070030B": ("FD", "16", "Frame of Reference to Displayed Coordinate System Transformation Matrix", "", "FrameOfReferenceToDisplayedCoordinateSystemTransformationMatrix"), + "0070030C": ("CS", "1", "Frame of Reference Transformation Matrix Type", "", "FrameOfReferenceTransformationMatrixType"), + "0070030D": ("SQ", "1", "Registration Type Code Sequence", "", "RegistrationTypeCodeSequence"), + "0070030F": ("ST", "1", "Fiducial Description", "", "FiducialDescription"), + "00700310": ("SH", "1", "Fiducial Identifier", "", "FiducialIdentifier"), + "00700311": ("SQ", "1", "Fiducial Identifier Code Sequence", "", "FiducialIdentifierCodeSequence"), + "00700312": ("FD", "1", "Contour Uncertainty Radius", "", "ContourUncertaintyRadius"), + "00700314": ("SQ", "1", "Used Fiducials Sequence", "", "UsedFiducialsSequence"), + "00700318": ("SQ", "1", "Graphic Coordinates Data Sequence", "", "GraphicCoordinatesDataSequence"), + "0070031A": ("UI", "1", "Fiducial UID", "", "FiducialUID"), + "0070031B": ("UI", "1", "Referenced Fiducial UID", "", "ReferencedFiducialUID"), + "0070031C": ("SQ", "1", "Fiducial Set Sequence", "", "FiducialSetSequence"), + "0070031E": ("SQ", "1", "Fiducial Sequence", "", "FiducialSequence"), + "0070031F": ("SQ", "1", "Fiducials Property Category Code Sequence", "", "FiducialsPropertyCategoryCodeSequence"), + "00700401": ("US", "3", "Graphic Layer Recommended Display CIELab Value", "", "GraphicLayerRecommendedDisplayCIELabValue"), + "00700402": ("SQ", "1", "Blending Sequence", "", "BlendingSequence"), + "00700403": ("FL", "1", "Relative Opacity", "", "RelativeOpacity"), + "00700404": ("SQ", "1", "Referenced Spatial Registration Sequence", "", "ReferencedSpatialRegistrationSequence"), + "00700405": ("CS", "1", "Blending Position", "", "BlendingPosition"), + "00701101": ("UI", "1", "Presentation Display Collection UID", "", "PresentationDisplayCollectionUID"), + "00701102": ("UI", "1", "Presentation Sequence Collection UID", "", "PresentationSequenceCollectionUID"), + "00701103": ("US", "1", "Presentation Sequence Position Index", "", "PresentationSequencePositionIndex"), + "00701104": ("SQ", "1", "Rendered Image Reference Sequence", "", "RenderedImageReferenceSequence"), + "00701201": ("SQ", "1", "Volumetric Presentation State Input Sequence", "", "VolumetricPresentationStateInputSequence"), + "00701202": ("CS", "1", "Presentation Input Type", "", "PresentationInputType"), + "00701203": ("US", "1", "Input Sequence Position Index", "", "InputSequencePositionIndex"), + "00701204": ("CS", "1", "Crop", "", "Crop"), + "00701205": ("US", "1-n", "Cropping Specification Index", "", "CroppingSpecificationIndex"), + "00701206": ("CS", "1", "Compositing Method", "Retired", "CompositingMethod"), + "00701207": ("US", "1", "Volumetric Presentation Input Number", "", "VolumetricPresentationInputNumber"), + "00701208": ("CS", "1", "Image Volume Geometry", "", "ImageVolumeGeometry"), + "00701209": ("UI", "1", "Volumetric Presentation Input Set UID", "", "VolumetricPresentationInputSetUID"), + "0070120A": ("SQ", "1", "Volumetric Presentation Input Set Sequence", "", "VolumetricPresentationInputSetSequence"), + "0070120B": ("CS", "1", "Global Crop", "", "GlobalCrop"), + "0070120C": ("US", "1-n", "Global Cropping Specification Index", "", "GlobalCroppingSpecificationIndex"), + "0070120D": ("CS", "1", "Rendering Method", "", "RenderingMethod"), + "00701301": ("SQ", "1", "Volume Cropping Sequence", "", "VolumeCroppingSequence"), + "00701302": ("CS", "1", "Volume Cropping Method", "", "VolumeCroppingMethod"), + "00701303": ("FD", "6", "Bounding Box Crop", "", "BoundingBoxCrop"), + "00701304": ("SQ", "1", "Oblique Cropping Plane Sequence", "", "ObliqueCroppingPlaneSequence"), + "00701305": ("FD", "4", "Plane", "", "Plane"), + "00701306": ("FD", "3", "Plane Normal", "", "PlaneNormal"), + "00701309": ("US", "1", "Cropping Specification Number", "", "CroppingSpecificationNumber"), + "00701501": ("CS", "1", "Multi-Planar Reconstruction Style", "", "MultiPlanarReconstructionStyle"), + "00701502": ("CS", "1", "MPR Thickness Type", "", "MPRThicknessType"), + "00701503": ("FD", "1", "MPR Slab Thickness", "", "MPRSlabThickness"), + "00701505": ("FD", "3", "MPR Top Left Hand Corner", "", "MPRTopLeftHandCorner"), + "00701507": ("FD", "3", "MPR View Width Direction", "", "MPRViewWidthDirection"), + "00701508": ("FD", "1", "MPR View Width", "", "MPRViewWidth"), + "0070150C": ("UL", "1", "Number of Volumetric Curve Points", "", "NumberOfVolumetricCurvePoints"), + "0070150D": ("OD", "1", "Volumetric Curve Points", "", "VolumetricCurvePoints"), + "00701511": ("FD", "3", "MPR View Height Direction", "", "MPRViewHeightDirection"), + "00701512": ("FD", "1", "MPR View Height", "", "MPRViewHeight"), + "00701602": ("CS", "1", "Render Projection", "", "RenderProjection"), + "00701603": ("FD", "3", "Viewpoint Position", "", "ViewpointPosition"), + "00701604": ("FD", "3", "Viewpoint LookAt Point", "", "ViewpointLookAtPoint"), + "00701605": ("FD", "3", "Viewpoint Up Direction", "", "ViewpointUpDirection"), + "00701606": ("FD", "6", "Render Field of View", "", "RenderFieldOfView"), + "00701607": ("FD", "1", "Sampling Step Size", "", "SamplingStepSize"), + "00701701": ("CS", "1", "Shading Style", "", "ShadingStyle"), + "00701702": ("FD", "1", "Ambient Reflection Intensity", "", "AmbientReflectionIntensity"), + "00701703": ("FD", "3", "Light Direction", "", "LightDirection"), + "00701704": ("FD", "1", "Diffuse Reflection Intensity", "", "DiffuseReflectionIntensity"), + "00701705": ("FD", "1", "Specular Reflection Intensity", "", "SpecularReflectionIntensity"), + "00701706": ("FD", "1", "Shininess", "", "Shininess"), + "00701801": ("SQ", "1", "Presentation State Classification Component Sequence", "", "PresentationStateClassificationComponentSequence"), + "00701802": ("CS", "1", "Component Type", "", "ComponentType"), + "00701803": ("SQ", "1", "Component Input Sequence", "", "ComponentInputSequence"), + "00701804": ("US", "1", "Volumetric Presentation Input Index", "", "VolumetricPresentationInputIndex"), + "00701805": ("SQ", "1", "Presentation State Compositor Component Sequence", "", "PresentationStateCompositorComponentSequence"), + "00701806": ("SQ", "1", "Weighting Transfer Function Sequence", "", "WeightingTransferFunctionSequence"), + "00701807": ("US", "3", "Weighting Lookup Table Descriptor", "", "WeightingLookupTableDescriptor"), + "00701808": ("OB", "1", "Weighting Lookup Table Data", "", "WeightingLookupTableData"), + "00701901": ("SQ", "1", "Volumetric Annotation Sequence", "", "VolumetricAnnotationSequence"), + "00701903": ("SQ", "1", "Referenced Structured Context Sequence", "", "ReferencedStructuredContextSequence"), + "00701904": ("UI", "1", "Referenced Content Item", "", "ReferencedContentItem"), + "00701905": ("SQ", "1", "Volumetric Presentation Input Annotation Sequence", "", "VolumetricPresentationInputAnnotationSequence"), + "00701907": ("CS", "1", "Annotation Clipping", "", "AnnotationClipping"), + "00701A01": ("CS", "1", "Presentation Animation Style", "", "PresentationAnimationStyle"), + "00701A03": ("FD", "1", "Recommended Animation Rate", "", "RecommendedAnimationRate"), + "00701A04": ("SQ", "1", "Animation Curve Sequence", "", "AnimationCurveSequence"), + "00701A05": ("FD", "1", "Animation Step Size", "", "AnimationStepSize"), + "00701A06": ("FD", "1", "Swivel Range", "", "SwivelRange"), + "00701A07": ("OD", "1", "Volumetric Curve Up Directions", "", "VolumetricCurveUpDirections"), + "00701A08": ("SQ", "1", "Volume Stream Sequence", "", "VolumeStreamSequence"), + "00701A09": ("LO", "1", "RGBA Transfer Function Description", "", "RGBATransferFunctionDescription"), + "00701B01": ("SQ", "1", "Advanced Blending Sequence", "", "AdvancedBlendingSequence"), + "00701B02": ("US", "1", "Blending Input Number", "", "BlendingInputNumber"), + "00701B03": ("SQ", "1", "Blending Display Input Sequence", "", "BlendingDisplayInputSequence"), + "00701B04": ("SQ", "1", "Blending Display Sequence", "", "BlendingDisplaySequence"), + "00701B06": ("CS", "1", "Blending Mode", "", "BlendingMode"), + "00701B07": ("CS", "1", "Time Series Blending", "", "TimeSeriesBlending"), + "00701B08": ("CS", "1", "Geometry for Display", "", "GeometryForDisplay"), + "00701B11": ("SQ", "1", "Threshold Sequence", "", "ThresholdSequence"), + "00701B12": ("SQ", "1", "Threshold Value Sequence", "", "ThresholdValueSequence"), + "00701B13": ("CS", "1", "Threshold Type", "", "ThresholdType"), + "00701B14": ("FD", "1", "Threshold Value", "", "ThresholdValue"), + "00720002": ("SH", "1", "Hanging Protocol Name", "", "HangingProtocolName"), + "00720004": ("LO", "1", "Hanging Protocol Description", "", "HangingProtocolDescription"), + "00720006": ("CS", "1", "Hanging Protocol Level", "", "HangingProtocolLevel"), + "00720008": ("LO", "1", "Hanging Protocol Creator", "", "HangingProtocolCreator"), + "0072000A": ("DT", "1", "Hanging Protocol Creation DateTime", "", "HangingProtocolCreationDateTime"), + "0072000C": ("SQ", "1", "Hanging Protocol Definition Sequence", "", "HangingProtocolDefinitionSequence"), + "0072000E": ("SQ", "1", "Hanging Protocol User Identification Code Sequence", "", "HangingProtocolUserIdentificationCodeSequence"), + "00720010": ("LO", "1", "Hanging Protocol User Group Name", "", "HangingProtocolUserGroupName"), + "00720012": ("SQ", "1", "Source Hanging Protocol Sequence", "", "SourceHangingProtocolSequence"), + "00720014": ("US", "1", "Number of Priors Referenced", "", "NumberOfPriorsReferenced"), + "00720020": ("SQ", "1", "Image Sets Sequence", "", "ImageSetsSequence"), + "00720022": ("SQ", "1", "Image Set Selector Sequence", "", "ImageSetSelectorSequence"), + "00720024": ("CS", "1", "Image Set Selector Usage Flag", "", "ImageSetSelectorUsageFlag"), + "00720026": ("AT", "1", "Selector Attribute", "", "SelectorAttribute"), + "00720028": ("US", "1", "Selector Value Number", "", "SelectorValueNumber"), + "00720030": ("SQ", "1", "Time Based Image Sets Sequence", "", "TimeBasedImageSetsSequence"), + "00720032": ("US", "1", "Image Set Number", "", "ImageSetNumber"), + "00720034": ("CS", "1", "Image Set Selector Category", "", "ImageSetSelectorCategory"), + "00720038": ("US", "2", "Relative Time", "", "RelativeTime"), + "0072003A": ("CS", "1", "Relative Time Units", "", "RelativeTimeUnits"), + "0072003C": ("SS", "2", "Abstract Prior Value", "", "AbstractPriorValue"), + "0072003E": ("SQ", "1", "Abstract Prior Code Sequence", "", "AbstractPriorCodeSequence"), + "00720040": ("LO", "1", "Image Set Label", "", "ImageSetLabel"), + "00720050": ("CS", "1", "Selector Attribute VR", "", "SelectorAttributeVR"), + "00720052": ("AT", "1-n", "Selector Sequence Pointer", "", "SelectorSequencePointer"), + "00720054": ("LO", "1-n", "Selector Sequence Pointer Private Creator", "", "SelectorSequencePointerPrivateCreator"), + "00720056": ("LO", "1", "Selector Attribute Private Creator", "", "SelectorAttributePrivateCreator"), + "0072005E": ("AE", "1-n", "Selector AE Value", "", "SelectorAEValue"), + "0072005F": ("AS", "1-n", "Selector AS Value", "", "SelectorASValue"), + "00720060": ("AT", "1-n", "Selector AT Value", "", "SelectorATValue"), + "00720061": ("DA", "1-n", "Selector DA Value", "", "SelectorDAValue"), + "00720062": ("CS", "1-n", "Selector CS Value", "", "SelectorCSValue"), + "00720063": ("DT", "1-n", "Selector DT Value", "", "SelectorDTValue"), + "00720064": ("IS", "1-n", "Selector IS Value", "", "SelectorISValue"), + "00720065": ("OB", "1", "Selector OB Value", "", "SelectorOBValue"), + "00720066": ("LO", "1-n", "Selector LO Value", "", "SelectorLOValue"), + "00720067": ("OF", "1", "Selector OF Value", "", "SelectorOFValue"), + "00720068": ("LT", "1", "Selector LT Value", "", "SelectorLTValue"), + "00720069": ("OW", "1", "Selector OW Value", "", "SelectorOWValue"), + "0072006A": ("PN", "1-n", "Selector PN Value", "", "SelectorPNValue"), + "0072006B": ("TM", "1-n", "Selector TM Value", "", "SelectorTMValue"), + "0072006C": ("SH", "1-n", "Selector SH Value", "", "SelectorSHValue"), + "0072006D": ("UN", "1", "Selector UN Value", "", "SelectorUNValue"), + "0072006E": ("ST", "1", "Selector ST Value", "", "SelectorSTValue"), + "0072006F": ("UC", "1-n", "Selector UC Value", "", "SelectorUCValue"), + "00720070": ("UT", "1", "Selector UT Value", "", "SelectorUTValue"), + "00720071": ("UR", "1", "Selector UR Value", "", "SelectorURValue"), + "00720072": ("DS", "1-n", "Selector DS Value", "", "SelectorDSValue"), + "00720073": ("OD", "1", "Selector OD Value", "", "SelectorODValue"), + "00720074": ("FD", "1-n", "Selector FD Value", "", "SelectorFDValue"), + "00720075": ("OL", "1", "Selector OL Value", "", "SelectorOLValue"), + "00720076": ("FL", "1-n", "Selector FL Value", "", "SelectorFLValue"), + "00720078": ("UL", "1-n", "Selector UL Value", "", "SelectorULValue"), + "0072007A": ("US", "1-n", "Selector US Value", "", "SelectorUSValue"), + "0072007C": ("SL", "1-n", "Selector SL Value", "", "SelectorSLValue"), + "0072007E": ("SS", "1-n", "Selector SS Value", "", "SelectorSSValue"), + "0072007F": ("UI", "1-n", "Selector UI Value", "", "SelectorUIValue"), + "00720080": ("SQ", "1", "Selector Code Sequence Value", "", "SelectorCodeSequenceValue"), + "00720100": ("US", "1", "Number of Screens", "", "NumberOfScreens"), + "00720102": ("SQ", "1", "Nominal Screen Definition Sequence", "", "NominalScreenDefinitionSequence"), + "00720104": ("US", "1", "Number of Vertical Pixels", "", "NumberOfVerticalPixels"), + "00720106": ("US", "1", "Number of Horizontal Pixels", "", "NumberOfHorizontalPixels"), + "00720108": ("FD", "4", "Display Environment Spatial Position", "", "DisplayEnvironmentSpatialPosition"), + "0072010A": ("US", "1", "Screen Minimum Grayscale Bit Depth", "", "ScreenMinimumGrayscaleBitDepth"), + "0072010C": ("US", "1", "Screen Minimum Color Bit Depth", "", "ScreenMinimumColorBitDepth"), + "0072010E": ("US", "1", "Application Maximum Repaint Time", "", "ApplicationMaximumRepaintTime"), + "00720200": ("SQ", "1", "Display Sets Sequence", "", "DisplaySetsSequence"), + "00720202": ("US", "1", "Display Set Number", "", "DisplaySetNumber"), + "00720203": ("LO", "1", "Display Set Label", "", "DisplaySetLabel"), + "00720204": ("US", "1", "Display Set Presentation Group", "", "DisplaySetPresentationGroup"), + "00720206": ("LO", "1", "Display Set Presentation Group Description", "", "DisplaySetPresentationGroupDescription"), + "00720208": ("CS", "1", "Partial Data Display Handling", "", "PartialDataDisplayHandling"), + "00720210": ("SQ", "1", "Synchronized Scrolling Sequence", "", "SynchronizedScrollingSequence"), + "00720212": ("US", "2-n", "Display Set Scrolling Group", "", "DisplaySetScrollingGroup"), + "00720214": ("SQ", "1", "Navigation Indicator Sequence", "", "NavigationIndicatorSequence"), + "00720216": ("US", "1", "Navigation Display Set", "", "NavigationDisplaySet"), + "00720218": ("US", "1-n", "Reference Display Sets", "", "ReferenceDisplaySets"), + "00720300": ("SQ", "1", "Image Boxes Sequence", "", "ImageBoxesSequence"), + "00720302": ("US", "1", "Image Box Number", "", "ImageBoxNumber"), + "00720304": ("CS", "1", "Image Box Layout Type", "", "ImageBoxLayoutType"), + "00720306": ("US", "1", "Image Box Tile Horizontal Dimension", "", "ImageBoxTileHorizontalDimension"), + "00720308": ("US", "1", "Image Box Tile Vertical Dimension", "", "ImageBoxTileVerticalDimension"), + "00720310": ("CS", "1", "Image Box Scroll Direction", "", "ImageBoxScrollDirection"), + "00720312": ("CS", "1", "Image Box Small Scroll Type", "", "ImageBoxSmallScrollType"), + "00720314": ("US", "1", "Image Box Small Scroll Amount", "", "ImageBoxSmallScrollAmount"), + "00720316": ("CS", "1", "Image Box Large Scroll Type", "", "ImageBoxLargeScrollType"), + "00720318": ("US", "1", "Image Box Large Scroll Amount", "", "ImageBoxLargeScrollAmount"), + "00720320": ("US", "1", "Image Box Overlap Priority", "", "ImageBoxOverlapPriority"), + "00720330": ("FD", "1", "Cine Relative to Real-Time", "", "CineRelativeToRealTime"), + "00720400": ("SQ", "1", "Filter Operations Sequence", "", "FilterOperationsSequence"), + "00720402": ("CS", "1", "Filter-by Category", "", "FilterByCategory"), + "00720404": ("CS", "1", "Filter-by Attribute Presence", "", "FilterByAttributePresence"), + "00720406": ("CS", "1", "Filter-by Operator", "", "FilterByOperator"), + "00720420": ("US", "3", "Structured Display Background CIELab Value", "", "StructuredDisplayBackgroundCIELabValue"), + "00720421": ("US", "3", "Empty Image Box CIELab Value", "", "EmptyImageBoxCIELabValue"), + "00720422": ("SQ", "1", "Structured Display Image Box Sequence", "", "StructuredDisplayImageBoxSequence"), + "00720424": ("SQ", "1", "Structured Display Text Box Sequence", "", "StructuredDisplayTextBoxSequence"), + "00720427": ("SQ", "1", "Referenced First Frame Sequence", "", "ReferencedFirstFrameSequence"), + "00720430": ("SQ", "1", "Image Box Synchronization Sequence", "", "ImageBoxSynchronizationSequence"), + "00720432": ("US", "2-n", "Synchronized Image Box List", "", "SynchronizedImageBoxList"), + "00720434": ("CS", "1", "Type of Synchronization", "", "TypeOfSynchronization"), + "00720500": ("CS", "1", "Blending Operation Type", "", "BlendingOperationType"), + "00720510": ("CS", "1", "Reformatting Operation Type", "", "ReformattingOperationType"), + "00720512": ("FD", "1", "Reformatting Thickness", "", "ReformattingThickness"), + "00720514": ("FD", "1", "Reformatting Interval", "", "ReformattingInterval"), + "00720516": ("CS", "1", "Reformatting Operation Initial View Direction", "", "ReformattingOperationInitialViewDirection"), + "00720520": ("CS", "1-n", "3D Rendering Type", "", "ThreeDRenderingType"), + "00720600": ("SQ", "1", "Sorting Operations Sequence", "", "SortingOperationsSequence"), + "00720602": ("CS", "1", "Sort-by Category", "", "SortByCategory"), + "00720604": ("CS", "1", "Sorting Direction", "", "SortingDirection"), + "00720700": ("CS", "2", "Display Set Patient Orientation", "", "DisplaySetPatientOrientation"), + "00720702": ("CS", "1", "VOI Type", "", "VOIType"), + "00720704": ("CS", "1", "Pseudo-Color Type", "", "PseudoColorType"), + "00720705": ("SQ", "1", "Pseudo-Color Palette Instance Reference Sequence", "", "PseudoColorPaletteInstanceReferenceSequence"), + "00720706": ("CS", "1", "Show Grayscale Inverted", "", "ShowGrayscaleInverted"), + "00720710": ("CS", "1", "Show Image True Size Flag", "", "ShowImageTrueSizeFlag"), + "00720712": ("CS", "1", "Show Graphic Annotation Flag", "", "ShowGraphicAnnotationFlag"), + "00720714": ("CS", "1", "Show Patient Demographics Flag", "", "ShowPatientDemographicsFlag"), + "00720716": ("CS", "1", "Show Acquisition Techniques Flag", "", "ShowAcquisitionTechniquesFlag"), + "00720717": ("CS", "1", "Display Set Horizontal Justification", "", "DisplaySetHorizontalJustification"), + "00720718": ("CS", "1", "Display Set Vertical Justification", "", "DisplaySetVerticalJustification"), + "00740120": ("FD", "1", "Continuation Start Meterset", "", "ContinuationStartMeterset"), + "00740121": ("FD", "1", "Continuation End Meterset", "", "ContinuationEndMeterset"), + "00741000": ("CS", "1", "Procedure Step State", "", "ProcedureStepState"), + "00741002": ("SQ", "1", "Procedure Step Progress Information Sequence", "", "ProcedureStepProgressInformationSequence"), + "00741004": ("DS", "1", "Procedure Step Progress", "", "ProcedureStepProgress"), + "00741006": ("ST", "1", "Procedure Step Progress Description", "", "ProcedureStepProgressDescription"), + "00741007": ("SQ", "1", "Procedure Step Progress Parameters Sequence", "", "ProcedureStepProgressParametersSequence"), + "00741008": ("SQ", "1", "Procedure Step Communications URI Sequence", "", "ProcedureStepCommunicationsURISequence"), + "0074100A": ("UR", "1", "Contact URI", "", "ContactURI"), + "0074100C": ("LO", "1", "Contact Display Name", "", "ContactDisplayName"), + "0074100E": ("SQ", "1", "Procedure Step Discontinuation Reason Code Sequence", "", "ProcedureStepDiscontinuationReasonCodeSequence"), + "00741020": ("SQ", "1", "Beam Task Sequence", "", "BeamTaskSequence"), + "00741022": ("CS", "1", "Beam Task Type", "", "BeamTaskType"), + "00741024": ("IS", "1", "Beam Order Index (Trial)", "Retired", "BeamOrderIndexTrial"), + "00741025": ("CS", "1", "Autosequence Flag", "", "AutosequenceFlag"), + "00741026": ("FD", "1", "Table Top Vertical Adjusted Position", "", "TableTopVerticalAdjustedPosition"), + "00741027": ("FD", "1", "Table Top Longitudinal Adjusted Position", "", "TableTopLongitudinalAdjustedPosition"), + "00741028": ("FD", "1", "Table Top Lateral Adjusted Position", "", "TableTopLateralAdjustedPosition"), + "0074102A": ("FD", "1", "Patient Support Adjusted Angle", "", "PatientSupportAdjustedAngle"), + "0074102B": ("FD", "1", "Table Top Eccentric Adjusted Angle", "", "TableTopEccentricAdjustedAngle"), + "0074102C": ("FD", "1", "Table Top Pitch Adjusted Angle", "", "TableTopPitchAdjustedAngle"), + "0074102D": ("FD", "1", "Table Top Roll Adjusted Angle", "", "TableTopRollAdjustedAngle"), + "00741030": ("SQ", "1", "Delivery Verification Image Sequence", "", "DeliveryVerificationImageSequence"), + "00741032": ("CS", "1", "Verification Image Timing", "", "VerificationImageTiming"), + "00741034": ("CS", "1", "Double Exposure Flag", "", "DoubleExposureFlag"), + "00741036": ("CS", "1", "Double Exposure Ordering", "", "DoubleExposureOrdering"), + "00741038": ("DS", "1", "Double Exposure Meterset (Trial)", "Retired", "DoubleExposureMetersetTrial"), + "0074103A": ("DS", "4", "Double Exposure Field Delta (Trial)", "Retired", "DoubleExposureFieldDeltaTrial"), + "00741040": ("SQ", "1", "Related Reference RT Image Sequence", "", "RelatedReferenceRTImageSequence"), + "00741042": ("SQ", "1", "General Machine Verification Sequence", "", "GeneralMachineVerificationSequence"), + "00741044": ("SQ", "1", "Conventional Machine Verification Sequence", "", "ConventionalMachineVerificationSequence"), + "00741046": ("SQ", "1", "Ion Machine Verification Sequence", "", "IonMachineVerificationSequence"), + "00741048": ("SQ", "1", "Failed Attributes Sequence", "", "FailedAttributesSequence"), + "0074104A": ("SQ", "1", "Overridden Attributes Sequence", "", "OverriddenAttributesSequence"), + "0074104C": ("SQ", "1", "Conventional Control Point Verification Sequence", "", "ConventionalControlPointVerificationSequence"), + "0074104E": ("SQ", "1", "Ion Control Point Verification Sequence", "", "IonControlPointVerificationSequence"), + "00741050": ("SQ", "1", "Attribute Occurrence Sequence", "", "AttributeOccurrenceSequence"), + "00741052": ("AT", "1", "Attribute Occurrence Pointer", "", "AttributeOccurrencePointer"), + "00741054": ("UL", "1", "Attribute Item Selector", "", "AttributeItemSelector"), + "00741056": ("LO", "1", "Attribute Occurrence Private Creator", "", "AttributeOccurrencePrivateCreator"), + "00741057": ("IS", "1-n", "Selector Sequence Pointer Items", "", "SelectorSequencePointerItems"), + "00741200": ("CS", "1", "Scheduled Procedure Step Priority", "", "ScheduledProcedureStepPriority"), + "00741202": ("LO", "1", "Worklist Label", "", "WorklistLabel"), + "00741204": ("LO", "1", "Procedure Step Label", "", "ProcedureStepLabel"), + "00741210": ("SQ", "1", "Scheduled Processing Parameters Sequence", "", "ScheduledProcessingParametersSequence"), + "00741212": ("SQ", "1", "Performed Processing Parameters Sequence", "", "PerformedProcessingParametersSequence"), + "00741216": ("SQ", "1", "Unified Procedure Step Performed Procedure Sequence", "", "UnifiedProcedureStepPerformedProcedureSequence"), + "00741220": ("SQ", "1", "Related Procedure Step Sequence", "Retired", "RelatedProcedureStepSequence"), + "00741222": ("LO", "1", "Procedure Step Relationship Type", "Retired", "ProcedureStepRelationshipType"), + "00741224": ("SQ", "1", "Replaced Procedure Step Sequence", "", "ReplacedProcedureStepSequence"), + "00741230": ("LO", "1", "Deletion Lock", "", "DeletionLock"), + "00741234": ("AE", "1", "Receiving AE", "", "ReceivingAE"), + "00741236": ("AE", "1", "Requesting AE", "", "RequestingAE"), + "00741238": ("LT", "1", "Reason for Cancellation", "", "ReasonForCancellation"), + "00741242": ("CS", "1", "SCP Status", "", "SCPStatus"), + "00741244": ("CS", "1", "Subscription List Status", "", "SubscriptionListStatus"), + "00741246": ("CS", "1", "Unified Procedure Step List Status", "", "UnifiedProcedureStepListStatus"), + "00741324": ("UL", "1", "Beam Order Index", "", "BeamOrderIndex"), + "00741338": ("FD", "1", "Double Exposure Meterset", "", "DoubleExposureMeterset"), + "0074133A": ("FD", "4", "Double Exposure Field Delta", "", "DoubleExposureFieldDelta"), + "00741401": ("SQ", "1", "Brachy Task Sequence", "", "BrachyTaskSequence"), + "00741402": ("DS", "1", "Continuation Start Total Reference Air Kerma", "", "ContinuationStartTotalReferenceAirKerma"), + "00741403": ("DS", "1", "Continuation End Total Reference Air Kerma", "", "ContinuationEndTotalReferenceAirKerma"), + "00741404": ("IS", "1", "Continuation Pulse Number", "", "ContinuationPulseNumber"), + "00741405": ("SQ", "1", "Channel Delivery Order Sequence", "", "ChannelDeliveryOrderSequence"), + "00741406": ("IS", "1", "Referenced Channel Number", "", "ReferencedChannelNumber"), + "00741407": ("DS", "1", "Start Cumulative Time Weight", "", "StartCumulativeTimeWeight"), + "00741408": ("DS", "1", "End Cumulative Time Weight", "", "EndCumulativeTimeWeight"), + "00741409": ("SQ", "1", "Omitted Channel Sequence", "", "OmittedChannelSequence"), + "0074140A": ("CS", "1", "Reason for Channel Omission", "", "ReasonForChannelOmission"), + "0074140B": ("LO", "1", "Reason for Channel Omission Description", "", "ReasonForChannelOmissionDescription"), + "0074140C": ("IS", "1", "Channel Delivery Order Index", "", "ChannelDeliveryOrderIndex"), + "0074140D": ("SQ", "1", "Channel Delivery Continuation Sequence", "", "ChannelDeliveryContinuationSequence"), + "0074140E": ("SQ", "1", "Omitted Application Setup Sequence", "", "OmittedApplicationSetupSequence"), + "00760001": ("LO", "1", "Implant Assembly Template Name", "", "ImplantAssemblyTemplateName"), + "00760003": ("LO", "1", "Implant Assembly Template Issuer", "", "ImplantAssemblyTemplateIssuer"), + "00760006": ("LO", "1", "Implant Assembly Template Version", "", "ImplantAssemblyTemplateVersion"), + "00760008": ("SQ", "1", "Replaced Implant Assembly Template Sequence", "", "ReplacedImplantAssemblyTemplateSequence"), + "0076000A": ("CS", "1", "Implant Assembly Template Type", "", "ImplantAssemblyTemplateType"), + "0076000C": ("SQ", "1", "Original Implant Assembly Template Sequence", "", "OriginalImplantAssemblyTemplateSequence"), + "0076000E": ("SQ", "1", "Derivation Implant Assembly Template Sequence", "", "DerivationImplantAssemblyTemplateSequence"), + "00760010": ("SQ", "1", "Implant Assembly Template Target Anatomy Sequence", "", "ImplantAssemblyTemplateTargetAnatomySequence"), + "00760020": ("SQ", "1", "Procedure Type Code Sequence", "", "ProcedureTypeCodeSequence"), + "00760030": ("LO", "1", "Surgical Technique", "", "SurgicalTechnique"), + "00760032": ("SQ", "1", "Component Types Sequence", "", "ComponentTypesSequence"), + "00760034": ("SQ", "1", "Component Type Code Sequence", "", "ComponentTypeCodeSequence"), + "00760036": ("CS", "1", "Exclusive Component Type", "", "ExclusiveComponentType"), + "00760038": ("CS", "1", "Mandatory Component Type", "", "MandatoryComponentType"), + "00760040": ("SQ", "1", "Component Sequence", "", "ComponentSequence"), + "00760055": ("US", "1", "Component ID", "", "ComponentID"), + "00760060": ("SQ", "1", "Component Assembly Sequence", "", "ComponentAssemblySequence"), + "00760070": ("US", "1", "Component 1 Referenced ID", "", "Component1ReferencedID"), + "00760080": ("US", "1", "Component 1 Referenced Mating Feature Set ID", "", "Component1ReferencedMatingFeatureSetID"), + "00760090": ("US", "1", "Component 1 Referenced Mating Feature ID", "", "Component1ReferencedMatingFeatureID"), + "007600A0": ("US", "1", "Component 2 Referenced ID", "", "Component2ReferencedID"), + "007600B0": ("US", "1", "Component 2 Referenced Mating Feature Set ID", "", "Component2ReferencedMatingFeatureSetID"), + "007600C0": ("US", "1", "Component 2 Referenced Mating Feature ID", "", "Component2ReferencedMatingFeatureID"), + "00780001": ("LO", "1", "Implant Template Group Name", "", "ImplantTemplateGroupName"), + "00780010": ("ST", "1", "Implant Template Group Description", "", "ImplantTemplateGroupDescription"), + "00780020": ("LO", "1", "Implant Template Group Issuer", "", "ImplantTemplateGroupIssuer"), + "00780024": ("LO", "1", "Implant Template Group Version", "", "ImplantTemplateGroupVersion"), + "00780026": ("SQ", "1", "Replaced Implant Template Group Sequence", "", "ReplacedImplantTemplateGroupSequence"), + "00780028": ("SQ", "1", "Implant Template Group Target Anatomy Sequence", "", "ImplantTemplateGroupTargetAnatomySequence"), + "0078002A": ("SQ", "1", "Implant Template Group Members Sequence", "", "ImplantTemplateGroupMembersSequence"), + "0078002E": ("US", "1", "Implant Template Group Member ID", "", "ImplantTemplateGroupMemberID"), + "00780050": ("FD", "3", "3D Implant Template Group Member Matching Point", "", "ThreeDImplantTemplateGroupMemberMatchingPoint"), + "00780060": ("FD", "9", "3D Implant Template Group Member Matching Axes", "", "ThreeDImplantTemplateGroupMemberMatchingAxes"), + "00780070": ("SQ", "1", "Implant Template Group Member Matching 2D Coordinates Sequence", "", "ImplantTemplateGroupMemberMatching2DCoordinatesSequence"), + "00780090": ("FD", "2", "2D Implant Template Group Member Matching Point", "", "TwoDImplantTemplateGroupMemberMatchingPoint"), + "007800A0": ("FD", "4", "2D Implant Template Group Member Matching Axes", "", "TwoDImplantTemplateGroupMemberMatchingAxes"), + "007800B0": ("SQ", "1", "Implant Template Group Variation Dimension Sequence", "", "ImplantTemplateGroupVariationDimensionSequence"), + "007800B2": ("LO", "1", "Implant Template Group Variation Dimension Name", "", "ImplantTemplateGroupVariationDimensionName"), + "007800B4": ("SQ", "1", "Implant Template Group Variation Dimension Rank Sequence", "", "ImplantTemplateGroupVariationDimensionRankSequence"), + "007800B6": ("US", "1", "Referenced Implant Template Group Member ID", "", "ReferencedImplantTemplateGroupMemberID"), + "007800B8": ("US", "1", "Implant Template Group Variation Dimension Rank", "", "ImplantTemplateGroupVariationDimensionRank"), + "00800001": ("SQ", "1", "Surface Scan Acquisition Type Code Sequence", "", "SurfaceScanAcquisitionTypeCodeSequence"), + "00800002": ("SQ", "1", "Surface Scan Mode Code Sequence", "", "SurfaceScanModeCodeSequence"), + "00800003": ("SQ", "1", "Registration Method Code Sequence", "", "RegistrationMethodCodeSequence"), + "00800004": ("FD", "1", "Shot Duration Time", "", "ShotDurationTime"), + "00800005": ("FD", "1", "Shot Offset Time", "", "ShotOffsetTime"), + "00800006": ("US", "1-n", "Surface Point Presentation Value Data", "", "SurfacePointPresentationValueData"), + "00800007": ("US", "3-3n", "Surface Point Color CIELab Value Data", "", "SurfacePointColorCIELabValueData"), + "00800008": ("SQ", "1", "UV Mapping Sequence", "", "UVMappingSequence"), + "00800009": ("SH", "1", "Texture Label", "", "TextureLabel"), + "00800010": ("OF", "1", "U Value Data", "", "UValueData"), + "00800011": ("OF", "1", "V Value Data", "", "VValueData"), + "00800012": ("SQ", "1", "Referenced Texture Sequence", "", "ReferencedTextureSequence"), + "00800013": ("SQ", "1", "Referenced Surface Data Sequence", "", "ReferencedSurfaceDataSequence"), + "00820001": ("CS", "1", "Assessment Summary", "", "AssessmentSummary"), + "00820003": ("UT", "1", "Assessment Summary Description", "", "AssessmentSummaryDescription"), + "00820004": ("SQ", "1", "Assessed SOP Instance Sequence", "", "AssessedSOPInstanceSequence"), + "00820005": ("SQ", "1", "Referenced Comparison SOP Instance Sequence", "", "ReferencedComparisonSOPInstanceSequence"), + "00820006": ("UL", "1", "Number of Assessment Observations", "", "NumberOfAssessmentObservations"), + "00820007": ("SQ", "1", "Assessment Observations Sequence", "", "AssessmentObservationsSequence"), + "00820008": ("CS", "1", "Observation Significance", "", "ObservationSignificance"), + "0082000A": ("UT", "1", "Observation Description", "", "ObservationDescription"), + "0082000C": ("SQ", "1", "Structured Constraint Observation Sequence", "", "StructuredConstraintObservationSequence"), + "00820010": ("SQ", "1", "Assessed Attribute Value Sequence", "", "AssessedAttributeValueSequence"), + "00820016": ("LO", "1", "Assessment Set ID", "", "AssessmentSetID"), + "00820017": ("SQ", "1", "Assessment Requester Sequence", "", "AssessmentRequesterSequence"), + "00820018": ("LO", "1", "Selector Attribute Name", "", "SelectorAttributeName"), + "00820019": ("LO", "1", "Selector Attribute Keyword", "", "SelectorAttributeKeyword"), + "00820021": ("SQ", "1", "Assessment Type Code Sequence", "", "AssessmentTypeCodeSequence"), + "00820022": ("SQ", "1", "Observation Basis Code Sequence", "", "ObservationBasisCodeSequence"), + "00820023": ("LO", "1", "Assessment Label", "", "AssessmentLabel"), + "00820032": ("CS", "1", "Constraint Type", "", "ConstraintType"), + "00820033": ("UT", "1", "Specification Selection Guidance", "", "SpecificationSelectionGuidance"), + "00820034": ("SQ", "1", "Constraint Value Sequence", "", "ConstraintValueSequence"), + "00820035": ("SQ", "1", "Recommended Default Value Sequence", "", "RecommendedDefaultValueSequence"), + "00820036": ("CS", "1", "Constraint Violation Significance", "", "ConstraintViolationSignificance"), + "00820037": ("UT", "1", "Constraint Violation Condition", "", "ConstraintViolationCondition"), + "00820038": ("CS", "1", "Modifiable Constraint Flag", "", "ModifiableConstraintFlag"), + "00880130": ("SH", "1", "Storage Media File-set ID", "", "StorageMediaFileSetID"), + "00880140": ("UI", "1", "Storage Media File-set UID", "", "StorageMediaFileSetUID"), + "00880200": ("SQ", "1", "Icon Image Sequence", "", "IconImageSequence"), + "00880904": ("LO", "1", "Topic Title", "Retired", "TopicTitle"), + "00880906": ("ST", "1", "Topic Subject", "Retired", "TopicSubject"), + "00880910": ("LO", "1", "Topic Author", "Retired", "TopicAuthor"), + "00880912": ("LO", "1-32", "Topic Keywords", "Retired", "TopicKeywords"), + "01000410": ("CS", "1", "SOP Instance Status", "", "SOPInstanceStatus"), + "01000420": ("DT", "1", "SOP Authorization DateTime", "", "SOPAuthorizationDateTime"), + "01000424": ("LT", "1", "SOP Authorization Comment", "", "SOPAuthorizationComment"), + "01000426": ("LO", "1", "Authorization Equipment Certification Number", "", "AuthorizationEquipmentCertificationNumber"), + "04000005": ("US", "1", "MAC ID Number", "", "MACIDNumber"), + "04000010": ("UI", "1", "MAC Calculation Transfer Syntax UID", "", "MACCalculationTransferSyntaxUID"), + "04000015": ("CS", "1", "MAC Algorithm", "", "MACAlgorithm"), + "04000020": ("AT", "1-n", "Data Elements Signed", "", "DataElementsSigned"), + "04000100": ("UI", "1", "Digital Signature UID", "", "DigitalSignatureUID"), + "04000105": ("DT", "1", "Digital Signature DateTime", "", "DigitalSignatureDateTime"), + "04000110": ("CS", "1", "Certificate Type", "", "CertificateType"), + "04000115": ("OB", "1", "Certificate of Signer", "", "CertificateOfSigner"), + "04000120": ("OB", "1", "Signature", "", "Signature"), + "04000305": ("CS", "1", "Certified Timestamp Type", "", "CertifiedTimestampType"), + "04000310": ("OB", "1", "Certified Timestamp", "", "CertifiedTimestamp"), + "04000315": ("FL", "1", "", "Retired", ""), + "04000401": ("SQ", "1", "Digital Signature Purpose Code Sequence", "", "DigitalSignaturePurposeCodeSequence"), + "04000402": ("SQ", "1", "Referenced Digital Signature Sequence", "", "ReferencedDigitalSignatureSequence"), + "04000403": ("SQ", "1", "Referenced SOP Instance MAC Sequence", "", "ReferencedSOPInstanceMACSequence"), + "04000404": ("OB", "1", "MAC", "", "MAC"), + "04000500": ("SQ", "1", "Encrypted Attributes Sequence", "", "EncryptedAttributesSequence"), + "04000510": ("UI", "1", "Encrypted Content Transfer Syntax UID", "", "EncryptedContentTransferSyntaxUID"), + "04000520": ("OB", "1", "Encrypted Content", "", "EncryptedContent"), + "04000550": ("SQ", "1", "Modified Attributes Sequence", "", "ModifiedAttributesSequence"), + "04000561": ("SQ", "1", "Original Attributes Sequence", "", "OriginalAttributesSequence"), + "04000562": ("DT", "1", "Attribute Modification DateTime", "", "AttributeModificationDateTime"), + "04000563": ("LO", "1", "Modifying System", "", "ModifyingSystem"), + "04000564": ("LO", "1", "Source of Previous Values", "", "SourceOfPreviousValues"), + "04000565": ("CS", "1", "Reason for the Attribute Modification", "", "ReasonForTheAttributeModification"), + "04000600": ("CS", "1", "Instance Origin Status", "", "InstanceOriginStatus"), + "20000010": ("IS", "1", "Number of Copies", "", "NumberOfCopies"), + "2000001E": ("SQ", "1", "Printer Configuration Sequence", "", "PrinterConfigurationSequence"), + "20000020": ("CS", "1", "Print Priority", "", "PrintPriority"), + "20000030": ("CS", "1", "Medium Type", "", "MediumType"), + "20000040": ("CS", "1", "Film Destination", "", "FilmDestination"), + "20000050": ("LO", "1", "Film Session Label", "", "FilmSessionLabel"), + "20000060": ("IS", "1", "Memory Allocation", "", "MemoryAllocation"), + "20000061": ("IS", "1", "Maximum Memory Allocation", "", "MaximumMemoryAllocation"), + "20000062": ("CS", "1", "Color Image Printing Flag", "Retired", "ColorImagePrintingFlag"), + "20000063": ("CS", "1", "Collation Flag", "Retired", "CollationFlag"), + "20000065": ("CS", "1", "Annotation Flag", "Retired", "AnnotationFlag"), + "20000067": ("CS", "1", "Image Overlay Flag", "Retired", "ImageOverlayFlag"), + "20000069": ("CS", "1", "Presentation LUT Flag", "Retired", "PresentationLUTFlag"), + "2000006A": ("CS", "1", "Image Box Presentation LUT Flag", "Retired", "ImageBoxPresentationLUTFlag"), + "200000A0": ("US", "1", "Memory Bit Depth", "", "MemoryBitDepth"), + "200000A1": ("US", "1", "Printing Bit Depth", "", "PrintingBitDepth"), + "200000A2": ("SQ", "1", "Media Installed Sequence", "", "MediaInstalledSequence"), + "200000A4": ("SQ", "1", "Other Media Available Sequence", "", "OtherMediaAvailableSequence"), + "200000A8": ("SQ", "1", "Supported Image Display Formats Sequence", "", "SupportedImageDisplayFormatsSequence"), + "20000500": ("SQ", "1", "Referenced Film Box Sequence", "", "ReferencedFilmBoxSequence"), + "20000510": ("SQ", "1", "Referenced Stored Print Sequence", "Retired", "ReferencedStoredPrintSequence"), + "20100010": ("ST", "1", "Image Display Format", "", "ImageDisplayFormat"), + "20100030": ("CS", "1", "Annotation Display Format ID", "", "AnnotationDisplayFormatID"), + "20100040": ("CS", "1", "Film Orientation", "", "FilmOrientation"), + "20100050": ("CS", "1", "Film Size ID", "", "FilmSizeID"), + "20100052": ("CS", "1", "Printer Resolution ID", "", "PrinterResolutionID"), + "20100054": ("CS", "1", "Default Printer Resolution ID", "", "DefaultPrinterResolutionID"), + "20100060": ("CS", "1", "Magnification Type", "", "MagnificationType"), + "20100080": ("CS", "1", "Smoothing Type", "", "SmoothingType"), + "201000A6": ("CS", "1", "Default Magnification Type", "", "DefaultMagnificationType"), + "201000A7": ("CS", "1-n", "Other Magnification Types Available", "", "OtherMagnificationTypesAvailable"), + "201000A8": ("CS", "1", "Default Smoothing Type", "", "DefaultSmoothingType"), + "201000A9": ("CS", "1-n", "Other Smoothing Types Available", "", "OtherSmoothingTypesAvailable"), + "20100100": ("CS", "1", "Border Density", "", "BorderDensity"), + "20100110": ("CS", "1", "Empty Image Density", "", "EmptyImageDensity"), + "20100120": ("US", "1", "Min Density", "", "MinDensity"), + "20100130": ("US", "1", "Max Density", "", "MaxDensity"), + "20100140": ("CS", "1", "Trim", "", "Trim"), + "20100150": ("ST", "1", "Configuration Information", "", "ConfigurationInformation"), + "20100152": ("LT", "1", "Configuration Information Description", "", "ConfigurationInformationDescription"), + "20100154": ("IS", "1", "Maximum Collated Films", "", "MaximumCollatedFilms"), + "2010015E": ("US", "1", "Illumination", "", "Illumination"), + "20100160": ("US", "1", "Reflected Ambient Light", "", "ReflectedAmbientLight"), + "20100376": ("DS", "2", "Printer Pixel Spacing", "", "PrinterPixelSpacing"), + "20100500": ("SQ", "1", "Referenced Film Session Sequence", "", "ReferencedFilmSessionSequence"), + "20100510": ("SQ", "1", "Referenced Image Box Sequence", "", "ReferencedImageBoxSequence"), + "20100520": ("SQ", "1", "Referenced Basic Annotation Box Sequence", "", "ReferencedBasicAnnotationBoxSequence"), + "20200010": ("US", "1", "Image Box Position", "", "ImageBoxPosition"), + "20200020": ("CS", "1", "Polarity", "", "Polarity"), + "20200030": ("DS", "1", "Requested Image Size", "", "RequestedImageSize"), + "20200040": ("CS", "1", "Requested Decimate/Crop Behavior", "", "RequestedDecimateCropBehavior"), + "20200050": ("CS", "1", "Requested Resolution ID", "", "RequestedResolutionID"), + "202000A0": ("CS", "1", "Requested Image Size Flag", "", "RequestedImageSizeFlag"), + "202000A2": ("CS", "1", "Decimate/Crop Result", "", "DecimateCropResult"), + "20200110": ("SQ", "1", "Basic Grayscale Image Sequence", "", "BasicGrayscaleImageSequence"), + "20200111": ("SQ", "1", "Basic Color Image Sequence", "", "BasicColorImageSequence"), + "20200130": ("SQ", "1", "Referenced Image Overlay Box Sequence", "Retired", "ReferencedImageOverlayBoxSequence"), + "20200140": ("SQ", "1", "Referenced VOI LUT Box Sequence", "Retired", "ReferencedVOILUTBoxSequence"), + "20300010": ("US", "1", "Annotation Position", "", "AnnotationPosition"), + "20300020": ("LO", "1", "Text String", "", "TextString"), + "20400010": ("SQ", "1", "Referenced Overlay Plane Sequence", "Retired", "ReferencedOverlayPlaneSequence"), + "20400011": ("US", "1-99", "Referenced Overlay Plane Groups", "Retired", "ReferencedOverlayPlaneGroups"), + "20400020": ("SQ", "1", "Overlay Pixel Data Sequence", "Retired", "OverlayPixelDataSequence"), + "20400060": ("CS", "1", "Overlay Magnification Type", "Retired", "OverlayMagnificationType"), + "20400070": ("CS", "1", "Overlay Smoothing Type", "Retired", "OverlaySmoothingType"), + "20400072": ("CS", "1", "Overlay or Image Magnification", "Retired", "OverlayOrImageMagnification"), + "20400074": ("US", "1", "Magnify to Number of Columns", "Retired", "MagnifyToNumberOfColumns"), + "20400080": ("CS", "1", "Overlay Foreground Density", "Retired", "OverlayForegroundDensity"), + "20400082": ("CS", "1", "Overlay Background Density", "Retired", "OverlayBackgroundDensity"), + "20400090": ("CS", "1", "Overlay Mode", "Retired", "OverlayMode"), + "20400100": ("CS", "1", "Threshold Density", "Retired", "ThresholdDensity"), + "20400500": ("SQ", "1", "Referenced Image Box Sequence (Retired)", "Retired", "ReferencedImageBoxSequenceRetired"), + "20500010": ("SQ", "1", "Presentation LUT Sequence", "", "PresentationLUTSequence"), + "20500020": ("CS", "1", "Presentation LUT Shape", "", "PresentationLUTShape"), + "20500500": ("SQ", "1", "Referenced Presentation LUT Sequence", "", "ReferencedPresentationLUTSequence"), + "21000010": ("SH", "1", "Print Job ID", "Retired", "PrintJobID"), + "21000020": ("CS", "1", "Execution Status", "", "ExecutionStatus"), + "21000030": ("CS", "1", "Execution Status Info", "", "ExecutionStatusInfo"), + "21000040": ("DA", "1", "Creation Date", "", "CreationDate"), + "21000050": ("TM", "1", "Creation Time", "", "CreationTime"), + "21000070": ("AE", "1", "Originator", "", "Originator"), + "21000140": ("AE", "1", "Destination AE", "", "DestinationAE"), + "21000160": ("SH", "1", "Owner ID", "", "OwnerID"), + "21000170": ("IS", "1", "Number of Films", "", "NumberOfFilms"), + "21000500": ("SQ", "1", "Referenced Print Job Sequence (Pull Stored Print)", "Retired", "ReferencedPrintJobSequencePullStoredPrint"), + "21100010": ("CS", "1", "Printer Status", "", "PrinterStatus"), + "21100020": ("CS", "1", "Printer Status Info", "", "PrinterStatusInfo"), + "21100030": ("LO", "1", "Printer Name", "", "PrinterName"), + "21100099": ("SH", "1", "Print Queue ID", "Retired", "PrintQueueID"), + "21200010": ("CS", "1", "Queue Status", "Retired", "QueueStatus"), + "21200050": ("SQ", "1", "Print Job Description Sequence", "Retired", "PrintJobDescriptionSequence"), + "21200070": ("SQ", "1", "Referenced Print Job Sequence", "Retired", "ReferencedPrintJobSequence"), + "21300010": ("SQ", "1", "Print Management Capabilities Sequence", "Retired", "PrintManagementCapabilitiesSequence"), + "21300015": ("SQ", "1", "Printer Characteristics Sequence", "Retired", "PrinterCharacteristicsSequence"), + "21300030": ("SQ", "1", "Film Box Content Sequence", "Retired", "FilmBoxContentSequence"), + "21300040": ("SQ", "1", "Image Box Content Sequence", "Retired", "ImageBoxContentSequence"), + "21300050": ("SQ", "1", "Annotation Content Sequence", "Retired", "AnnotationContentSequence"), + "21300060": ("SQ", "1", "Image Overlay Box Content Sequence", "Retired", "ImageOverlayBoxContentSequence"), + "21300080": ("SQ", "1", "Presentation LUT Content Sequence", "Retired", "PresentationLUTContentSequence"), + "213000A0": ("SQ", "1", "Proposed Study Sequence", "Retired", "ProposedStudySequence"), + "213000C0": ("SQ", "1", "Original Image Sequence", "Retired", "OriginalImageSequence"), + "22000001": ("CS", "1", "Label Using Information Extracted From Instances", "", "LabelUsingInformationExtractedFromInstances"), + "22000002": ("UT", "1", "Label Text", "", "LabelText"), + "22000003": ("CS", "1", "Label Style Selection", "", "LabelStyleSelection"), + "22000004": ("LT", "1", "Media Disposition", "", "MediaDisposition"), + "22000005": ("LT", "1", "Barcode Value", "", "BarcodeValue"), + "22000006": ("CS", "1", "Barcode Symbology", "", "BarcodeSymbology"), + "22000007": ("CS", "1", "Allow Media Splitting", "", "AllowMediaSplitting"), + "22000008": ("CS", "1", "Include Non-DICOM Objects", "", "IncludeNonDICOMObjects"), + "22000009": ("CS", "1", "Include Display Application", "", "IncludeDisplayApplication"), + "2200000A": ("CS", "1", "Preserve Composite Instances After Media Creation", "", "PreserveCompositeInstancesAfterMediaCreation"), + "2200000B": ("US", "1", "Total Number of Pieces of Media Created", "", "TotalNumberOfPiecesOfMediaCreated"), + "2200000C": ("LO", "1", "Requested Media Application Profile", "", "RequestedMediaApplicationProfile"), + "2200000D": ("SQ", "1", "Referenced Storage Media Sequence", "", "ReferencedStorageMediaSequence"), + "2200000E": ("AT", "1-n", "Failure Attributes", "", "FailureAttributes"), + "2200000F": ("CS", "1", "Allow Lossy Compression", "", "AllowLossyCompression"), + "22000020": ("CS", "1", "Request Priority", "", "RequestPriority"), + "30020002": ("SH", "1", "RT Image Label", "", "RTImageLabel"), + "30020003": ("LO", "1", "RT Image Name", "", "RTImageName"), + "30020004": ("ST", "1", "RT Image Description", "", "RTImageDescription"), + "3002000A": ("CS", "1", "Reported Values Origin", "", "ReportedValuesOrigin"), + "3002000C": ("CS", "1", "RT Image Plane", "", "RTImagePlane"), + "3002000D": ("DS", "3", "X-Ray Image Receptor Translation", "", "XRayImageReceptorTranslation"), + "3002000E": ("DS", "1", "X-Ray Image Receptor Angle", "", "XRayImageReceptorAngle"), + "30020010": ("DS", "6", "RT Image Orientation", "", "RTImageOrientation"), + "30020011": ("DS", "2", "Image Plane Pixel Spacing", "", "ImagePlanePixelSpacing"), + "30020012": ("DS", "2", "RT Image Position", "", "RTImagePosition"), + "30020020": ("SH", "1", "Radiation Machine Name", "", "RadiationMachineName"), + "30020022": ("DS", "1", "Radiation Machine SAD", "", "RadiationMachineSAD"), + "30020024": ("DS", "1", "Radiation Machine SSD", "", "RadiationMachineSSD"), + "30020026": ("DS", "1", "RT Image SID", "", "RTImageSID"), + "30020028": ("DS", "1", "Source to Reference Object Distance", "", "SourceToReferenceObjectDistance"), + "30020029": ("IS", "1", "Fraction Number", "", "FractionNumber"), + "30020030": ("SQ", "1", "Exposure Sequence", "", "ExposureSequence"), + "30020032": ("DS", "1", "Meterset Exposure", "", "MetersetExposure"), + "30020034": ("DS", "4", "Diaphragm Position", "", "DiaphragmPosition"), + "30020040": ("SQ", "1", "Fluence Map Sequence", "", "FluenceMapSequence"), + "30020041": ("CS", "1", "Fluence Data Source", "", "FluenceDataSource"), + "30020042": ("DS", "1", "Fluence Data Scale", "", "FluenceDataScale"), + "30020050": ("SQ", "1", "Primary Fluence Mode Sequence", "", "PrimaryFluenceModeSequence"), + "30020051": ("CS", "1", "Fluence Mode", "", "FluenceMode"), + "30020052": ("SH", "1", "Fluence Mode ID", "", "FluenceModeID"), + "30040001": ("CS", "1", "DVH Type", "", "DVHType"), + "30040002": ("CS", "1", "Dose Units", "", "DoseUnits"), + "30040004": ("CS", "1", "Dose Type", "", "DoseType"), + "30040005": ("CS", "1", "Spatial Transform of Dose", "", "SpatialTransformOfDose"), + "30040006": ("LO", "1", "Dose Comment", "", "DoseComment"), + "30040008": ("DS", "3", "Normalization Point", "", "NormalizationPoint"), + "3004000A": ("CS", "1", "Dose Summation Type", "", "DoseSummationType"), + "3004000C": ("DS", "2-n", "Grid Frame Offset Vector", "", "GridFrameOffsetVector"), + "3004000E": ("DS", "1", "Dose Grid Scaling", "", "DoseGridScaling"), + "30040010": ("SQ", "1", "RT Dose ROI Sequence", "", "RTDoseROISequence"), + "30040012": ("DS", "1", "Dose Value", "", "DoseValue"), + "30040014": ("CS", "1-3", "Tissue Heterogeneity Correction", "", "TissueHeterogeneityCorrection"), + "30040040": ("DS", "3", "DVH Normalization Point", "", "DVHNormalizationPoint"), + "30040042": ("DS", "1", "DVH Normalization Dose Value", "", "DVHNormalizationDoseValue"), + "30040050": ("SQ", "1", "DVH Sequence", "", "DVHSequence"), + "30040052": ("DS", "1", "DVH Dose Scaling", "", "DVHDoseScaling"), + "30040054": ("CS", "1", "DVH Volume Units", "", "DVHVolumeUnits"), + "30040056": ("IS", "1", "DVH Number of Bins", "", "DVHNumberOfBins"), + "30040058": ("DS", "2-2n", "DVH Data", "", "DVHData"), + "30040060": ("SQ", "1", "DVH Referenced ROI Sequence", "", "DVHReferencedROISequence"), + "30040062": ("CS", "1", "DVH ROI Contribution Type", "", "DVHROIContributionType"), + "30040070": ("DS", "1", "DVH Minimum Dose", "", "DVHMinimumDose"), + "30040072": ("DS", "1", "DVH Maximum Dose", "", "DVHMaximumDose"), + "30040074": ("DS", "1", "DVH Mean Dose", "", "DVHMeanDose"), + "30060002": ("SH", "1", "Structure Set Label", "", "StructureSetLabel"), + "30060004": ("LO", "1", "Structure Set Name", "", "StructureSetName"), + "30060006": ("ST", "1", "Structure Set Description", "", "StructureSetDescription"), + "30060008": ("DA", "1", "Structure Set Date", "", "StructureSetDate"), + "30060009": ("TM", "1", "Structure Set Time", "", "StructureSetTime"), + "30060010": ("SQ", "1", "Referenced Frame of Reference Sequence", "", "ReferencedFrameOfReferenceSequence"), + "30060012": ("SQ", "1", "RT Referenced Study Sequence", "", "RTReferencedStudySequence"), + "30060014": ("SQ", "1", "RT Referenced Series Sequence", "", "RTReferencedSeriesSequence"), + "30060016": ("SQ", "1", "Contour Image Sequence", "", "ContourImageSequence"), + "30060018": ("SQ", "1", "Predecessor Structure Set Sequence", "", "PredecessorStructureSetSequence"), + "30060020": ("SQ", "1", "Structure Set ROI Sequence", "", "StructureSetROISequence"), + "30060022": ("IS", "1", "ROI Number", "", "ROINumber"), + "30060024": ("UI", "1", "Referenced Frame of Reference UID", "", "ReferencedFrameOfReferenceUID"), + "30060026": ("LO", "1", "ROI Name", "", "ROIName"), + "30060028": ("ST", "1", "ROI Description", "", "ROIDescription"), + "3006002A": ("IS", "3", "ROI Display Color", "", "ROIDisplayColor"), + "3006002C": ("DS", "1", "ROI Volume", "", "ROIVolume"), + "30060030": ("SQ", "1", "RT Related ROI Sequence", "", "RTRelatedROISequence"), + "30060033": ("CS", "1", "RT ROI Relationship", "", "RTROIRelationship"), + "30060036": ("CS", "1", "ROI Generation Algorithm", "", "ROIGenerationAlgorithm"), + "30060038": ("LO", "1", "ROI Generation Description", "", "ROIGenerationDescription"), + "30060039": ("SQ", "1", "ROI Contour Sequence", "", "ROIContourSequence"), + "30060040": ("SQ", "1", "Contour Sequence", "", "ContourSequence"), + "30060042": ("CS", "1", "Contour Geometric Type", "", "ContourGeometricType"), + "30060044": ("DS", "1", "Contour Slab Thickness", "", "ContourSlabThickness"), + "30060045": ("DS", "3", "Contour Offset Vector", "", "ContourOffsetVector"), + "30060046": ("IS", "1", "Number of Contour Points", "", "NumberOfContourPoints"), + "30060048": ("IS", "1", "Contour Number", "", "ContourNumber"), + "30060049": ("IS", "1-n", "Attached Contours", "", "AttachedContours"), + "30060050": ("DS", "3-3n", "Contour Data", "", "ContourData"), + "30060080": ("SQ", "1", "RT ROI Observations Sequence", "", "RTROIObservationsSequence"), + "30060082": ("IS", "1", "Observation Number", "", "ObservationNumber"), + "30060084": ("IS", "1", "Referenced ROI Number", "", "ReferencedROINumber"), + "30060085": ("SH", "1", "ROI Observation Label", "", "ROIObservationLabel"), + "30060086": ("SQ", "1", "RT ROI Identification Code Sequence", "", "RTROIIdentificationCodeSequence"), + "30060088": ("ST", "1", "ROI Observation Description", "", "ROIObservationDescription"), + "300600A0": ("SQ", "1", "Related RT ROI Observations Sequence", "", "RelatedRTROIObservationsSequence"), + "300600A4": ("CS", "1", "RT ROI Interpreted Type", "", "RTROIInterpretedType"), + "300600A6": ("PN", "1", "ROI Interpreter", "", "ROIInterpreter"), + "300600B0": ("SQ", "1", "ROI Physical Properties Sequence", "", "ROIPhysicalPropertiesSequence"), + "300600B2": ("CS", "1", "ROI Physical Property", "", "ROIPhysicalProperty"), + "300600B4": ("DS", "1", "ROI Physical Property Value", "", "ROIPhysicalPropertyValue"), + "300600B6": ("SQ", "1", "ROI Elemental Composition Sequence", "", "ROIElementalCompositionSequence"), + "300600B7": ("US", "1", "ROI Elemental Composition Atomic Number", "", "ROIElementalCompositionAtomicNumber"), + "300600B8": ("FL", "1", "ROI Elemental Composition Atomic Mass Fraction", "", "ROIElementalCompositionAtomicMassFraction"), + "300600B9": ("SQ", "1", "Additional RT ROI Identification Code Sequence", "Retired", "AdditionalRTROIIdentificationCodeSequence"), + "300600C0": ("SQ", "1", "Frame of Reference Relationship Sequence", "Retired", "FrameOfReferenceRelationshipSequence"), + "300600C2": ("UI", "1", "Related Frame of Reference UID", "Retired", "RelatedFrameOfReferenceUID"), + "300600C4": ("CS", "1", "Frame of Reference Transformation Type", "Retired", "FrameOfReferenceTransformationType"), + "300600C6": ("DS", "16", "Frame of Reference Transformation Matrix", "", "FrameOfReferenceTransformationMatrix"), + "300600C8": ("LO", "1", "Frame of Reference Transformation Comment", "", "FrameOfReferenceTransformationComment"), + "30080010": ("SQ", "1", "Measured Dose Reference Sequence", "", "MeasuredDoseReferenceSequence"), + "30080012": ("ST", "1", "Measured Dose Description", "", "MeasuredDoseDescription"), + "30080014": ("CS", "1", "Measured Dose Type", "", "MeasuredDoseType"), + "30080016": ("DS", "1", "Measured Dose Value", "", "MeasuredDoseValue"), + "30080020": ("SQ", "1", "Treatment Session Beam Sequence", "", "TreatmentSessionBeamSequence"), + "30080021": ("SQ", "1", "Treatment Session Ion Beam Sequence", "", "TreatmentSessionIonBeamSequence"), + "30080022": ("IS", "1", "Current Fraction Number", "", "CurrentFractionNumber"), + "30080024": ("DA", "1", "Treatment Control Point Date", "", "TreatmentControlPointDate"), + "30080025": ("TM", "1", "Treatment Control Point Time", "", "TreatmentControlPointTime"), + "3008002A": ("CS", "1", "Treatment Termination Status", "", "TreatmentTerminationStatus"), + "3008002B": ("SH", "1", "Treatment Termination Code", "", "TreatmentTerminationCode"), + "3008002C": ("CS", "1", "Treatment Verification Status", "", "TreatmentVerificationStatus"), + "30080030": ("SQ", "1", "Referenced Treatment Record Sequence", "", "ReferencedTreatmentRecordSequence"), + "30080032": ("DS", "1", "Specified Primary Meterset", "", "SpecifiedPrimaryMeterset"), + "30080033": ("DS", "1", "Specified Secondary Meterset", "", "SpecifiedSecondaryMeterset"), + "30080036": ("DS", "1", "Delivered Primary Meterset", "", "DeliveredPrimaryMeterset"), + "30080037": ("DS", "1", "Delivered Secondary Meterset", "", "DeliveredSecondaryMeterset"), + "3008003A": ("DS", "1", "Specified Treatment Time", "", "SpecifiedTreatmentTime"), + "3008003B": ("DS", "1", "Delivered Treatment Time", "", "DeliveredTreatmentTime"), + "30080040": ("SQ", "1", "Control Point Delivery Sequence", "", "ControlPointDeliverySequence"), + "30080041": ("SQ", "1", "Ion Control Point Delivery Sequence", "", "IonControlPointDeliverySequence"), + "30080042": ("DS", "1", "Specified Meterset", "", "SpecifiedMeterset"), + "30080044": ("DS", "1", "Delivered Meterset", "", "DeliveredMeterset"), + "30080045": ("FL", "1", "Meterset Rate Set", "", "MetersetRateSet"), + "30080046": ("FL", "1", "Meterset Rate Delivered", "", "MetersetRateDelivered"), + "30080047": ("FL", "1-n", "Scan Spot Metersets Delivered", "", "ScanSpotMetersetsDelivered"), + "30080048": ("DS", "1", "Dose Rate Delivered", "", "DoseRateDelivered"), + "30080050": ("SQ", "1", "Treatment Summary Calculated Dose Reference Sequence", "", "TreatmentSummaryCalculatedDoseReferenceSequence"), + "30080052": ("DS", "1", "Cumulative Dose to Dose Reference", "", "CumulativeDoseToDoseReference"), + "30080054": ("DA", "1", "First Treatment Date", "", "FirstTreatmentDate"), + "30080056": ("DA", "1", "Most Recent Treatment Date", "", "MostRecentTreatmentDate"), + "3008005A": ("IS", "1", "Number of Fractions Delivered", "", "NumberOfFractionsDelivered"), + "30080060": ("SQ", "1", "Override Sequence", "", "OverrideSequence"), + "30080061": ("AT", "1", "Parameter Sequence Pointer", "", "ParameterSequencePointer"), + "30080062": ("AT", "1", "Override Parameter Pointer", "", "OverrideParameterPointer"), + "30080063": ("IS", "1", "Parameter Item Index", "", "ParameterItemIndex"), + "30080064": ("IS", "1", "Measured Dose Reference Number", "", "MeasuredDoseReferenceNumber"), + "30080065": ("AT", "1", "Parameter Pointer", "", "ParameterPointer"), + "30080066": ("ST", "1", "Override Reason", "", "OverrideReason"), + "30080067": ("US", "1", "Parameter Value Number", "", "ParameterValueNumber"), + "30080068": ("SQ", "1", "Corrected Parameter Sequence", "", "CorrectedParameterSequence"), + "3008006A": ("FL", "1", "Correction Value", "", "CorrectionValue"), + "30080070": ("SQ", "1", "Calculated Dose Reference Sequence", "", "CalculatedDoseReferenceSequence"), + "30080072": ("IS", "1", "Calculated Dose Reference Number", "", "CalculatedDoseReferenceNumber"), + "30080074": ("ST", "1", "Calculated Dose Reference Description", "", "CalculatedDoseReferenceDescription"), + "30080076": ("DS", "1", "Calculated Dose Reference Dose Value", "", "CalculatedDoseReferenceDoseValue"), + "30080078": ("DS", "1", "Start Meterset", "", "StartMeterset"), + "3008007A": ("DS", "1", "End Meterset", "", "EndMeterset"), + "30080080": ("SQ", "1", "Referenced Measured Dose Reference Sequence", "", "ReferencedMeasuredDoseReferenceSequence"), + "30080082": ("IS", "1", "Referenced Measured Dose Reference Number", "", "ReferencedMeasuredDoseReferenceNumber"), + "30080090": ("SQ", "1", "Referenced Calculated Dose Reference Sequence", "", "ReferencedCalculatedDoseReferenceSequence"), + "30080092": ("IS", "1", "Referenced Calculated Dose Reference Number", "", "ReferencedCalculatedDoseReferenceNumber"), + "300800A0": ("SQ", "1", "Beam Limiting Device Leaf Pairs Sequence", "", "BeamLimitingDeviceLeafPairsSequence"), + "300800B0": ("SQ", "1", "Recorded Wedge Sequence", "", "RecordedWedgeSequence"), + "300800C0": ("SQ", "1", "Recorded Compensator Sequence", "", "RecordedCompensatorSequence"), + "300800D0": ("SQ", "1", "Recorded Block Sequence", "", "RecordedBlockSequence"), + "300800E0": ("SQ", "1", "Treatment Summary Measured Dose Reference Sequence", "", "TreatmentSummaryMeasuredDoseReferenceSequence"), + "300800F0": ("SQ", "1", "Recorded Snout Sequence", "", "RecordedSnoutSequence"), + "300800F2": ("SQ", "1", "Recorded Range Shifter Sequence", "", "RecordedRangeShifterSequence"), + "300800F4": ("SQ", "1", "Recorded Lateral Spreading Device Sequence", "", "RecordedLateralSpreadingDeviceSequence"), + "300800F6": ("SQ", "1", "Recorded Range Modulator Sequence", "", "RecordedRangeModulatorSequence"), + "30080100": ("SQ", "1", "Recorded Source Sequence", "", "RecordedSourceSequence"), + "30080105": ("LO", "1", "Source Serial Number", "", "SourceSerialNumber"), + "30080110": ("SQ", "1", "Treatment Session Application Setup Sequence", "", "TreatmentSessionApplicationSetupSequence"), + "30080116": ("CS", "1", "Application Setup Check", "", "ApplicationSetupCheck"), + "30080120": ("SQ", "1", "Recorded Brachy Accessory Device Sequence", "", "RecordedBrachyAccessoryDeviceSequence"), + "30080122": ("IS", "1", "Referenced Brachy Accessory Device Number", "", "ReferencedBrachyAccessoryDeviceNumber"), + "30080130": ("SQ", "1", "Recorded Channel Sequence", "", "RecordedChannelSequence"), + "30080132": ("DS", "1", "Specified Channel Total Time", "", "SpecifiedChannelTotalTime"), + "30080134": ("DS", "1", "Delivered Channel Total Time", "", "DeliveredChannelTotalTime"), + "30080136": ("IS", "1", "Specified Number of Pulses", "", "SpecifiedNumberOfPulses"), + "30080138": ("IS", "1", "Delivered Number of Pulses", "", "DeliveredNumberOfPulses"), + "3008013A": ("DS", "1", "Specified Pulse Repetition Interval", "", "SpecifiedPulseRepetitionInterval"), + "3008013C": ("DS", "1", "Delivered Pulse Repetition Interval", "", "DeliveredPulseRepetitionInterval"), + "30080140": ("SQ", "1", "Recorded Source Applicator Sequence", "", "RecordedSourceApplicatorSequence"), + "30080142": ("IS", "1", "Referenced Source Applicator Number", "", "ReferencedSourceApplicatorNumber"), + "30080150": ("SQ", "1", "Recorded Channel Shield Sequence", "", "RecordedChannelShieldSequence"), + "30080152": ("IS", "1", "Referenced Channel Shield Number", "", "ReferencedChannelShieldNumber"), + "30080160": ("SQ", "1", "Brachy Control Point Delivered Sequence", "", "BrachyControlPointDeliveredSequence"), + "30080162": ("DA", "1", "Safe Position Exit Date", "", "SafePositionExitDate"), + "30080164": ("TM", "1", "Safe Position Exit Time", "", "SafePositionExitTime"), + "30080166": ("DA", "1", "Safe Position Return Date", "", "SafePositionReturnDate"), + "30080168": ("TM", "1", "Safe Position Return Time", "", "SafePositionReturnTime"), + "30080171": ("SQ", "1", "Pulse Specific Brachy Control Point Delivered Sequence", "", "PulseSpecificBrachyControlPointDeliveredSequence"), + "30080172": ("US", "1", "Pulse Number", "", "PulseNumber"), + "30080173": ("SQ", "1", "Brachy Pulse Control Point Delivered Sequence", "", "BrachyPulseControlPointDeliveredSequence"), + "30080200": ("CS", "1", "Current Treatment Status", "", "CurrentTreatmentStatus"), + "30080202": ("ST", "1", "Treatment Status Comment", "", "TreatmentStatusComment"), + "30080220": ("SQ", "1", "Fraction Group Summary Sequence", "", "FractionGroupSummarySequence"), + "30080223": ("IS", "1", "Referenced Fraction Number", "", "ReferencedFractionNumber"), + "30080224": ("CS", "1", "Fraction Group Type", "", "FractionGroupType"), + "30080230": ("CS", "1", "Beam Stopper Position", "", "BeamStopperPosition"), + "30080240": ("SQ", "1", "Fraction Status Summary Sequence", "", "FractionStatusSummarySequence"), + "30080250": ("DA", "1", "Treatment Date", "", "TreatmentDate"), + "30080251": ("TM", "1", "Treatment Time", "", "TreatmentTime"), + "300A0002": ("SH", "1", "RT Plan Label", "", "RTPlanLabel"), + "300A0003": ("LO", "1", "RT Plan Name", "", "RTPlanName"), + "300A0004": ("ST", "1", "RT Plan Description", "", "RTPlanDescription"), + "300A0006": ("DA", "1", "RT Plan Date", "", "RTPlanDate"), + "300A0007": ("TM", "1", "RT Plan Time", "", "RTPlanTime"), + "300A0009": ("LO", "1-n", "Treatment Protocols", "", "TreatmentProtocols"), + "300A000A": ("CS", "1", "Plan Intent", "", "PlanIntent"), + "300A000B": ("LO", "1-n", "Treatment Sites", "", "TreatmentSites"), + "300A000C": ("CS", "1", "RT Plan Geometry", "", "RTPlanGeometry"), + "300A000E": ("ST", "1", "Prescription Description", "", "PrescriptionDescription"), + "300A0010": ("SQ", "1", "Dose Reference Sequence", "", "DoseReferenceSequence"), + "300A0012": ("IS", "1", "Dose Reference Number", "", "DoseReferenceNumber"), + "300A0013": ("UI", "1", "Dose Reference UID", "", "DoseReferenceUID"), + "300A0014": ("CS", "1", "Dose Reference Structure Type", "", "DoseReferenceStructureType"), + "300A0015": ("CS", "1", "Nominal Beam Energy Unit", "", "NominalBeamEnergyUnit"), + "300A0016": ("LO", "1", "Dose Reference Description", "", "DoseReferenceDescription"), + "300A0018": ("DS", "3", "Dose Reference Point Coordinates", "", "DoseReferencePointCoordinates"), + "300A001A": ("DS", "1", "Nominal Prior Dose", "", "NominalPriorDose"), + "300A0020": ("CS", "1", "Dose Reference Type", "", "DoseReferenceType"), + "300A0021": ("DS", "1", "Constraint Weight", "", "ConstraintWeight"), + "300A0022": ("DS", "1", "Delivery Warning Dose", "", "DeliveryWarningDose"), + "300A0023": ("DS", "1", "Delivery Maximum Dose", "", "DeliveryMaximumDose"), + "300A0025": ("DS", "1", "Target Minimum Dose", "", "TargetMinimumDose"), + "300A0026": ("DS", "1", "Target Prescription Dose", "", "TargetPrescriptionDose"), + "300A0027": ("DS", "1", "Target Maximum Dose", "", "TargetMaximumDose"), + "300A0028": ("DS", "1", "Target Underdose Volume Fraction", "", "TargetUnderdoseVolumeFraction"), + "300A002A": ("DS", "1", "Organ at Risk Full-volume Dose", "", "OrganAtRiskFullVolumeDose"), + "300A002B": ("DS", "1", "Organ at Risk Limit Dose", "", "OrganAtRiskLimitDose"), + "300A002C": ("DS", "1", "Organ at Risk Maximum Dose", "", "OrganAtRiskMaximumDose"), + "300A002D": ("DS", "1", "Organ at Risk Overdose Volume Fraction", "", "OrganAtRiskOverdoseVolumeFraction"), + "300A0040": ("SQ", "1", "Tolerance Table Sequence", "", "ToleranceTableSequence"), + "300A0042": ("IS", "1", "Tolerance Table Number", "", "ToleranceTableNumber"), + "300A0043": ("SH", "1", "Tolerance Table Label", "", "ToleranceTableLabel"), + "300A0044": ("DS", "1", "Gantry Angle Tolerance", "", "GantryAngleTolerance"), + "300A0046": ("DS", "1", "Beam Limiting Device Angle Tolerance", "", "BeamLimitingDeviceAngleTolerance"), + "300A0048": ("SQ", "1", "Beam Limiting Device Tolerance Sequence", "", "BeamLimitingDeviceToleranceSequence"), + "300A004A": ("DS", "1", "Beam Limiting Device Position Tolerance", "", "BeamLimitingDevicePositionTolerance"), + "300A004B": ("FL", "1", "Snout Position Tolerance", "", "SnoutPositionTolerance"), + "300A004C": ("DS", "1", "Patient Support Angle Tolerance", "", "PatientSupportAngleTolerance"), + "300A004E": ("DS", "1", "Table Top Eccentric Angle Tolerance", "", "TableTopEccentricAngleTolerance"), + "300A004F": ("FL", "1", "Table Top Pitch Angle Tolerance", "", "TableTopPitchAngleTolerance"), + "300A0050": ("FL", "1", "Table Top Roll Angle Tolerance", "", "TableTopRollAngleTolerance"), + "300A0051": ("DS", "1", "Table Top Vertical Position Tolerance", "", "TableTopVerticalPositionTolerance"), + "300A0052": ("DS", "1", "Table Top Longitudinal Position Tolerance", "", "TableTopLongitudinalPositionTolerance"), + "300A0053": ("DS", "1", "Table Top Lateral Position Tolerance", "", "TableTopLateralPositionTolerance"), + "300A0055": ("CS", "1", "RT Plan Relationship", "", "RTPlanRelationship"), + "300A0070": ("SQ", "1", "Fraction Group Sequence", "", "FractionGroupSequence"), + "300A0071": ("IS", "1", "Fraction Group Number", "", "FractionGroupNumber"), + "300A0072": ("LO", "1", "Fraction Group Description", "", "FractionGroupDescription"), + "300A0078": ("IS", "1", "Number of Fractions Planned", "", "NumberOfFractionsPlanned"), + "300A0079": ("IS", "1", "Number of Fraction Pattern Digits Per Day", "", "NumberOfFractionPatternDigitsPerDay"), + "300A007A": ("IS", "1", "Repeat Fraction Cycle Length", "", "RepeatFractionCycleLength"), + "300A007B": ("LT", "1", "Fraction Pattern", "", "FractionPattern"), + "300A0080": ("IS", "1", "Number of Beams", "", "NumberOfBeams"), + "300A0082": ("DS", "3", "Beam Dose Specification Point", "", "BeamDoseSpecificationPoint"), + "300A0083": ("UI", "1", "Referenced Dose Reference UID", "", "ReferencedDoseReferenceUID"), + "300A0084": ("DS", "1", "Beam Dose", "", "BeamDose"), + "300A0086": ("DS", "1", "Beam Meterset", "", "BeamMeterset"), + "300A0088": ("FL", "1", "Beam Dose Point Depth", "", "BeamDosePointDepth"), + "300A0089": ("FL", "1", "Beam Dose Point Equivalent Depth", "", "BeamDosePointEquivalentDepth"), + "300A008A": ("FL", "1", "Beam Dose Point SSD", "", "BeamDosePointSSD"), + "300A008B": ("CS", "1", "Beam Dose Meaning", "", "BeamDoseMeaning"), + "300A008C": ("SQ", "1", "Beam Dose Verification Control Point Sequence", "", "BeamDoseVerificationControlPointSequence"), + "300A008D": ("FL", "1", "Average Beam Dose Point Depth", "Retired", "AverageBeamDosePointDepth"), + "300A008E": ("FL", "1", "Average Beam Dose Point Equivalent Depth", "Retired", "AverageBeamDosePointEquivalentDepth"), + "300A008F": ("FL", "1", "Average Beam Dose Point SSD", "Retired", "AverageBeamDosePointSSD"), + "300A0090": ("CS", "1", "Beam Dose Type", "", "BeamDoseType"), + "300A0091": ("DS", "1", "Alternate Beam Dose", "", "AlternateBeamDose"), + "300A0092": ("CS", "1", "Alternate Beam Dose Type", "", "AlternateBeamDoseType"), + "300A0093": ("CS", "1", "Depth Value Averaging Flag", "", "DepthValueAveragingFlag"), + "300A0094": ("DS", "1", "Beam Dose Point Source to External Contour Distance", "", "BeamDosePointSourceToExternalContourDistance"), + "300A00A0": ("IS", "1", "Number of Brachy Application Setups", "", "NumberOfBrachyApplicationSetups"), + "300A00A2": ("DS", "3", "Brachy Application Setup Dose Specification Point", "", "BrachyApplicationSetupDoseSpecificationPoint"), + "300A00A4": ("DS", "1", "Brachy Application Setup Dose", "", "BrachyApplicationSetupDose"), + "300A00B0": ("SQ", "1", "Beam Sequence", "", "BeamSequence"), + "300A00B2": ("SH", "1", "Treatment Machine Name", "", "TreatmentMachineName"), + "300A00B3": ("CS", "1", "Primary Dosimeter Unit", "", "PrimaryDosimeterUnit"), + "300A00B4": ("DS", "1", "Source-Axis Distance", "", "SourceAxisDistance"), + "300A00B6": ("SQ", "1", "Beam Limiting Device Sequence", "", "BeamLimitingDeviceSequence"), + "300A00B8": ("CS", "1", "RT Beam Limiting Device Type", "", "RTBeamLimitingDeviceType"), + "300A00BA": ("DS", "1", "Source to Beam Limiting Device Distance", "", "SourceToBeamLimitingDeviceDistance"), + "300A00BB": ("FL", "1", "Isocenter to Beam Limiting Device Distance", "", "IsocenterToBeamLimitingDeviceDistance"), + "300A00BC": ("IS", "1", "Number of Leaf/Jaw Pairs", "", "NumberOfLeafJawPairs"), + "300A00BE": ("DS", "3-n", "Leaf Position Boundaries", "", "LeafPositionBoundaries"), + "300A00C0": ("IS", "1", "Beam Number", "", "BeamNumber"), + "300A00C2": ("LO", "1", "Beam Name", "", "BeamName"), + "300A00C3": ("ST", "1", "Beam Description", "", "BeamDescription"), + "300A00C4": ("CS", "1", "Beam Type", "", "BeamType"), + "300A00C5": ("FD", "1", "Beam Delivery Duration Limit", "", "BeamDeliveryDurationLimit"), + "300A00C6": ("CS", "1", "Radiation Type", "", "RadiationType"), + "300A00C7": ("CS", "1", "High-Dose Technique Type", "", "HighDoseTechniqueType"), + "300A00C8": ("IS", "1", "Reference Image Number", "", "ReferenceImageNumber"), + "300A00CA": ("SQ", "1", "Planned Verification Image Sequence", "", "PlannedVerificationImageSequence"), + "300A00CC": ("LO", "1-n", "Imaging Device-Specific Acquisition Parameters", "", "ImagingDeviceSpecificAcquisitionParameters"), + "300A00CE": ("CS", "1", "Treatment Delivery Type", "", "TreatmentDeliveryType"), + "300A00D0": ("IS", "1", "Number of Wedges", "", "NumberOfWedges"), + "300A00D1": ("SQ", "1", "Wedge Sequence", "", "WedgeSequence"), + "300A00D2": ("IS", "1", "Wedge Number", "", "WedgeNumber"), + "300A00D3": ("CS", "1", "Wedge Type", "", "WedgeType"), + "300A00D4": ("SH", "1", "Wedge ID", "", "WedgeID"), + "300A00D5": ("IS", "1", "Wedge Angle", "", "WedgeAngle"), + "300A00D6": ("DS", "1", "Wedge Factor", "", "WedgeFactor"), + "300A00D7": ("FL", "1", "Total Wedge Tray Water-Equivalent Thickness", "", "TotalWedgeTrayWaterEquivalentThickness"), + "300A00D8": ("DS", "1", "Wedge Orientation", "", "WedgeOrientation"), + "300A00D9": ("FL", "1", "Isocenter to Wedge Tray Distance", "", "IsocenterToWedgeTrayDistance"), + "300A00DA": ("DS", "1", "Source to Wedge Tray Distance", "", "SourceToWedgeTrayDistance"), + "300A00DB": ("FL", "1", "Wedge Thin Edge Position", "", "WedgeThinEdgePosition"), + "300A00DC": ("SH", "1", "Bolus ID", "", "BolusID"), + "300A00DD": ("ST", "1", "Bolus Description", "", "BolusDescription"), + "300A00DE": ("DS", "1", "Effective Wedge Angle", "", "EffectiveWedgeAngle"), + "300A00E0": ("IS", "1", "Number of Compensators", "", "NumberOfCompensators"), + "300A00E1": ("SH", "1", "Material ID", "", "MaterialID"), + "300A00E2": ("DS", "1", "Total Compensator Tray Factor", "", "TotalCompensatorTrayFactor"), + "300A00E3": ("SQ", "1", "Compensator Sequence", "", "CompensatorSequence"), + "300A00E4": ("IS", "1", "Compensator Number", "", "CompensatorNumber"), + "300A00E5": ("SH", "1", "Compensator ID", "", "CompensatorID"), + "300A00E6": ("DS", "1", "Source to Compensator Tray Distance", "", "SourceToCompensatorTrayDistance"), + "300A00E7": ("IS", "1", "Compensator Rows", "", "CompensatorRows"), + "300A00E8": ("IS", "1", "Compensator Columns", "", "CompensatorColumns"), + "300A00E9": ("DS", "2", "Compensator Pixel Spacing", "", "CompensatorPixelSpacing"), + "300A00EA": ("DS", "2", "Compensator Position", "", "CompensatorPosition"), + "300A00EB": ("DS", "1-n", "Compensator Transmission Data", "", "CompensatorTransmissionData"), + "300A00EC": ("DS", "1-n", "Compensator Thickness Data", "", "CompensatorThicknessData"), + "300A00ED": ("IS", "1", "Number of Boli", "", "NumberOfBoli"), + "300A00EE": ("CS", "1", "Compensator Type", "", "CompensatorType"), + "300A00EF": ("SH", "1", "Compensator Tray ID", "", "CompensatorTrayID"), + "300A00F0": ("IS", "1", "Number of Blocks", "", "NumberOfBlocks"), + "300A00F2": ("DS", "1", "Total Block Tray Factor", "", "TotalBlockTrayFactor"), + "300A00F3": ("FL", "1", "Total Block Tray Water-Equivalent Thickness", "", "TotalBlockTrayWaterEquivalentThickness"), + "300A00F4": ("SQ", "1", "Block Sequence", "", "BlockSequence"), + "300A00F5": ("SH", "1", "Block Tray ID", "", "BlockTrayID"), + "300A00F6": ("DS", "1", "Source to Block Tray Distance", "", "SourceToBlockTrayDistance"), + "300A00F7": ("FL", "1", "Isocenter to Block Tray Distance", "", "IsocenterToBlockTrayDistance"), + "300A00F8": ("CS", "1", "Block Type", "", "BlockType"), + "300A00F9": ("LO", "1", "Accessory Code", "", "AccessoryCode"), + "300A00FA": ("CS", "1", "Block Divergence", "", "BlockDivergence"), + "300A00FB": ("CS", "1", "Block Mounting Position", "", "BlockMountingPosition"), + "300A00FC": ("IS", "1", "Block Number", "", "BlockNumber"), + "300A00FE": ("LO", "1", "Block Name", "", "BlockName"), + "300A0100": ("DS", "1", "Block Thickness", "", "BlockThickness"), + "300A0102": ("DS", "1", "Block Transmission", "", "BlockTransmission"), + "300A0104": ("IS", "1", "Block Number of Points", "", "BlockNumberOfPoints"), + "300A0106": ("DS", "2-2n", "Block Data", "", "BlockData"), + "300A0107": ("SQ", "1", "Applicator Sequence", "", "ApplicatorSequence"), + "300A0108": ("SH", "1", "Applicator ID", "", "ApplicatorID"), + "300A0109": ("CS", "1", "Applicator Type", "", "ApplicatorType"), + "300A010A": ("LO", "1", "Applicator Description", "", "ApplicatorDescription"), + "300A010C": ("DS", "1", "Cumulative Dose Reference Coefficient", "", "CumulativeDoseReferenceCoefficient"), + "300A010E": ("DS", "1", "Final Cumulative Meterset Weight", "", "FinalCumulativeMetersetWeight"), + "300A0110": ("IS", "1", "Number of Control Points", "", "NumberOfControlPoints"), + "300A0111": ("SQ", "1", "Control Point Sequence", "", "ControlPointSequence"), + "300A0112": ("IS", "1", "Control Point Index", "", "ControlPointIndex"), + "300A0114": ("DS", "1", "Nominal Beam Energy", "", "NominalBeamEnergy"), + "300A0115": ("DS", "1", "Dose Rate Set", "", "DoseRateSet"), + "300A0116": ("SQ", "1", "Wedge Position Sequence", "", "WedgePositionSequence"), + "300A0118": ("CS", "1", "Wedge Position", "", "WedgePosition"), + "300A011A": ("SQ", "1", "Beam Limiting Device Position Sequence", "", "BeamLimitingDevicePositionSequence"), + "300A011C": ("DS", "2-2n", "Leaf/Jaw Positions", "", "LeafJawPositions"), + "300A011E": ("DS", "1", "Gantry Angle", "", "GantryAngle"), + "300A011F": ("CS", "1", "Gantry Rotation Direction", "", "GantryRotationDirection"), + "300A0120": ("DS", "1", "Beam Limiting Device Angle", "", "BeamLimitingDeviceAngle"), + "300A0121": ("CS", "1", "Beam Limiting Device Rotation Direction", "", "BeamLimitingDeviceRotationDirection"), + "300A0122": ("DS", "1", "Patient Support Angle", "", "PatientSupportAngle"), + "300A0123": ("CS", "1", "Patient Support Rotation Direction", "", "PatientSupportRotationDirection"), + "300A0124": ("DS", "1", "Table Top Eccentric Axis Distance", "", "TableTopEccentricAxisDistance"), + "300A0125": ("DS", "1", "Table Top Eccentric Angle", "", "TableTopEccentricAngle"), + "300A0126": ("CS", "1", "Table Top Eccentric Rotation Direction", "", "TableTopEccentricRotationDirection"), + "300A0128": ("DS", "1", "Table Top Vertical Position", "", "TableTopVerticalPosition"), + "300A0129": ("DS", "1", "Table Top Longitudinal Position", "", "TableTopLongitudinalPosition"), + "300A012A": ("DS", "1", "Table Top Lateral Position", "", "TableTopLateralPosition"), + "300A012C": ("DS", "3", "Isocenter Position", "", "IsocenterPosition"), + "300A012E": ("DS", "3", "Surface Entry Point", "", "SurfaceEntryPoint"), + "300A0130": ("DS", "1", "Source to Surface Distance", "", "SourceToSurfaceDistance"), + "300A0131": ("FL", "1", "Average Beam Dose Point Source to External Contour Distance", "", "AverageBeamDosePointSourceToExternalContourDistance"), + "300A0132": ("FL", "1", "Source to External Contour Distance", "", "SourceToExternalContourDistance"), + "300A0133": ("FL", "3", "External Contour Entry Point", "", "ExternalContourEntryPoint"), + "300A0134": ("DS", "1", "Cumulative Meterset Weight", "", "CumulativeMetersetWeight"), + "300A0140": ("FL", "1", "Table Top Pitch Angle", "", "TableTopPitchAngle"), + "300A0142": ("CS", "1", "Table Top Pitch Rotation Direction", "", "TableTopPitchRotationDirection"), + "300A0144": ("FL", "1", "Table Top Roll Angle", "", "TableTopRollAngle"), + "300A0146": ("CS", "1", "Table Top Roll Rotation Direction", "", "TableTopRollRotationDirection"), + "300A0148": ("FL", "1", "Head Fixation Angle", "", "HeadFixationAngle"), + "300A014A": ("FL", "1", "Gantry Pitch Angle", "", "GantryPitchAngle"), + "300A014C": ("CS", "1", "Gantry Pitch Rotation Direction", "", "GantryPitchRotationDirection"), + "300A014E": ("FL", "1", "Gantry Pitch Angle Tolerance", "", "GantryPitchAngleTolerance"), + "300A0150": ("CS", "1", "Fixation Eye", "", "FixationEye"), + "300A0151": ("DS", "1", "Chair Head Frame Position", "", "ChairHeadFramePosition"), + "300A0152": ("DS", "1", "Head Fixation Angle Tolerance", "", "HeadFixationAngleTolerance"), + "300A0153": ("DS", "1", "Chair Head Frame Position Tolerance", "", "ChairHeadFramePositionTolerance"), + "300A0154": ("DS", "1", "Fixation Light Azimuthal Angle Tolerance", "", "FixationLightAzimuthalAngleTolerance"), + "300A0155": ("DS", "1", "Fixation Light Polar Angle Tolerance", "", "FixationLightPolarAngleTolerance"), + "300A0180": ("SQ", "1", "Patient Setup Sequence", "", "PatientSetupSequence"), + "300A0182": ("IS", "1", "Patient Setup Number", "", "PatientSetupNumber"), + "300A0183": ("LO", "1", "Patient Setup Label", "", "PatientSetupLabel"), + "300A0184": ("LO", "1", "Patient Additional Position", "", "PatientAdditionalPosition"), + "300A0190": ("SQ", "1", "Fixation Device Sequence", "", "FixationDeviceSequence"), + "300A0192": ("CS", "1", "Fixation Device Type", "", "FixationDeviceType"), + "300A0194": ("SH", "1", "Fixation Device Label", "", "FixationDeviceLabel"), + "300A0196": ("ST", "1", "Fixation Device Description", "", "FixationDeviceDescription"), + "300A0198": ("SH", "1", "Fixation Device Position", "", "FixationDevicePosition"), + "300A0199": ("FL", "1", "Fixation Device Pitch Angle", "", "FixationDevicePitchAngle"), + "300A019A": ("FL", "1", "Fixation Device Roll Angle", "", "FixationDeviceRollAngle"), + "300A01A0": ("SQ", "1", "Shielding Device Sequence", "", "ShieldingDeviceSequence"), + "300A01A2": ("CS", "1", "Shielding Device Type", "", "ShieldingDeviceType"), + "300A01A4": ("SH", "1", "Shielding Device Label", "", "ShieldingDeviceLabel"), + "300A01A6": ("ST", "1", "Shielding Device Description", "", "ShieldingDeviceDescription"), + "300A01A8": ("SH", "1", "Shielding Device Position", "", "ShieldingDevicePosition"), + "300A01B0": ("CS", "1", "Setup Technique", "", "SetupTechnique"), + "300A01B2": ("ST", "1", "Setup Technique Description", "", "SetupTechniqueDescription"), + "300A01B4": ("SQ", "1", "Setup Device Sequence", "", "SetupDeviceSequence"), + "300A01B6": ("CS", "1", "Setup Device Type", "", "SetupDeviceType"), + "300A01B8": ("SH", "1", "Setup Device Label", "", "SetupDeviceLabel"), + "300A01BA": ("ST", "1", "Setup Device Description", "", "SetupDeviceDescription"), + "300A01BC": ("DS", "1", "Setup Device Parameter", "", "SetupDeviceParameter"), + "300A01D0": ("ST", "1", "Setup Reference Description", "", "SetupReferenceDescription"), + "300A01D2": ("DS", "1", "Table Top Vertical Setup Displacement", "", "TableTopVerticalSetupDisplacement"), + "300A01D4": ("DS", "1", "Table Top Longitudinal Setup Displacement", "", "TableTopLongitudinalSetupDisplacement"), + "300A01D6": ("DS", "1", "Table Top Lateral Setup Displacement", "", "TableTopLateralSetupDisplacement"), + "300A0200": ("CS", "1", "Brachy Treatment Technique", "", "BrachyTreatmentTechnique"), + "300A0202": ("CS", "1", "Brachy Treatment Type", "", "BrachyTreatmentType"), + "300A0206": ("SQ", "1", "Treatment Machine Sequence", "", "TreatmentMachineSequence"), + "300A0210": ("SQ", "1", "Source Sequence", "", "SourceSequence"), + "300A0212": ("IS", "1", "Source Number", "", "SourceNumber"), + "300A0214": ("CS", "1", "Source Type", "", "SourceType"), + "300A0216": ("LO", "1", "Source Manufacturer", "", "SourceManufacturer"), + "300A0218": ("DS", "1", "Active Source Diameter", "", "ActiveSourceDiameter"), + "300A021A": ("DS", "1", "Active Source Length", "", "ActiveSourceLength"), + "300A021B": ("SH", "1", "Source Model ID", "", "SourceModelID"), + "300A021C": ("LO", "1", "Source Description", "", "SourceDescription"), + "300A0222": ("DS", "1", "Source Encapsulation Nominal Thickness", "", "SourceEncapsulationNominalThickness"), + "300A0224": ("DS", "1", "Source Encapsulation Nominal Transmission", "", "SourceEncapsulationNominalTransmission"), + "300A0226": ("LO", "1", "Source Isotope Name", "", "SourceIsotopeName"), + "300A0228": ("DS", "1", "Source Isotope Half Life", "", "SourceIsotopeHalfLife"), + "300A0229": ("CS", "1", "Source Strength Units", "", "SourceStrengthUnits"), + "300A022A": ("DS", "1", "Reference Air Kerma Rate", "", "ReferenceAirKermaRate"), + "300A022B": ("DS", "1", "Source Strength", "", "SourceStrength"), + "300A022C": ("DA", "1", "Source Strength Reference Date", "", "SourceStrengthReferenceDate"), + "300A022E": ("TM", "1", "Source Strength Reference Time", "", "SourceStrengthReferenceTime"), + "300A0230": ("SQ", "1", "Application Setup Sequence", "", "ApplicationSetupSequence"), + "300A0232": ("CS", "1", "Application Setup Type", "", "ApplicationSetupType"), + "300A0234": ("IS", "1", "Application Setup Number", "", "ApplicationSetupNumber"), + "300A0236": ("LO", "1", "Application Setup Name", "", "ApplicationSetupName"), + "300A0238": ("LO", "1", "Application Setup Manufacturer", "", "ApplicationSetupManufacturer"), + "300A0240": ("IS", "1", "Template Number", "", "TemplateNumber"), + "300A0242": ("SH", "1", "Template Type", "", "TemplateType"), + "300A0244": ("LO", "1", "Template Name", "", "TemplateName"), + "300A0250": ("DS", "1", "Total Reference Air Kerma", "", "TotalReferenceAirKerma"), + "300A0260": ("SQ", "1", "Brachy Accessory Device Sequence", "", "BrachyAccessoryDeviceSequence"), + "300A0262": ("IS", "1", "Brachy Accessory Device Number", "", "BrachyAccessoryDeviceNumber"), + "300A0263": ("SH", "1", "Brachy Accessory Device ID", "", "BrachyAccessoryDeviceID"), + "300A0264": ("CS", "1", "Brachy Accessory Device Type", "", "BrachyAccessoryDeviceType"), + "300A0266": ("LO", "1", "Brachy Accessory Device Name", "", "BrachyAccessoryDeviceName"), + "300A026A": ("DS", "1", "Brachy Accessory Device Nominal Thickness", "", "BrachyAccessoryDeviceNominalThickness"), + "300A026C": ("DS", "1", "Brachy Accessory Device Nominal Transmission", "", "BrachyAccessoryDeviceNominalTransmission"), + "300A0271": ("DS", "1", "Channel Effective Length", "", "ChannelEffectiveLength"), + "300A0272": ("DS", "1", "Channel Inner Length", "", "ChannelInnerLength"), + "300A0273": ("SH", "1", "Afterloader Channel ID", "", "AfterloaderChannelID"), + "300A0274": ("DS", "1", "Source Applicator Tip Length", "", "SourceApplicatorTipLength"), + "300A0280": ("SQ", "1", "Channel Sequence", "", "ChannelSequence"), + "300A0282": ("IS", "1", "Channel Number", "", "ChannelNumber"), + "300A0284": ("DS", "1", "Channel Length", "", "ChannelLength"), + "300A0286": ("DS", "1", "Channel Total Time", "", "ChannelTotalTime"), + "300A0288": ("CS", "1", "Source Movement Type", "", "SourceMovementType"), + "300A028A": ("IS", "1", "Number of Pulses", "", "NumberOfPulses"), + "300A028C": ("DS", "1", "Pulse Repetition Interval", "", "PulseRepetitionInterval"), + "300A0290": ("IS", "1", "Source Applicator Number", "", "SourceApplicatorNumber"), + "300A0291": ("SH", "1", "Source Applicator ID", "", "SourceApplicatorID"), + "300A0292": ("CS", "1", "Source Applicator Type", "", "SourceApplicatorType"), + "300A0294": ("LO", "1", "Source Applicator Name", "", "SourceApplicatorName"), + "300A0296": ("DS", "1", "Source Applicator Length", "", "SourceApplicatorLength"), + "300A0298": ("LO", "1", "Source Applicator Manufacturer", "", "SourceApplicatorManufacturer"), + "300A029C": ("DS", "1", "Source Applicator Wall Nominal Thickness", "", "SourceApplicatorWallNominalThickness"), + "300A029E": ("DS", "1", "Source Applicator Wall Nominal Transmission", "", "SourceApplicatorWallNominalTransmission"), + "300A02A0": ("DS", "1", "Source Applicator Step Size", "", "SourceApplicatorStepSize"), + "300A02A2": ("IS", "1", "Transfer Tube Number", "", "TransferTubeNumber"), + "300A02A4": ("DS", "1", "Transfer Tube Length", "", "TransferTubeLength"), + "300A02B0": ("SQ", "1", "Channel Shield Sequence", "", "ChannelShieldSequence"), + "300A02B2": ("IS", "1", "Channel Shield Number", "", "ChannelShieldNumber"), + "300A02B3": ("SH", "1", "Channel Shield ID", "", "ChannelShieldID"), + "300A02B4": ("LO", "1", "Channel Shield Name", "", "ChannelShieldName"), + "300A02B8": ("DS", "1", "Channel Shield Nominal Thickness", "", "ChannelShieldNominalThickness"), + "300A02BA": ("DS", "1", "Channel Shield Nominal Transmission", "", "ChannelShieldNominalTransmission"), + "300A02C8": ("DS", "1", "Final Cumulative Time Weight", "", "FinalCumulativeTimeWeight"), + "300A02D0": ("SQ", "1", "Brachy Control Point Sequence", "", "BrachyControlPointSequence"), + "300A02D2": ("DS", "1", "Control Point Relative Position", "", "ControlPointRelativePosition"), + "300A02D4": ("DS", "3", "Control Point 3D Position", "", "ControlPoint3DPosition"), + "300A02D6": ("DS", "1", "Cumulative Time Weight", "", "CumulativeTimeWeight"), + "300A02E0": ("CS", "1", "Compensator Divergence", "", "CompensatorDivergence"), + "300A02E1": ("CS", "1", "Compensator Mounting Position", "", "CompensatorMountingPosition"), + "300A02E2": ("DS", "1-n", "Source to Compensator Distance", "", "SourceToCompensatorDistance"), + "300A02E3": ("FL", "1", "Total Compensator Tray Water-Equivalent Thickness", "", "TotalCompensatorTrayWaterEquivalentThickness"), + "300A02E4": ("FL", "1", "Isocenter to Compensator Tray Distance", "", "IsocenterToCompensatorTrayDistance"), + "300A02E5": ("FL", "1", "Compensator Column Offset", "", "CompensatorColumnOffset"), + "300A02E6": ("FL", "1-n", "Isocenter to Compensator Distances", "", "IsocenterToCompensatorDistances"), + "300A02E7": ("FL", "1", "Compensator Relative Stopping Power Ratio", "", "CompensatorRelativeStoppingPowerRatio"), + "300A02E8": ("FL", "1", "Compensator Milling Tool Diameter", "", "CompensatorMillingToolDiameter"), + "300A02EA": ("SQ", "1", "Ion Range Compensator Sequence", "", "IonRangeCompensatorSequence"), + "300A02EB": ("LT", "1", "Compensator Description", "", "CompensatorDescription"), + "300A0302": ("IS", "1", "Radiation Mass Number", "", "RadiationMassNumber"), + "300A0304": ("IS", "1", "Radiation Atomic Number", "", "RadiationAtomicNumber"), + "300A0306": ("SS", "1", "Radiation Charge State", "", "RadiationChargeState"), + "300A0308": ("CS", "1", "Scan Mode", "", "ScanMode"), + "300A0309": ("CS", "1", "Modulated Scan Mode Type", "", "ModulatedScanModeType"), + "300A030A": ("FL", "2", "Virtual Source-Axis Distances", "", "VirtualSourceAxisDistances"), + "300A030C": ("SQ", "1", "Snout Sequence", "", "SnoutSequence"), + "300A030D": ("FL", "1", "Snout Position", "", "SnoutPosition"), + "300A030F": ("SH", "1", "Snout ID", "", "SnoutID"), + "300A0312": ("IS", "1", "Number of Range Shifters", "", "NumberOfRangeShifters"), + "300A0314": ("SQ", "1", "Range Shifter Sequence", "", "RangeShifterSequence"), + "300A0316": ("IS", "1", "Range Shifter Number", "", "RangeShifterNumber"), + "300A0318": ("SH", "1", "Range Shifter ID", "", "RangeShifterID"), + "300A0320": ("CS", "1", "Range Shifter Type", "", "RangeShifterType"), + "300A0322": ("LO", "1", "Range Shifter Description", "", "RangeShifterDescription"), + "300A0330": ("IS", "1", "Number of Lateral Spreading Devices", "", "NumberOfLateralSpreadingDevices"), + "300A0332": ("SQ", "1", "Lateral Spreading Device Sequence", "", "LateralSpreadingDeviceSequence"), + "300A0334": ("IS", "1", "Lateral Spreading Device Number", "", "LateralSpreadingDeviceNumber"), + "300A0336": ("SH", "1", "Lateral Spreading Device ID", "", "LateralSpreadingDeviceID"), + "300A0338": ("CS", "1", "Lateral Spreading Device Type", "", "LateralSpreadingDeviceType"), + "300A033A": ("LO", "1", "Lateral Spreading Device Description", "", "LateralSpreadingDeviceDescription"), + "300A033C": ("FL", "1", "Lateral Spreading Device Water Equivalent Thickness", "", "LateralSpreadingDeviceWaterEquivalentThickness"), + "300A0340": ("IS", "1", "Number of Range Modulators", "", "NumberOfRangeModulators"), + "300A0342": ("SQ", "1", "Range Modulator Sequence", "", "RangeModulatorSequence"), + "300A0344": ("IS", "1", "Range Modulator Number", "", "RangeModulatorNumber"), + "300A0346": ("SH", "1", "Range Modulator ID", "", "RangeModulatorID"), + "300A0348": ("CS", "1", "Range Modulator Type", "", "RangeModulatorType"), + "300A034A": ("LO", "1", "Range Modulator Description", "", "RangeModulatorDescription"), + "300A034C": ("SH", "1", "Beam Current Modulation ID", "", "BeamCurrentModulationID"), + "300A0350": ("CS", "1", "Patient Support Type", "", "PatientSupportType"), + "300A0352": ("SH", "1", "Patient Support ID", "", "PatientSupportID"), + "300A0354": ("LO", "1", "Patient Support Accessory Code", "", "PatientSupportAccessoryCode"), + "300A0355": ("LO", "1", "Tray Accessory Code", "", "TrayAccessoryCode"), + "300A0356": ("FL", "1", "Fixation Light Azimuthal Angle", "", "FixationLightAzimuthalAngle"), + "300A0358": ("FL", "1", "Fixation Light Polar Angle", "", "FixationLightPolarAngle"), + "300A035A": ("FL", "1", "Meterset Rate", "", "MetersetRate"), + "300A0360": ("SQ", "1", "Range Shifter Settings Sequence", "", "RangeShifterSettingsSequence"), + "300A0362": ("LO", "1", "Range Shifter Setting", "", "RangeShifterSetting"), + "300A0364": ("FL", "1", "Isocenter to Range Shifter Distance", "", "IsocenterToRangeShifterDistance"), + "300A0366": ("FL", "1", "Range Shifter Water Equivalent Thickness", "", "RangeShifterWaterEquivalentThickness"), + "300A0370": ("SQ", "1", "Lateral Spreading Device Settings Sequence", "", "LateralSpreadingDeviceSettingsSequence"), + "300A0372": ("LO", "1", "Lateral Spreading Device Setting", "", "LateralSpreadingDeviceSetting"), + "300A0374": ("FL", "1", "Isocenter to Lateral Spreading Device Distance", "", "IsocenterToLateralSpreadingDeviceDistance"), + "300A0380": ("SQ", "1", "Range Modulator Settings Sequence", "", "RangeModulatorSettingsSequence"), + "300A0382": ("FL", "1", "Range Modulator Gating Start Value", "", "RangeModulatorGatingStartValue"), + "300A0384": ("FL", "1", "Range Modulator Gating Stop Value", "", "RangeModulatorGatingStopValue"), + "300A0386": ("FL", "1", "Range Modulator Gating Start Water Equivalent Thickness", "", "RangeModulatorGatingStartWaterEquivalentThickness"), + "300A0388": ("FL", "1", "Range Modulator Gating Stop Water Equivalent Thickness", "", "RangeModulatorGatingStopWaterEquivalentThickness"), + "300A038A": ("FL", "1", "Isocenter to Range Modulator Distance", "", "IsocenterToRangeModulatorDistance"), + "300A038F": ("FL", "1-n", "Scan Spot Time Offset", "", "ScanSpotTimeOffset"), + "300A0390": ("SH", "1", "Scan Spot Tune ID", "", "ScanSpotTuneID"), + "300A0391": ("IS", "1-n", "Scan Spot Prescribed Indices", "", "ScanSpotPrescribedIndices"), + "300A0392": ("IS", "1", "Number of Scan Spot Positions", "", "NumberOfScanSpotPositions"), + "300A0393": ("CS", "1", "Scan Spot Reordered", "", "ScanSpotReordered"), + "300A0394": ("FL", "1-n", "Scan Spot Position Map", "", "ScanSpotPositionMap"), + "300A0395": ("CS", "1", "Scan Spot Reordering Allowed", "", "ScanSpotReorderingAllowed"), + "300A0396": ("FL", "1-n", "Scan Spot Meterset Weights", "", "ScanSpotMetersetWeights"), + "300A0398": ("FL", "2", "Scanning Spot Size", "", "ScanningSpotSize"), + "300A039A": ("IS", "1", "Number of Paintings", "", "NumberOfPaintings"), + "300A03A0": ("SQ", "1", "Ion Tolerance Table Sequence", "", "IonToleranceTableSequence"), + "300A03A2": ("SQ", "1", "Ion Beam Sequence", "", "IonBeamSequence"), + "300A03A4": ("SQ", "1", "Ion Beam Limiting Device Sequence", "", "IonBeamLimitingDeviceSequence"), + "300A03A6": ("SQ", "1", "Ion Block Sequence", "", "IonBlockSequence"), + "300A03A8": ("SQ", "1", "Ion Control Point Sequence", "", "IonControlPointSequence"), + "300A03AA": ("SQ", "1", "Ion Wedge Sequence", "", "IonWedgeSequence"), + "300A03AC": ("SQ", "1", "Ion Wedge Position Sequence", "", "IonWedgePositionSequence"), + "300A0401": ("SQ", "1", "Referenced Setup Image Sequence", "", "ReferencedSetupImageSequence"), + "300A0402": ("ST", "1", "Setup Image Comment", "", "SetupImageComment"), + "300A0410": ("SQ", "1", "Motion Synchronization Sequence", "", "MotionSynchronizationSequence"), + "300A0412": ("FL", "3", "Control Point Orientation", "", "ControlPointOrientation"), + "300A0420": ("SQ", "1", "General Accessory Sequence", "", "GeneralAccessorySequence"), + "300A0421": ("SH", "1", "General Accessory ID", "", "GeneralAccessoryID"), + "300A0422": ("ST", "1", "General Accessory Description", "", "GeneralAccessoryDescription"), + "300A0423": ("CS", "1", "General Accessory Type", "", "GeneralAccessoryType"), + "300A0424": ("IS", "1", "General Accessory Number", "", "GeneralAccessoryNumber"), + "300A0425": ("FL", "1", "Source to General Accessory Distance", "", "SourceToGeneralAccessoryDistance"), + "300A0431": ("SQ", "1", "Applicator Geometry Sequence", "", "ApplicatorGeometrySequence"), + "300A0432": ("CS", "1", "Applicator Aperture Shape", "", "ApplicatorApertureShape"), + "300A0433": ("FL", "1", "Applicator Opening", "", "ApplicatorOpening"), + "300A0434": ("FL", "1", "Applicator Opening X", "", "ApplicatorOpeningX"), + "300A0435": ("FL", "1", "Applicator Opening Y", "", "ApplicatorOpeningY"), + "300A0436": ("FL", "1", "Source to Applicator Mounting Position Distance", "", "SourceToApplicatorMountingPositionDistance"), + "300A0440": ("IS", "1", "Number of Block Slab Items", "", "NumberOfBlockSlabItems"), + "300A0441": ("SQ", "1", "Block Slab Sequence", "", "BlockSlabSequence"), + "300A0442": ("DS", "1", "Block Slab Thickness", "", "BlockSlabThickness"), + "300A0443": ("US", "1", "Block Slab Number", "", "BlockSlabNumber"), + "300A0450": ("SQ", "1", "Device Motion Control Sequence", "", "DeviceMotionControlSequence"), + "300A0451": ("CS", "1", "Device Motion Execution Mode", "", "DeviceMotionExecutionMode"), + "300A0452": ("CS", "1", "Device Motion Observation Mode", "", "DeviceMotionObservationMode"), + "300A0453": ("SQ", "1", "Device Motion Parameter Code Sequence", "", "DeviceMotionParameterCodeSequence"), + "300A0501": ("FL", "1", "Distal Depth Fraction", "", "DistalDepthFraction"), + "300A0502": ("FL", "1", "Distal Depth", "", "DistalDepth"), + "300A0503": ("FL", "2", "Nominal Range Modulation Fractions", "", "NominalRangeModulationFractions"), + "300A0504": ("FL", "2", "Nominal Range Modulated Region Depths", "", "NominalRangeModulatedRegionDepths"), + "300A0505": ("SQ", "1", "Depth Dose Parameters Sequence", "", "DepthDoseParametersSequence"), + "300A0506": ("SQ", "1", "Delivered Depth Dose Parameters Sequence", "", "DeliveredDepthDoseParametersSequence"), + "300A0507": ("FL", "1", "Delivered Distal Depth Fraction", "", "DeliveredDistalDepthFraction"), + "300A0508": ("FL", "1", "Delivered Distal Depth", "", "DeliveredDistalDepth"), + "300A0509": ("FL", "2", "Delivered Nominal Range Modulation Fractions", "", "DeliveredNominalRangeModulationFractions"), + "300A0510": ("FL", "2", "Delivered Nominal Range Modulated Region Depths", "", "DeliveredNominalRangeModulatedRegionDepths"), + "300A0511": ("CS", "1", "Delivered Reference Dose Definition", "", "DeliveredReferenceDoseDefinition"), + "300A0512": ("CS", "1", "Reference Dose Definition", "", "ReferenceDoseDefinition"), + "300C0002": ("SQ", "1", "Referenced RT Plan Sequence", "", "ReferencedRTPlanSequence"), + "300C0004": ("SQ", "1", "Referenced Beam Sequence", "", "ReferencedBeamSequence"), + "300C0006": ("IS", "1", "Referenced Beam Number", "", "ReferencedBeamNumber"), + "300C0007": ("IS", "1", "Referenced Reference Image Number", "", "ReferencedReferenceImageNumber"), + "300C0008": ("DS", "1", "Start Cumulative Meterset Weight", "", "StartCumulativeMetersetWeight"), + "300C0009": ("DS", "1", "End Cumulative Meterset Weight", "", "EndCumulativeMetersetWeight"), + "300C000A": ("SQ", "1", "Referenced Brachy Application Setup Sequence", "", "ReferencedBrachyApplicationSetupSequence"), + "300C000C": ("IS", "1", "Referenced Brachy Application Setup Number", "", "ReferencedBrachyApplicationSetupNumber"), + "300C000E": ("IS", "1", "Referenced Source Number", "", "ReferencedSourceNumber"), + "300C0020": ("SQ", "1", "Referenced Fraction Group Sequence", "", "ReferencedFractionGroupSequence"), + "300C0022": ("IS", "1", "Referenced Fraction Group Number", "", "ReferencedFractionGroupNumber"), + "300C0040": ("SQ", "1", "Referenced Verification Image Sequence", "", "ReferencedVerificationImageSequence"), + "300C0042": ("SQ", "1", "Referenced Reference Image Sequence", "", "ReferencedReferenceImageSequence"), + "300C0050": ("SQ", "1", "Referenced Dose Reference Sequence", "", "ReferencedDoseReferenceSequence"), + "300C0051": ("IS", "1", "Referenced Dose Reference Number", "", "ReferencedDoseReferenceNumber"), + "300C0055": ("SQ", "1", "Brachy Referenced Dose Reference Sequence", "", "BrachyReferencedDoseReferenceSequence"), + "300C0060": ("SQ", "1", "Referenced Structure Set Sequence", "", "ReferencedStructureSetSequence"), + "300C006A": ("IS", "1", "Referenced Patient Setup Number", "", "ReferencedPatientSetupNumber"), + "300C0080": ("SQ", "1", "Referenced Dose Sequence", "", "ReferencedDoseSequence"), + "300C00A0": ("IS", "1", "Referenced Tolerance Table Number", "", "ReferencedToleranceTableNumber"), + "300C00B0": ("SQ", "1", "Referenced Bolus Sequence", "", "ReferencedBolusSequence"), + "300C00C0": ("IS", "1", "Referenced Wedge Number", "", "ReferencedWedgeNumber"), + "300C00D0": ("IS", "1", "Referenced Compensator Number", "", "ReferencedCompensatorNumber"), + "300C00E0": ("IS", "1", "Referenced Block Number", "", "ReferencedBlockNumber"), + "300C00F0": ("IS", "1", "Referenced Control Point Index", "", "ReferencedControlPointIndex"), + "300C00F2": ("SQ", "1", "Referenced Control Point Sequence", "", "ReferencedControlPointSequence"), + "300C00F4": ("IS", "1", "Referenced Start Control Point Index", "", "ReferencedStartControlPointIndex"), + "300C00F6": ("IS", "1", "Referenced Stop Control Point Index", "", "ReferencedStopControlPointIndex"), + "300C0100": ("IS", "1", "Referenced Range Shifter Number", "", "ReferencedRangeShifterNumber"), + "300C0102": ("IS", "1", "Referenced Lateral Spreading Device Number", "", "ReferencedLateralSpreadingDeviceNumber"), + "300C0104": ("IS", "1", "Referenced Range Modulator Number", "", "ReferencedRangeModulatorNumber"), + "300C0111": ("SQ", "1", "Omitted Beam Task Sequence", "", "OmittedBeamTaskSequence"), + "300C0112": ("CS", "1", "Reason for Omission", "", "ReasonForOmission"), + "300C0113": ("LO", "1", "Reason for Omission Description", "", "ReasonForOmissionDescription"), + "300E0002": ("CS", "1", "Approval Status", "", "ApprovalStatus"), + "300E0004": ("DA", "1", "Review Date", "", "ReviewDate"), + "300E0005": ("TM", "1", "Review Time", "", "ReviewTime"), + "300E0008": ("PN", "1", "Reviewer Name", "", "ReviewerName"), + "40000010": ("LT", "1", "Arbitrary", "Retired", "Arbitrary"), + "40004000": ("LT", "1", "Text Comments", "Retired", "TextComments"), + "40080040": ("SH", "1", "Results ID", "Retired", "ResultsID"), + "40080042": ("LO", "1", "Results ID Issuer", "Retired", "ResultsIDIssuer"), + "40080050": ("SQ", "1", "Referenced Interpretation Sequence", "Retired", "ReferencedInterpretationSequence"), + "400800FF": ("CS", "1", "Report Production Status (Trial)", "Retired", "ReportProductionStatusTrial"), + "40080100": ("DA", "1", "Interpretation Recorded Date", "Retired", "InterpretationRecordedDate"), + "40080101": ("TM", "1", "Interpretation Recorded Time", "Retired", "InterpretationRecordedTime"), + "40080102": ("PN", "1", "Interpretation Recorder", "Retired", "InterpretationRecorder"), + "40080103": ("LO", "1", "Reference to Recorded Sound", "Retired", "ReferenceToRecordedSound"), + "40080108": ("DA", "1", "Interpretation Transcription Date", "Retired", "InterpretationTranscriptionDate"), + "40080109": ("TM", "1", "Interpretation Transcription Time", "Retired", "InterpretationTranscriptionTime"), + "4008010A": ("PN", "1", "Interpretation Transcriber", "Retired", "InterpretationTranscriber"), + "4008010B": ("ST", "1", "Interpretation Text", "Retired", "InterpretationText"), + "4008010C": ("PN", "1", "Interpretation Author", "Retired", "InterpretationAuthor"), + "40080111": ("SQ", "1", "Interpretation Approver Sequence", "Retired", "InterpretationApproverSequence"), + "40080112": ("DA", "1", "Interpretation Approval Date", "Retired", "InterpretationApprovalDate"), + "40080113": ("TM", "1", "Interpretation Approval Time", "Retired", "InterpretationApprovalTime"), + "40080114": ("PN", "1", "Physician Approving Interpretation", "Retired", "PhysicianApprovingInterpretation"), + "40080115": ("LT", "1", "Interpretation Diagnosis Description", "Retired", "InterpretationDiagnosisDescription"), + "40080117": ("SQ", "1", "Interpretation Diagnosis Code Sequence", "Retired", "InterpretationDiagnosisCodeSequence"), + "40080118": ("SQ", "1", "Results Distribution List Sequence", "Retired", "ResultsDistributionListSequence"), + "40080119": ("PN", "1", "Distribution Name", "Retired", "DistributionName"), + "4008011A": ("LO", "1", "Distribution Address", "Retired", "DistributionAddress"), + "40080200": ("SH", "1", "Interpretation ID", "Retired", "InterpretationID"), + "40080202": ("LO", "1", "Interpretation ID Issuer", "Retired", "InterpretationIDIssuer"), + "40080210": ("CS", "1", "Interpretation Type ID", "Retired", "InterpretationTypeID"), + "40080212": ("CS", "1", "Interpretation Status ID", "Retired", "InterpretationStatusID"), + "40080300": ("ST", "1", "Impressions", "Retired", "Impressions"), + "40084000": ("ST", "1", "Results Comments", "Retired", "ResultsComments"), + "40100001": ("CS", "1", "Low Energy Detectors", "", "LowEnergyDetectors"), + "40100002": ("CS", "1", "High Energy Detectors", "", "HighEnergyDetectors"), + "40100004": ("SQ", "1", "Detector Geometry Sequence", "", "DetectorGeometrySequence"), + "40101001": ("SQ", "1", "Threat ROI Voxel Sequence", "", "ThreatROIVoxelSequence"), + "40101004": ("FL", "3", "Threat ROI Base", "", "ThreatROIBase"), + "40101005": ("FL", "3", "Threat ROI Extents", "", "ThreatROIExtents"), + "40101006": ("OB", "1", "Threat ROI Bitmap", "", "ThreatROIBitmap"), + "40101007": ("SH", "1", "Route Segment ID", "", "RouteSegmentID"), + "40101008": ("CS", "1", "Gantry Type", "", "GantryType"), + "40101009": ("CS", "1", "OOI Owner Type", "", "OOIOwnerType"), + "4010100A": ("SQ", "1", "Route Segment Sequence", "", "RouteSegmentSequence"), + "40101010": ("US", "1", "Potential Threat Object ID", "", "PotentialThreatObjectID"), + "40101011": ("SQ", "1", "Threat Sequence", "", "ThreatSequence"), + "40101012": ("CS", "1", "Threat Category", "", "ThreatCategory"), + "40101013": ("LT", "1", "Threat Category Description", "", "ThreatCategoryDescription"), + "40101014": ("CS", "1", "ATD Ability Assessment", "", "ATDAbilityAssessment"), + "40101015": ("CS", "1", "ATD Assessment Flag", "", "ATDAssessmentFlag"), + "40101016": ("FL", "1", "ATD Assessment Probability", "", "ATDAssessmentProbability"), + "40101017": ("FL", "1", "Mass", "", "Mass"), + "40101018": ("FL", "1", "Density", "", "Density"), + "40101019": ("FL", "1", "Z Effective", "", "ZEffective"), + "4010101A": ("SH", "1", "Boarding Pass ID", "", "BoardingPassID"), + "4010101B": ("FL", "3", "Center of Mass", "", "CenterOfMass"), + "4010101C": ("FL", "3", "Center of PTO", "", "CenterOfPTO"), + "4010101D": ("FL", "6-n", "Bounding Polygon", "", "BoundingPolygon"), + "4010101E": ("SH", "1", "Route Segment Start Location ID", "", "RouteSegmentStartLocationID"), + "4010101F": ("SH", "1", "Route Segment End Location ID", "", "RouteSegmentEndLocationID"), + "40101020": ("CS", "1", "Route Segment Location ID Type", "", "RouteSegmentLocationIDType"), + "40101021": ("CS", "1-n", "Abort Reason", "", "AbortReason"), + "40101023": ("FL", "1", "Volume of PTO", "", "VolumeOfPTO"), + "40101024": ("CS", "1", "Abort Flag", "", "AbortFlag"), + "40101025": ("DT", "1", "Route Segment Start Time", "", "RouteSegmentStartTime"), + "40101026": ("DT", "1", "Route Segment End Time", "", "RouteSegmentEndTime"), + "40101027": ("CS", "1", "TDR Type", "", "TDRType"), + "40101028": ("CS", "1", "International Route Segment", "", "InternationalRouteSegment"), + "40101029": ("LO", "1-n", "Threat Detection Algorithm and Version", "", "ThreatDetectionAlgorithmandVersion"), + "4010102A": ("SH", "1", "Assigned Location", "", "AssignedLocation"), + "4010102B": ("DT", "1", "Alarm Decision Time", "", "AlarmDecisionTime"), + "40101031": ("CS", "1", "Alarm Decision", "", "AlarmDecision"), + "40101033": ("US", "1", "Number of Total Objects", "", "NumberOfTotalObjects"), + "40101034": ("US", "1", "Number of Alarm Objects", "", "NumberOfAlarmObjects"), + "40101037": ("SQ", "1", "PTO Representation Sequence", "", "PTORepresentationSequence"), + "40101038": ("SQ", "1", "ATD Assessment Sequence", "", "ATDAssessmentSequence"), + "40101039": ("CS", "1", "TIP Type", "", "TIPType"), + "4010103A": ("CS", "1", "DICOS Version", "", "DICOSVersion"), + "40101041": ("DT", "1", "OOI Owner Creation Time", "", "OOIOwnerCreationTime"), + "40101042": ("CS", "1", "OOI Type", "", "OOIType"), + "40101043": ("FL", "3", "OOI Size", "", "OOISize"), + "40101044": ("CS", "1", "Acquisition Status", "", "AcquisitionStatus"), + "40101045": ("SQ", "1", "Basis Materials Code Sequence", "", "BasisMaterialsCodeSequence"), + "40101046": ("CS", "1", "Phantom Type", "", "PhantomType"), + "40101047": ("SQ", "1", "OOI Owner Sequence", "", "OOIOwnerSequence"), + "40101048": ("CS", "1", "Scan Type", "", "ScanType"), + "40101051": ("LO", "1", "Itinerary ID", "", "ItineraryID"), + "40101052": ("SH", "1", "Itinerary ID Type", "", "ItineraryIDType"), + "40101053": ("LO", "1", "Itinerary ID Assigning Authority", "", "ItineraryIDAssigningAuthority"), + "40101054": ("SH", "1", "Route ID", "", "RouteID"), + "40101055": ("SH", "1", "Route ID Assigning Authority", "", "RouteIDAssigningAuthority"), + "40101056": ("CS", "1", "Inbound Arrival Type", "", "InboundArrivalType"), + "40101058": ("SH", "1", "Carrier ID", "", "CarrierID"), + "40101059": ("CS", "1", "Carrier ID Assigning Authority", "", "CarrierIDAssigningAuthority"), + "40101060": ("FL", "3", "Source Orientation", "", "SourceOrientation"), + "40101061": ("FL", "3", "Source Position", "", "SourcePosition"), + "40101062": ("FL", "1", "Belt Height", "", "BeltHeight"), + "40101064": ("SQ", "1", "Algorithm Routing Code Sequence", "", "AlgorithmRoutingCodeSequence"), + "40101067": ("CS", "1", "Transport Classification", "", "TransportClassification"), + "40101068": ("LT", "1", "OOI Type Descriptor", "", "OOITypeDescriptor"), + "40101069": ("FL", "1", "Total Processing Time", "", "TotalProcessingTime"), + "4010106C": ("OB", "1", "Detector Calibration Data", "", "DetectorCalibrationData"), + "4010106D": ("CS", "1", "Additional Screening Performed", "", "AdditionalScreeningPerformed"), + "4010106E": ("CS", "1", "Additional Inspection Selection Criteria", "", "AdditionalInspectionSelectionCriteria"), + "4010106F": ("SQ", "1", "Additional Inspection Method Sequence", "", "AdditionalInspectionMethodSequence"), + "40101070": ("CS", "1", "AIT Device Type", "", "AITDeviceType"), + "40101071": ("SQ", "1", "QR Measurements Sequence", "", "QRMeasurementsSequence"), + "40101072": ("SQ", "1", "Target Material Sequence", "", "TargetMaterialSequence"), + "40101073": ("FD", "1", "SNR Threshold", "", "SNRThreshold"), + "40101075": ("DS", "1", "Image Scale Representation", "", "ImageScaleRepresentation"), + "40101076": ("SQ", "1", "Referenced PTO Sequence", "", "ReferencedPTOSequence"), + "40101077": ("SQ", "1", "Referenced TDR Instance Sequence", "", "ReferencedTDRInstanceSequence"), + "40101078": ("ST", "1", "PTO Location Description", "", "PTOLocationDescription"), + "40101079": ("SQ", "1", "Anomaly Locator Indicator Sequence", "", "AnomalyLocatorIndicatorSequence"), + "4010107A": ("FL", "3", "Anomaly Locator Indicator", "", "AnomalyLocatorIndicator"), + "4010107B": ("SQ", "1", "PTO Region Sequence", "", "PTORegionSequence"), + "4010107C": ("CS", "1", "Inspection Selection Criteria", "", "InspectionSelectionCriteria"), + "4010107D": ("SQ", "1", "Secondary Inspection Method Sequence", "", "SecondaryInspectionMethodSequence"), + "4010107E": ("DS", "6", "PRCS to RCS Orientation", "", "PRCSToRCSOrientation"), + "4FFE0001": ("SQ", "1", "MAC Parameters Sequence", "", "MACParametersSequence"), + "52009229": ("SQ", "1", "Shared Functional Groups Sequence", "", "SharedFunctionalGroupsSequence"), + "52009230": ("SQ", "1", "Per-frame Functional Groups Sequence", "", "PerFrameFunctionalGroupsSequence"), + "54000100": ("SQ", "1", "Waveform Sequence", "", "WaveformSequence"), + "54000110": ("OB or OW", "1", "Channel Minimum Value", "", "ChannelMinimumValue"), + "54000112": ("OB or OW", "1", "Channel Maximum Value", "", "ChannelMaximumValue"), + "54001004": ("US", "1", "Waveform Bits Allocated", "", "WaveformBitsAllocated"), + "54001006": ("CS", "1", "Waveform Sample Interpretation", "", "WaveformSampleInterpretation"), + "5400100A": ("OB or OW", "1", "Waveform Padding Value", "", "WaveformPaddingValue"), + "54001010": ("OB or OW", "1", "Waveform Data", "", "WaveformData"), + "56000010": ("OF", "1", "First Order Phase Correction Angle", "", "FirstOrderPhaseCorrectionAngle"), + "56000020": ("OF", "1", "Spectroscopy Data", "", "SpectroscopyData"), + "7FE00008": ("OF", "1", "Float Pixel Data", "", "FloatPixelData"), + "7FE00009": ("OD", "1", "Double Float Pixel Data", "", "DoubleFloatPixelData"), + "7FE00010": ("OB or OW", "1", "Pixel Data", "", "PixelData"), + "7FE00020": ("OW", "1", "Coefficients SDVN", "Retired", "CoefficientsSDVN"), + "7FE00030": ("OW", "1", "Coefficients SDHN", "Retired", "CoefficientsSDHN"), + "7FE00040": ("OW", "1", "Coefficients SDDN", "Retired", "CoefficientsSDDN"), + "FFFAFFFA": ("SQ", "1", "Digital Signatures Sequence", "", "DigitalSignaturesSequence"), + "FFFCFFFC": ("OB", "1", "Data Set Trailing Padding", "", "DataSetTrailingPadding"), + "FFFEE000": ("NONE", "1", "Item", "", "Item"), + "FFFEE00D": ("NONE", "1", "Item Delimitation Item", "", "ItemDelimitationItem"), + "FFFEE0DD": ("NONE", "1", "Sequence Delimitation Item", "", "SequenceDelimitationItem") +} diff --git a/dicom_ontology.owl b/dicom_ontology.owl index cafe650..d8a2682 100644 --- a/dicom_ontology.owl +++ b/dicom_ontology.owl @@ -46,7 +46,6 @@ obo:IAO_0000115 "A property used to connect a class to a constituent part.​" . - ################################################################# # # Datatype Properties @@ -70,27 +69,29 @@ dicom:dicom_00280011 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006864F0 dicom:dicom_006864F0 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "2D Degree Of Freedom Axis"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "Direction cosines of the axis of the degree of freedom. See ."^^xsd:string ; + obo:IAO_0000115 "Direction cosines of the axis of the degree of freedom."^^xsd:string ; dicom:dicom_xxxx0065 "(0068,64F0)"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686470 dicom:dicom_00686470 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "2D Degree of Freedom Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -102,11 +103,12 @@ dicom:dicom_00686470 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_007800A0 dicom:dicom_007800A0 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "2D Implant Template Group Member Matching Axes"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -118,11 +120,12 @@ dicom:dicom_007800A0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00780090 dicom:dicom_00780090 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "2D Implant Template Group Member Matching Point"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -134,11 +137,12 @@ dicom:dicom_00780090 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006865A0 dicom:dicom_006865A0 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "2D Line Coordinates Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -150,11 +154,12 @@ dicom:dicom_006865A0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006865B0 dicom:dicom_006865B0 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "2D Line Coordinates"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -166,11 +171,12 @@ dicom:dicom_006865B0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686460 dicom:dicom_00686460 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "2D Mating Axes"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -182,11 +188,12 @@ dicom:dicom_00686460 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686430 dicom:dicom_00686430 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "2D Mating Feature Coordinates Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -198,11 +205,12 @@ dicom:dicom_00686430 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686450 dicom:dicom_00686450 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "2D Mating Point"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -214,11 +222,12 @@ dicom:dicom_00686450 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006865E0 dicom:dicom_006865E0 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "2D Plane Coordinates Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -230,11 +239,12 @@ dicom:dicom_006865E0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006865F0 dicom:dicom_006865F0 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "2D Plane Intersection"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -246,11 +256,12 @@ dicom:dicom_006865F0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686550 dicom:dicom_00686550 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "2D Point Coordinates Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -262,11 +273,12 @@ dicom:dicom_00686550 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686560 dicom:dicom_00686560 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "2D Point Coordinates"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -278,11 +290,12 @@ dicom:dicom_00686560 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686490 dicom:dicom_00686490 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "3D Degree Of Freedom Axis"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -294,11 +307,12 @@ dicom:dicom_00686490 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00780060 dicom:dicom_00780060 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "3D Implant Template Group Member Matching Axes"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -310,11 +324,12 @@ dicom:dicom_00780060 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00780050 dicom:dicom_00780050 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "3D Implant Template Group Member Matching Point"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -326,11 +341,12 @@ dicom:dicom_00780050 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006865D0 dicom:dicom_006865D0 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "3D Line Coordinates"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -342,11 +358,12 @@ dicom:dicom_006865D0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006864D0 dicom:dicom_006864D0 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "3D Mating Axes"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -358,11 +375,12 @@ dicom:dicom_006864D0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006864C0 dicom:dicom_006864C0 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "3D Mating Point"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -374,11 +392,12 @@ dicom:dicom_006864C0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686620 dicom:dicom_00686620 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "3D Plane Normal"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -390,11 +409,12 @@ dicom:dicom_00686620 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686610 dicom:dicom_00686610 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "3D Plane Origin"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -406,11 +426,12 @@ dicom:dicom_00686610 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686590 dicom:dicom_00686590 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "3D Point Coordinates"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -422,11 +443,12 @@ dicom:dicom_00686590 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720520 dicom:dicom_00720520 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "3D Rendering Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -438,11 +460,12 @@ dicom:dicom_00720520 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00520014 dicom:dicom_00520014 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "A-line Pixel Spacing"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -454,11 +477,12 @@ dicom:dicom_00520014 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00520011 dicom:dicom_00520011 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "A-line Rate"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -470,11 +494,12 @@ dicom:dicom_00520011 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00520012 dicom:dicom_00520012 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "A-lines Per Frame"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -486,27 +511,29 @@ dicom:dicom_00520012 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018925F dicom:dicom_0018925F rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "ASL Bolus Cut-off Delay Time"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "Bolus Cut-off pulse delay time (in ms). See for further explanation."^^xsd:string ; + obo:IAO_0000115 "Bolus Cut-off pulse delay time (in ms)."^^xsd:string ; dicom:dicom_xxxx0065 "(0018,925F)"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018925C dicom:dicom_0018925C rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "ASL Bolus Cut-off Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -518,11 +545,12 @@ dicom:dicom_0018925C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018925E dicom:dicom_0018925E rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "ASL Bolus Cut-off Technique"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -534,11 +562,12 @@ dicom:dicom_0018925E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018925D dicom:dicom_0018925D rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "ASL Bolus Cut-off Timing Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -550,11 +579,12 @@ dicom:dicom_0018925D rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189257 dicom:dicom_00189257 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "ASL Context"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -566,11 +596,12 @@ dicom:dicom_00189257 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018925B dicom:dicom_0018925B rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "ASL Crusher Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -582,11 +613,12 @@ dicom:dicom_0018925B rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189259 dicom:dicom_00189259 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "ASL Crusher Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -598,11 +630,12 @@ dicom:dicom_00189259 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018925A dicom:dicom_0018925A rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "ASL Crusher Flow Limit"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -614,11 +647,12 @@ dicom:dicom_0018925A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189256 dicom:dicom_00189256 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "ASL Mid Slab Position"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -630,11 +664,12 @@ dicom:dicom_00189256 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189258 dicom:dicom_00189258 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "ASL Pulse Train Duration"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -646,11 +681,12 @@ dicom:dicom_00189258 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189253 dicom:dicom_00189253 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "ASL Slab Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -662,11 +698,12 @@ dicom:dicom_00189253 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189255 dicom:dicom_00189255 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "ASL Slab Orientation"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -678,11 +715,12 @@ dicom:dicom_00189255 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189260 dicom:dicom_00189260 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "ASL Slab Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -694,11 +732,12 @@ dicom:dicom_00189260 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189254 dicom:dicom_00189254 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "ASL Slab Thickness"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -710,11 +749,12 @@ dicom:dicom_00189254 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189252 dicom:dicom_00189252 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "ASL Technique Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -726,11 +766,12 @@ dicom:dicom_00189252 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0248 dicom:dicom_003A0248 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Absolute Channel Display Scale"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -742,11 +783,12 @@ dicom:dicom_003A0248 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0072003E dicom:dicom_0072003E rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Abstract Prior Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -758,11 +800,12 @@ dicom:dicom_0072003E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0072003C dicom:dicom_0072003C rdf:type owl:DatatypeProperty ; + dicom:VR "SS"^^xsd:string ; + rdfs:label "Abstract Prior Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -774,7 +817,6 @@ dicom:dicom_0072003C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080050 dicom:dicom_00080050 rdf:type owl:DatatypeProperty ; @@ -787,13 +829,11 @@ dicom:dicom_00080050 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0050)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00F9 dicom:dicom_300A00F9 rdf:type owl:DatatypeProperty ; @@ -806,17 +846,17 @@ dicom:dicom_300A00F9 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00F9)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189473 dicom:dicom_00189473 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Acquired Image Area Dose Product"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -828,11 +868,12 @@ dicom:dicom_00189473 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400556 dicom:dicom_00400556 rdf:type owl:DatatypeProperty ; + dicom:VR "ST"^^xsd:string ; + rdfs:label "Acquisition Context Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -844,11 +885,12 @@ dicom:dicom_00400556 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400555 dicom:dicom_00400555 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Acquisition Context Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -860,7 +902,6 @@ dicom:dicom_00400555 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00089209 dicom:dicom_00089209 rdf:type owl:DatatypeProperty ; @@ -878,7 +919,6 @@ dicom:dicom_00089209 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080022 dicom:dicom_00080022 rdf:type owl:DatatypeProperty ; @@ -891,13 +931,11 @@ dicom:dicom_00080022 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0022)"^^xsd:string ; - dicom:VR "DA"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0008002A dicom:dicom_0008002A rdf:type owl:DatatypeProperty ; @@ -915,11 +953,12 @@ dicom:dicom_0008002A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181401 dicom:dicom_00181401 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Acquisition Device Processing Code"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -931,24 +970,23 @@ dicom:dicom_00181401 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00181400 dicom:dicom_00181400 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Acquisition Device Processing Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "Indicates any visual processing performed on the frame or image prior to exchange. See ."^^xsd:string ; + obo:IAO_0000115 "Indicates any visual processing performed on the frame or image prior to exchange."^^xsd:string ; dicom:dicom_xxxx0065 "(0018,1400)"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220015 dicom:dicom_00220015 rdf:type owl:DatatypeProperty ; @@ -966,7 +1004,6 @@ dicom:dicom_00220015 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189073 dicom:dicom_00189073 rdf:type owl:DatatypeProperty ; @@ -984,8 +1021,6 @@ dicom:dicom_00189073 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00189073 dicom:dicom_00189073 rdf:type owl:DatatypeProperty ; @@ -998,17 +1033,17 @@ dicom:dicom_00189073 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9073)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189932 dicom:dicom_00189932 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Acquisition End Location Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1020,11 +1055,12 @@ dicom:dicom_00189932 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209518 dicom:dicom_00209518 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Acquisition Index"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1036,7 +1072,6 @@ dicom:dicom_00209518 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181310 dicom:dicom_00181310 rdf:type owl:DatatypeProperty ; @@ -1049,17 +1084,17 @@ dicom:dicom_00181310 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1310)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221423 dicom:dicom_00221423 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Acquisition Method Algorithm Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1071,11 +1106,12 @@ dicom:dicom_00221423 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221420 dicom:dicom_00221420 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Acquisition Method Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1087,11 +1123,12 @@ dicom:dicom_00221420 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189930 dicom:dicom_00189930 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Acquisition Motion"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1103,7 +1140,6 @@ dicom:dicom_00189930 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00200012 dicom:dicom_00200012 rdf:type owl:DatatypeProperty ; @@ -1116,50 +1152,51 @@ dicom:dicom_00200012 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,0012)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00189920 dicom:dicom_00189920 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Acquisition Protocol Element Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "Parameter values for each Protocol Element in the acquisition protocol. Each item in the sequence describes one Element. Elements are performed in the order of their Protocol Element Number (0018,9921). See . Zero or more Items shall be included in this Sequence."^^xsd:string ; + obo:IAO_0000115 "Parameter values for each Protocol Element in the acquisition protocol. Each item in the sequence describes one Element. Elements are performed in the order of their Protocol Element Number (0018,9921). Zero or more Items shall be included in this Sequence."^^xsd:string ; dicom:dicom_xxxx0065 "(0018,9920)"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018991F dicom:dicom_0018991F rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Acquisition Protocol Element Specification Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "Specification of the acquisition parameters for acquisition protocol elements in an imaging procedure. There shall be one item in this sequence for each Acquisition Protocol Element in the Protocol. See . One or more Items shall be included in this Sequence."^^xsd:string ; + obo:IAO_0000115 "Specification of the acquisition parameters for acquisition protocol elements in an imaging procedure. There shall be one item in this sequence for each Acquisition Protocol Element in the Protocol. One or more Items shall be included in this Sequence."^^xsd:string ; dicom:dicom_xxxx0065 "(0018,991F)"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189423 dicom:dicom_00189423 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Acquisition Protocol Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1171,7 +1208,6 @@ dicom:dicom_00189423 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180074 dicom:dicom_00180074 rdf:type owl:DatatypeProperty ; @@ -1184,13 +1220,11 @@ dicom:dicom_00180074 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0074)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180073 dicom:dicom_00180073 rdf:type owl:DatatypeProperty ; @@ -1203,17 +1237,17 @@ dicom:dicom_00180073 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0073)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189931 dicom:dicom_00189931 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Acquisition Start Location Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1225,11 +1259,12 @@ dicom:dicom_00189931 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180075 dicom:dicom_00180075 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Acquisition Termination Condition Data"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1241,7 +1276,6 @@ dicom:dicom_00180075 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180071 dicom:dicom_00180071 rdf:type owl:DatatypeProperty ; @@ -1254,13 +1288,11 @@ dicom:dicom_00180071 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0071)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181800 dicom:dicom_00181800 rdf:type owl:DatatypeProperty ; @@ -1273,13 +1305,11 @@ dicom:dicom_00181800 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1800)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080032 dicom:dicom_00080032 rdf:type owl:DatatypeProperty ; @@ -1292,17 +1322,17 @@ dicom:dicom_00080032 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0032)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189302 dicom:dicom_00189302 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Acquisition Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1314,11 +1344,12 @@ dicom:dicom_00189302 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220048 dicom:dicom_00220048 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Across-scan Spatial Resolution"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1330,7 +1361,6 @@ dicom:dicom_00220048 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0218 dicom:dicom_300A0218 rdf:type owl:DatatypeProperty ; @@ -1343,13 +1373,11 @@ dicom:dicom_300A0218 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0218)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A021A dicom:dicom_300A021A rdf:type owl:DatatypeProperty ; @@ -1362,17 +1390,17 @@ dicom:dicom_300A021A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,021A)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209252 dicom:dicom_00209252 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Actual Cardiac Trigger Delay Time"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1384,11 +1412,12 @@ dicom:dicom_00209252 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209155 dicom:dicom_00209155 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Actual Cardiac Trigger Time Prior to R-peak"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1400,11 +1429,12 @@ dicom:dicom_00209155 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181242 dicom:dicom_00181242 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Actual Frame Duration"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1416,11 +1446,12 @@ dicom:dicom_00181242 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209257 dicom:dicom_00209257 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Actual Respiratory Trigger Delay Time"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1432,11 +1463,12 @@ dicom:dicom_00209257 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460101 dicom:dicom_00460101 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Add Intermediate Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1448,11 +1480,12 @@ dicom:dicom_00460101 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460100 dicom:dicom_00460100 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Add Near Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1464,11 +1497,12 @@ dicom:dicom_00460100 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460102 dicom:dicom_00460102 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Add Other Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1480,11 +1514,12 @@ dicom:dicom_00460102 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460104 dicom:dicom_00460104 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Add Power"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1496,11 +1531,12 @@ dicom:dicom_00460104 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018002A dicom:dicom_0018002A rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Additional Drug Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1512,7 +1548,6 @@ dicom:dicom_0018002A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_001021B0 dicom:dicom_001021B0 rdf:type owl:DatatypeProperty ; @@ -1525,13 +1560,11 @@ dicom:dicom_001021B0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0010,21B0)"^^xsd:string ; - dicom:VR "LT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540302 dicom:dicom_00540302 rdf:type owl:DatatypeProperty ; @@ -1544,13 +1577,11 @@ dicom:dicom_00540302 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0302)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00380010 dicom:dicom_00380010 rdf:type owl:DatatypeProperty ; @@ -1563,13 +1594,11 @@ dicom:dicom_00380010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0038,0010)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081084 dicom:dicom_00081084 rdf:type owl:DatatypeProperty ; @@ -1582,13 +1611,11 @@ dicom:dicom_00081084 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1084)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081080 dicom:dicom_00081080 rdf:type owl:DatatypeProperty ; @@ -1601,17 +1628,17 @@ dicom:dicom_00081080 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1080)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240065 dicom:dicom_00240065 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Age Corrected Sensitivity Deviation Algorithm Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1623,11 +1650,12 @@ dicom:dicom_00240065 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240100 dicom:dicom_00240100 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Age Corrected Sensitivity Deviation Probability Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1639,11 +1667,12 @@ dicom:dicom_00240100 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240092 dicom:dicom_00240092 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Age Corrected Sensitivity Deviation Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1655,11 +1684,12 @@ dicom:dicom_00240092 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189528 dicom:dicom_00189528 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Algorithm Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1671,11 +1701,12 @@ dicom:dicom_00189528 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0066002F dicom:dicom_0066002F rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Algorithm Family Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1687,11 +1718,12 @@ dicom:dicom_0066002F rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660030 dicom:dicom_00660030 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Algorithm Name Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1703,11 +1735,12 @@ dicom:dicom_00660030 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660036 dicom:dicom_00660036 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Algorithm Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1719,11 +1752,12 @@ dicom:dicom_00660036 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660032 dicom:dicom_00660032 rdf:type owl:DatatypeProperty ; + dicom:VR "LT"^^xsd:string ; + rdfs:label "Algorithm Parameters"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1735,11 +1769,12 @@ dicom:dicom_00660032 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240202 dicom:dicom_00240202 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Algorithm Source"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1751,11 +1786,12 @@ dicom:dicom_00240202 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189527 dicom:dicom_00189527 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Algorithm Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1767,11 +1803,12 @@ dicom:dicom_00189527 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660031 dicom:dicom_00660031 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Algorithm Version"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1783,7 +1820,6 @@ dicom:dicom_00660031 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00102110 dicom:dicom_00102110 rdf:type owl:DatatypeProperty ; @@ -1796,17 +1832,17 @@ dicom:dicom_00102110 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0010,2110)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220037 dicom:dicom_00220037 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Along-scan Spatial Resolution"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1818,11 +1854,12 @@ dicom:dicom_00220037 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281410 dicom:dicom_00281410 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Alpha LUT Transfer Function"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1834,11 +1871,12 @@ dicom:dicom_00281410 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281204 dicom:dicom_00281204 rdf:type owl:DatatypeProperty ; + dicom:VR "OW"^^xsd:string ; + rdfs:label "Alpha Palette Color Lookup Table Data"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1850,11 +1888,12 @@ dicom:dicom_00281204 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281104 dicom:dicom_00281104 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Alpha Palette Color Lookup Table Descriptor"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1866,11 +1905,12 @@ dicom:dicom_00281104 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0092 dicom:dicom_300A0092 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Alternate Beam Dose Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1882,11 +1922,12 @@ dicom:dicom_300A0092 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0091 dicom:dicom_300A0091 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Alternate Beam Dose"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1898,11 +1939,12 @@ dicom:dicom_300A0091 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400515 dicom:dicom_00400515 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Alternate Container Identifier Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1914,11 +1956,12 @@ dicom:dicom_00400515 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700087 dicom:dicom_00700087 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Alternate Content Description Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1930,11 +1973,12 @@ dicom:dicom_00700087 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460227 dicom:dicom_00460227 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Analyzed Area"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -1946,7 +1990,6 @@ dicom:dicom_00460227 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00082220 dicom:dicom_00082220 rdf:type owl:DatatypeProperty ; @@ -1959,13 +2002,11 @@ dicom:dicom_00082220 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,2220)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00082218 dicom:dicom_00082218 rdf:type owl:DatatypeProperty ; @@ -1978,17 +2019,17 @@ dicom:dicom_00082218 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,2218)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221463 dicom:dicom_00221463 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Anatomic Structure Reference Point"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2000,11 +2041,12 @@ dicom:dicom_00221463 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00102210 dicom:dicom_00102210 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Anatomical Orientation Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2016,7 +2058,6 @@ dicom:dicom_00102210 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700004 dicom:dicom_00700004 rdf:type owl:DatatypeProperty ; @@ -2029,13 +2070,11 @@ dicom:dicom_00700004 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0004)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700015 dicom:dicom_00700015 rdf:type owl:DatatypeProperty ; @@ -2048,13 +2087,11 @@ dicom:dicom_00700015 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0015)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700014 dicom:dicom_00700014 rdf:type owl:DatatypeProperty ; @@ -2067,13 +2104,11 @@ dicom:dicom_00700014 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0014)"^^xsd:string ; - dicom:VR "FL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180025 dicom:dicom_00180025 rdf:type owl:DatatypeProperty ; @@ -2086,13 +2121,11 @@ dicom:dicom_00180025 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0025)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181144 dicom:dicom_00181144 rdf:type owl:DatatypeProperty ; @@ -2105,13 +2138,11 @@ dicom:dicom_00181144 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1144)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540090 dicom:dicom_00540090 rdf:type owl:DatatypeProperty ; @@ -2124,17 +2155,17 @@ dicom:dicom_00540090 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0090)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701A04 dicom:dicom_00701A04 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Animation Curve Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2146,11 +2177,12 @@ dicom:dicom_00701A04 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701A05 dicom:dicom_00701A05 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Animation Step Size"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2162,11 +2194,12 @@ dicom:dicom_00701A05 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701907 dicom:dicom_00701907 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Annotation Clipping"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2178,7 +2211,6 @@ dicom:dicom_00701907 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A180 dicom:dicom_0040A180 rdf:type owl:DatatypeProperty ; @@ -2191,13 +2223,11 @@ dicom:dicom_0040A180 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A180)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181191 dicom:dicom_00181191 rdf:type owl:DatatypeProperty ; @@ -2210,17 +2240,17 @@ dicom:dicom_00181191 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1191)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221125 dicom:dicom_00221125 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Anterior Chamber Depth Definition Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2232,11 +2262,12 @@ dicom:dicom_00221125 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221128 dicom:dicom_00221128 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Anterior Chamber Depth Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2248,11 +2279,12 @@ dicom:dicom_00221128 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221131 dicom:dicom_00221131 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Anterior Chamber Depth"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2264,7 +2296,6 @@ dicom:dicom_00221131 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00286102 dicom:dicom_00286102 rdf:type owl:DatatypeProperty ; @@ -2277,13 +2308,11 @@ dicom:dicom_00286102 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,6102)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189174 dicom:dicom_00189174 rdf:type owl:DatatypeProperty ; @@ -2296,13 +2325,11 @@ dicom:dicom_00189174 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9174)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189175 dicom:dicom_00189175 rdf:type owl:DatatypeProperty ; @@ -2315,17 +2342,17 @@ dicom:dicom_00189175 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9175)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189526 dicom:dicom_00189526 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Application Manufacturer"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2337,11 +2364,12 @@ dicom:dicom_00189526 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0072010E dicom:dicom_0072010E rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Application Maximum Repaint Time"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2353,11 +2381,12 @@ dicom:dicom_0072010E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189524 dicom:dicom_00189524 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Application Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2369,7 +2398,6 @@ dicom:dicom_00189524 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080116 dicom:dicom_30080116 rdf:type owl:DatatypeProperty ; @@ -2382,13 +2410,11 @@ dicom:dicom_30080116 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0116)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0238 dicom:dicom_300A0238 rdf:type owl:DatatypeProperty ; @@ -2401,13 +2427,11 @@ dicom:dicom_300A0238 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0238)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0236 dicom:dicom_300A0236 rdf:type owl:DatatypeProperty ; @@ -2420,13 +2444,11 @@ dicom:dicom_300A0236 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0236)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0234 dicom:dicom_300A0234 rdf:type owl:DatatypeProperty ; @@ -2439,13 +2461,11 @@ dicom:dicom_300A0234 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0234)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0230 dicom:dicom_300A0230 rdf:type owl:DatatypeProperty ; @@ -2458,13 +2478,11 @@ dicom:dicom_300A0230 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0230)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0232 dicom:dicom_300A0232 rdf:type owl:DatatypeProperty ; @@ -2477,17 +2495,17 @@ dicom:dicom_300A0232 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0232)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189525 dicom:dicom_00189525 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Application Version"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2499,11 +2517,12 @@ dicom:dicom_00189525 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0432 dicom:dicom_300A0432 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Applicator Aperture Shape"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2515,7 +2534,6 @@ dicom:dicom_300A0432 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A010A dicom:dicom_300A010A rdf:type owl:DatatypeProperty ; @@ -2528,17 +2546,17 @@ dicom:dicom_300A010A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,010A)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0431 dicom:dicom_300A0431 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Applicator Geometry Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2550,7 +2568,6 @@ dicom:dicom_300A0431 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0108 dicom:dicom_300A0108 rdf:type owl:DatatypeProperty ; @@ -2563,17 +2580,17 @@ dicom:dicom_300A0108 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0108)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0434 dicom:dicom_300A0434 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Applicator Opening X"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2585,11 +2602,12 @@ dicom:dicom_300A0434 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0435 dicom:dicom_300A0435 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Applicator Opening Y"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2601,11 +2619,12 @@ dicom:dicom_300A0435 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0433 dicom:dicom_300A0433 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Applicator Opening"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2617,7 +2636,6 @@ dicom:dicom_300A0433 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0107 dicom:dicom_300A0107 rdf:type owl:DatatypeProperty ; @@ -2630,13 +2648,11 @@ dicom:dicom_300A0107 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0107)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0109 dicom:dicom_300A0109 rdf:type owl:DatatypeProperty ; @@ -2649,17 +2665,17 @@ dicom:dicom_300A0109 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0109)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300E0002 dicom:dicom_300E0002 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Approval Status"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2671,11 +2687,12 @@ dicom:dicom_300E0002 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189250 dicom:dicom_00189250 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Arterial Spin Labeling Contrast"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2687,11 +2704,12 @@ dicom:dicom_00189250 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00820010 dicom:dicom_00820010 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Assessed Attribute Value Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2703,11 +2721,12 @@ dicom:dicom_00820010 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00820004 dicom:dicom_00820004 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Assessed SOP Instance Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2719,11 +2738,12 @@ dicom:dicom_00820004 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00820023 dicom:dicom_00820023 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Assessment Label"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2735,11 +2755,12 @@ dicom:dicom_00820023 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00820007 dicom:dicom_00820007 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Assessment Observations Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2751,11 +2772,12 @@ dicom:dicom_00820007 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00820017 dicom:dicom_00820017 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Assessment Requester Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2767,11 +2789,12 @@ dicom:dicom_00820017 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00820016 dicom:dicom_00820016 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Assessment Set ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2783,11 +2806,12 @@ dicom:dicom_00820016 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00820003 dicom:dicom_00820003 rdf:type owl:DatatypeProperty ; + dicom:VR "UT"^^xsd:string ; + rdfs:label "Assessment Summary Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2799,11 +2823,12 @@ dicom:dicom_00820003 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00820001 dicom:dicom_00820001 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Assessment Summary"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2815,11 +2840,12 @@ dicom:dicom_00820001 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00820021 dicom:dicom_00820021 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Assessment Type Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2831,11 +2857,12 @@ dicom:dicom_00820021 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040003A dicom:dicom_0040003A rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Assigning Agency or Department Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2847,11 +2874,12 @@ dicom:dicom_0040003A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400036 dicom:dicom_00400036 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Assigning Facility Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2863,11 +2891,12 @@ dicom:dicom_00400036 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400039 dicom:dicom_00400039 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Assigning Jurisdiction Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2879,7 +2908,6 @@ dicom:dicom_00400039 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060049 dicom:dicom_30060049 rdf:type owl:DatatypeProperty ; @@ -2892,17 +2920,17 @@ dicom:dicom_30060049 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0049)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189759 dicom:dicom_00189759 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Attenuation Corrected"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2914,7 +2942,6 @@ dicom:dicom_00189759 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541101 dicom:dicom_00541101 rdf:type owl:DatatypeProperty ; @@ -2927,17 +2954,17 @@ dicom:dicom_00541101 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1101)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189738 dicom:dicom_00189738 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Attenuation Correction Source"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2949,11 +2976,12 @@ dicom:dicom_00189738 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189770 dicom:dicom_00189770 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Attenuation Correction Temporal Relationship"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2965,11 +2993,12 @@ dicom:dicom_00189770 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_04000562 dicom:dicom_04000562 rdf:type owl:DatatypeProperty ; + dicom:VR "DT"^^xsd:string ; + rdfs:label "Attribute Modification DateTime"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2981,11 +3010,12 @@ dicom:dicom_04000562 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A078 dicom:dicom_0040A078 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Author Observer Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -2997,7 +3027,6 @@ dicom:dicom_0040A078 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_01000426 dicom:dicom_01000426 rdf:type owl:DatatypeProperty ; @@ -3010,17 +3039,17 @@ dicom:dicom_01000426 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0100,0426)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189946 dicom:dicom_00189946 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Auto KVP Lower Bound"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3032,11 +3061,12 @@ dicom:dicom_00189946 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189944 dicom:dicom_00189944 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Auto KVP Selection Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3048,11 +3078,12 @@ dicom:dicom_00189944 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189945 dicom:dicom_00189945 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Auto KVP Upper Bound"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3064,11 +3095,12 @@ dicom:dicom_00189945 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460052 dicom:dicom_00460052 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Autorefraction Left Eye Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3080,11 +3112,12 @@ dicom:dicom_00460052 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460050 dicom:dicom_00460050 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Autorefraction Right Eye Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3096,11 +3129,12 @@ dicom:dicom_00460050 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A008D dicom:dicom_300A008D rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Average Beam Dose Point Depth"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3112,11 +3146,12 @@ dicom:dicom_300A008D rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A008E dicom:dicom_300A008E rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Average Beam Dose Point Equivalent Depth"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3128,11 +3163,12 @@ dicom:dicom_300A008E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A008F dicom:dicom_300A008F rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Average Beam Dose Point SSD"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3144,11 +3180,12 @@ dicom:dicom_300A008F rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0131 dicom:dicom_300A0131 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Average Beam Dose Point Source to External Contour Distance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3160,11 +3197,12 @@ dicom:dicom_300A0131 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460220 dicom:dicom_00460220 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Average Corneal Power"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3176,7 +3214,6 @@ dicom:dicom_00460220 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181154 dicom:dicom_00181154 rdf:type owl:DatatypeProperty ; @@ -3189,13 +3226,11 @@ dicom:dicom_00181154 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1154)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541200 dicom:dicom_00541200 rdf:type owl:DatatypeProperty ; @@ -3208,17 +3243,17 @@ dicom:dicom_00541200 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1200)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189727 dicom:dicom_00189727 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Axial Detector Dimension"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3230,11 +3265,12 @@ dicom:dicom_00189727 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220030 dicom:dicom_00220030 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Axial Length of the Eye"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3246,7 +3282,6 @@ dicom:dicom_00220030 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541201 dicom:dicom_00541201 rdf:type owl:DatatypeProperty ; @@ -3259,17 +3294,17 @@ dicom:dicom_00541201 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1201)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460249 dicom:dicom_00460249 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Axial Power"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3281,11 +3316,12 @@ dicom:dicom_00460249 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00520008 dicom:dicom_00520008 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Axial Resolution"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3297,11 +3333,12 @@ dicom:dicom_00520008 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0066001B dicom:dicom_0066001B rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Axis of Rotation"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3313,27 +3350,29 @@ dicom:dicom_0066001B rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181320 dicom:dicom_00181320 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "B1rms"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "B1+ rms value in units of micro_tesla (uT) for the acquisition producing the image. See ."^^xsd:string ; + obo:IAO_0000115 "B1+ rms value in units of micro_tesla (uT) for the acquisition producing the image."^^xsd:string ; dicom:dicom_xxxx0065 "(0018,1320)"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460092 dicom:dicom_00460092 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Background Color"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3345,11 +3384,12 @@ dicom:dicom_00460092 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240024 dicom:dicom_00240024 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Background Illumination Color Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3361,11 +3401,12 @@ dicom:dicom_00240024 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240020 dicom:dicom_00240020 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Background Luminance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3377,7 +3418,6 @@ dicom:dicom_00240020 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_22000005 dicom:dicom_22000005 rdf:type owl:DatatypeProperty ; @@ -3390,13 +3430,11 @@ dicom:dicom_22000005 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(2200,0005)"^^xsd:string ; - dicom:VR "LT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189067 dicom:dicom_00189067 rdf:type owl:DatatypeProperty ; @@ -3409,17 +3447,17 @@ dicom:dicom_00189067 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9067)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189449 dicom:dicom_00189449 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Beam Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3431,11 +3469,12 @@ dicom:dicom_00189449 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00C5 dicom:dicom_300A00C5 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Beam Delivery Duration Limit"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3447,7 +3486,6 @@ dicom:dicom_300A00C5 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00C3 dicom:dicom_300A00C3 rdf:type owl:DatatypeProperty ; @@ -3460,17 +3498,17 @@ dicom:dicom_300A00C3 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00C3)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A008B dicom:dicom_300A008B rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Beam Dose Meaning"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3482,7 +3520,6 @@ dicom:dicom_300A008B rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0082 dicom:dicom_300A0082 rdf:type owl:DatatypeProperty ; @@ -3495,17 +3532,17 @@ dicom:dicom_300A0082 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0082)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0090 dicom:dicom_300A0090 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Beam Dose Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3517,11 +3554,12 @@ dicom:dicom_300A0090 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A008C dicom:dicom_300A008C rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Beam Dose Verification Control Point Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3533,7 +3571,6 @@ dicom:dicom_300A008C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0084 dicom:dicom_300A0084 rdf:type owl:DatatypeProperty ; @@ -3546,13 +3583,11 @@ dicom:dicom_300A0084 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0084)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0046 dicom:dicom_300A0046 rdf:type owl:DatatypeProperty ; @@ -3565,13 +3600,11 @@ dicom:dicom_300A0046 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0046)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0120 dicom:dicom_300A0120 rdf:type owl:DatatypeProperty ; @@ -3584,13 +3617,11 @@ dicom:dicom_300A0120 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0120)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0120 dicom:dicom_300A0120 rdf:type owl:DatatypeProperty ; @@ -3603,13 +3634,11 @@ dicom:dicom_300A0120 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0120)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300800A0 dicom:dicom_300800A0 rdf:type owl:DatatypeProperty ; @@ -3622,13 +3651,11 @@ dicom:dicom_300800A0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,00A0)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A011A dicom:dicom_300A011A rdf:type owl:DatatypeProperty ; @@ -3641,13 +3668,11 @@ dicom:dicom_300A011A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,011A)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A004A dicom:dicom_300A004A rdf:type owl:DatatypeProperty ; @@ -3660,13 +3685,11 @@ dicom:dicom_300A004A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,004A)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0121 dicom:dicom_300A0121 rdf:type owl:DatatypeProperty ; @@ -3679,13 +3702,11 @@ dicom:dicom_300A0121 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0121)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0121 dicom:dicom_300A0121 rdf:type owl:DatatypeProperty ; @@ -3698,13 +3719,11 @@ dicom:dicom_300A0121 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0121)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00B6 dicom:dicom_300A00B6 rdf:type owl:DatatypeProperty ; @@ -3717,13 +3736,11 @@ dicom:dicom_300A00B6 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00B6)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0048 dicom:dicom_300A0048 rdf:type owl:DatatypeProperty ; @@ -3736,13 +3753,11 @@ dicom:dicom_300A0048 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0048)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0086 dicom:dicom_300A0086 rdf:type owl:DatatypeProperty ; @@ -3755,13 +3770,11 @@ dicom:dicom_300A0086 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0086)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00C2 dicom:dicom_300A00C2 rdf:type owl:DatatypeProperty ; @@ -3774,13 +3787,11 @@ dicom:dicom_300A00C2 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00C2)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00C2 dicom:dicom_300A00C2 rdf:type owl:DatatypeProperty ; @@ -3793,13 +3804,11 @@ dicom:dicom_300A00C2 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00C2)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00C0 dicom:dicom_300A00C0 rdf:type owl:DatatypeProperty ; @@ -3812,13 +3821,11 @@ dicom:dicom_300A00C0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00C0)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00C0 dicom:dicom_300A00C0 rdf:type owl:DatatypeProperty ; @@ -3831,13 +3838,11 @@ dicom:dicom_300A00C0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00C0)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00B0 dicom:dicom_300A00B0 rdf:type owl:DatatypeProperty ; @@ -3850,17 +3855,17 @@ dicom:dicom_300A00B0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00B0)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00520003 dicom:dicom_00520003 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Beam Spot Size"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3872,7 +3877,6 @@ dicom:dicom_00520003 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080230 dicom:dicom_30080230 rdf:type owl:DatatypeProperty ; @@ -3885,13 +3889,11 @@ dicom:dicom_30080230 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0230)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00C4 dicom:dicom_300A00C4 rdf:type owl:DatatypeProperty ; @@ -3904,13 +3906,11 @@ dicom:dicom_300A00C4 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00C4)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00C4 dicom:dicom_300A00C4 rdf:type owl:DatatypeProperty ; @@ -3923,13 +3923,11 @@ dicom:dicom_300A00C4 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00C4)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181080 dicom:dicom_00181080 rdf:type owl:DatatypeProperty ; @@ -3942,13 +3940,11 @@ dicom:dicom_00181080 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1080)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181080 dicom:dicom_00181080 rdf:type owl:DatatypeProperty ; @@ -3961,17 +3957,17 @@ dicom:dicom_00181080 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1080)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00182041 dicom:dicom_00182041 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Biopsy Target Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -3983,7 +3979,6 @@ dicom:dicom_00182041 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280100 dicom:dicom_00280100 rdf:type owl:DatatypeProperty ; @@ -3996,17 +3991,17 @@ dicom:dicom_00280100 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,0100)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281403 dicom:dicom_00281403 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Bits Mapped to Color Lookup Table"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4018,7 +4013,6 @@ dicom:dicom_00281403 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280101 dicom:dicom_00280101 rdf:type owl:DatatypeProperty ; @@ -4031,18 +4025,17 @@ dicom:dicom_00280101 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,0101)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00281404 dicom:dicom_00281404 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Blending LUT 1 Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4054,11 +4047,12 @@ dicom:dicom_00281404 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281405 dicom:dicom_00281405 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Blending LUT 1 Transfer Function"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4070,11 +4064,12 @@ dicom:dicom_00281405 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0028140C dicom:dicom_0028140C rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Blending LUT 2 Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4086,11 +4081,12 @@ dicom:dicom_0028140C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0028140D dicom:dicom_0028140D rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Blending LUT 2 Transfer Function"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4102,11 +4098,12 @@ dicom:dicom_0028140D rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281408 dicom:dicom_00281408 rdf:type owl:DatatypeProperty ; + dicom:VR "OW"^^xsd:string ; + rdfs:label "Blending Lookup Table Data"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4118,11 +4115,12 @@ dicom:dicom_00281408 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281408 dicom:dicom_00281408 rdf:type owl:DatatypeProperty ; + dicom:VR "OW"^^xsd:string ; + rdfs:label "Blending Lookup Table Data"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4134,11 +4132,12 @@ dicom:dicom_00281408 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281407 dicom:dicom_00281407 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Blending Lookup Table Descriptor"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4150,11 +4149,12 @@ dicom:dicom_00281407 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281407 dicom:dicom_00281407 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Blending Lookup Table Descriptor"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4166,11 +4166,12 @@ dicom:dicom_00281407 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720500 dicom:dicom_00720500 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Blending Operation Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4182,11 +4183,12 @@ dicom:dicom_00720500 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700405 dicom:dicom_00700405 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Blending Position"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4198,11 +4200,12 @@ dicom:dicom_00700405 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700402 dicom:dicom_00700402 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Blending Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4214,11 +4217,12 @@ dicom:dicom_00700402 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281406 dicom:dicom_00281406 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Blending Weight Constant"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4230,11 +4234,12 @@ dicom:dicom_00281406 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281406 dicom:dicom_00281406 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Blending Weight Constant"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4246,11 +4251,12 @@ dicom:dicom_00281406 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240106 dicom:dicom_00240106 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Blind Spot Localized"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4262,11 +4268,12 @@ dicom:dicom_00240106 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240107 dicom:dicom_00240107 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Blind Spot X-Coordinate"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4278,11 +4285,12 @@ dicom:dicom_00240107 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240108 dicom:dicom_00240108 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Blind Spot Y-Coordinate"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4294,7 +4302,6 @@ dicom:dicom_00240108 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0106 dicom:dicom_300A0106 rdf:type owl:DatatypeProperty ; @@ -4307,13 +4314,11 @@ dicom:dicom_300A0106 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0106)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00FA dicom:dicom_300A00FA rdf:type owl:DatatypeProperty ; @@ -4326,17 +4331,17 @@ dicom:dicom_300A00FA rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00FA)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080303 dicom:dicom_00080303 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Block Identifying Information Status"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4348,7 +4353,6 @@ dicom:dicom_00080303 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00FB dicom:dicom_300A00FB rdf:type owl:DatatypeProperty ; @@ -4361,13 +4365,11 @@ dicom:dicom_300A00FB rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00FB)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00FE dicom:dicom_300A00FE rdf:type owl:DatatypeProperty ; @@ -4380,13 +4382,11 @@ dicom:dicom_300A00FE rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00FE)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0104 dicom:dicom_300A0104 rdf:type owl:DatatypeProperty ; @@ -4399,13 +4399,11 @@ dicom:dicom_300A0104 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0104)"^^xsd:string ; - dicom:VR "LS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00FC dicom:dicom_300A00FC rdf:type owl:DatatypeProperty ; @@ -4418,13 +4416,11 @@ dicom:dicom_300A00FC rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00FC)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00F4 dicom:dicom_300A00F4 rdf:type owl:DatatypeProperty ; @@ -4437,13 +4433,11 @@ dicom:dicom_300A00F4 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00F4)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00F4 dicom:dicom_300A00F4 rdf:type owl:DatatypeProperty ; @@ -4456,13 +4450,11 @@ dicom:dicom_300A00F4 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00F4)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0100 dicom:dicom_300A0100 rdf:type owl:DatatypeProperty ; @@ -4475,17 +4467,17 @@ dicom:dicom_300A0100 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0100)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0102 dicom:dicom_300A0102 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Block Transmission"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4497,7 +4489,6 @@ dicom:dicom_300A0102 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00F5 dicom:dicom_300A00F5 rdf:type owl:DatatypeProperty ; @@ -4510,13 +4501,11 @@ dicom:dicom_300A00F5 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00F5)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00F8 dicom:dicom_300A00F8 rdf:type owl:DatatypeProperty ; @@ -4529,13 +4518,11 @@ dicom:dicom_300A00F8 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00F8)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189022 dicom:dicom_00189022 rdf:type owl:DatatypeProperty ; @@ -4548,13 +4535,11 @@ dicom:dicom_00189022 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9022)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281203 dicom:dicom_00281203 rdf:type owl:DatatypeProperty ; @@ -4567,13 +4552,11 @@ dicom:dicom_00281203 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,1203)"^^xsd:string ; - dicom:VR "OW"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281103 dicom:dicom_00281103 rdf:type owl:DatatypeProperty ; @@ -4586,13 +4569,11 @@ dicom:dicom_00281103 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,1103)"^^xsd:string ; - dicom:VR "US or SS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180015 dicom:dicom_00180015 rdf:type owl:DatatypeProperty ; @@ -4605,13 +4586,11 @@ dicom:dicom_00180015 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0015)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_001811A0 dicom:dicom_001811A0 rdf:type owl:DatatypeProperty ; @@ -4624,17 +4603,17 @@ dicom:dicom_001811A0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,11A0)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700249 dicom:dicom_00700249 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Bold"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4646,11 +4625,12 @@ dicom:dicom_00700249 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00DD dicom:dicom_300A00DD rdf:type owl:DatatypeProperty ; + dicom:VR "ST"^^xsd:string ; + rdfs:label "Bolus Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4662,11 +4642,12 @@ dicom:dicom_300A00DD rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00DC dicom:dicom_300A00DC rdf:type owl:DatatypeProperty ; + dicom:VR "SH"^^xsd:string ; + rdfs:label "Bolus ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4678,7 +4659,6 @@ dicom:dicom_300A00DC rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00185024 dicom:dicom_00185024 rdf:type owl:DatatypeProperty ; @@ -4691,17 +4671,17 @@ dicom:dicom_00185024 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,5024)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480202 dicom:dicom_00480202 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Bottom Right Hand Corner of Localizer Area"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4713,7 +4693,6 @@ dicom:dicom_00480202 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700003 dicom:dicom_00700003 rdf:type owl:DatatypeProperty ; @@ -4726,13 +4705,11 @@ dicom:dicom_00700003 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0003)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700011 dicom:dicom_00700011 rdf:type owl:DatatypeProperty ; @@ -4745,13 +4722,11 @@ dicom:dicom_00700011 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0011)"^^xsd:string ; - dicom:VR "FL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700011 dicom:dicom_00700011 rdf:type owl:DatatypeProperty ; @@ -4764,17 +4739,17 @@ dicom:dicom_00700011 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0011)"^^xsd:string ; - dicom:VR "FL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701303 dicom:dicom_00701303 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Bounding Box Crop"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4786,7 +4761,6 @@ dicom:dicom_00701303 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700012 dicom:dicom_00700012 rdf:type owl:DatatypeProperty ; @@ -4799,13 +4773,11 @@ dicom:dicom_00700012 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0012)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700012 dicom:dicom_00700012 rdf:type owl:DatatypeProperty ; @@ -4818,13 +4790,11 @@ dicom:dicom_00700012 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0012)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700010 dicom:dicom_00700010 rdf:type owl:DatatypeProperty ; @@ -4837,17 +4807,17 @@ dicom:dicom_00700010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0010)"^^xsd:string ; - dicom:VR "FL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686347 dicom:dicom_00686347 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Bounding Rectangle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -4859,7 +4829,6 @@ dicom:dicom_00686347 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0263 dicom:dicom_300A0263 rdf:type owl:DatatypeProperty ; @@ -4872,13 +4841,11 @@ dicom:dicom_300A0263 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0263)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0266 dicom:dicom_300A0266 rdf:type owl:DatatypeProperty ; @@ -4891,13 +4858,11 @@ dicom:dicom_300A0266 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0266)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A026A dicom:dicom_300A026A rdf:type owl:DatatypeProperty ; @@ -4906,17 +4871,15 @@ dicom:dicom_300A026A rdf:type owl:DatatypeProperty ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "Nominal thickness of Brachy Accessory Device (mm). See ."^^xsd:string ; + obo:IAO_0000115 "Nominal thickness of Brachy Accessory Device (mm)."^^xsd:string ; dicom:dicom_xxxx0065 "(300A,026A)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A026C dicom:dicom_300A026C rdf:type owl:DatatypeProperty ; @@ -4925,17 +4888,15 @@ dicom:dicom_300A026C rdf:type owl:DatatypeProperty ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "Nominal Transmission through Brachy Accessory Device (between 0 and 1). See ."^^xsd:string ; + obo:IAO_0000115 "Nominal Transmission through Brachy Accessory Device (between 0 and 1)."^^xsd:string ; dicom:dicom_xxxx0065 "(300A,026C)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0262 dicom:dicom_300A0262 rdf:type owl:DatatypeProperty ; @@ -4948,13 +4909,11 @@ dicom:dicom_300A0262 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0262)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0260 dicom:dicom_300A0260 rdf:type owl:DatatypeProperty ; @@ -4967,13 +4926,11 @@ dicom:dicom_300A0260 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0260)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0264 dicom:dicom_300A0264 rdf:type owl:DatatypeProperty ; @@ -4986,13 +4943,11 @@ dicom:dicom_300A0264 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0264)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00A2 dicom:dicom_300A00A2 rdf:type owl:DatatypeProperty ; @@ -5005,13 +4960,11 @@ dicom:dicom_300A00A2 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00A2)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00A4 dicom:dicom_300A00A4 rdf:type owl:DatatypeProperty ; @@ -5024,13 +4977,11 @@ dicom:dicom_300A00A4 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00A4)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080160 dicom:dicom_30080160 rdf:type owl:DatatypeProperty ; @@ -5043,13 +4994,11 @@ dicom:dicom_30080160 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0160)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A02D0 dicom:dicom_300A02D0 rdf:type owl:DatatypeProperty ; @@ -5062,17 +5011,17 @@ dicom:dicom_300A02D0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,02D0)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080173 dicom:dicom_30080173 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Brachy Pulse Control Point Delivered Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5084,7 +5033,6 @@ dicom:dicom_30080173 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300C0055 dicom:dicom_300C0055 rdf:type owl:DatatypeProperty ; @@ -5097,13 +5045,11 @@ dicom:dicom_300C0055 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,0055)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0200 dicom:dicom_300A0200 rdf:type owl:DatatypeProperty ; @@ -5116,13 +5062,11 @@ dicom:dicom_300A0200 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0200)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0202 dicom:dicom_300A0202 rdf:type owl:DatatypeProperty ; @@ -5135,13 +5079,11 @@ dicom:dicom_300A0202 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0202)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281300 dicom:dicom_00281300 rdf:type owl:DatatypeProperty ; @@ -5154,17 +5096,17 @@ dicom:dicom_00281300 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,1300)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189545 dicom:dicom_00189545 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Breast Support Isocenter Primary Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5176,11 +5118,12 @@ dicom:dicom_00189545 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189546 dicom:dicom_00189546 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Breast Support Isocenter Secondary Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5192,11 +5135,12 @@ dicom:dicom_00189546 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189547 dicom:dicom_00189547 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Breast Support X Position to Isocenter"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5208,11 +5152,12 @@ dicom:dicom_00189547 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189548 dicom:dicom_00189548 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Breast Support Y Position to Isocenter"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5224,11 +5169,12 @@ dicom:dicom_00189548 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189549 dicom:dicom_00189549 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Breast Support Z Position to Isocenter"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5240,11 +5186,12 @@ dicom:dicom_00189549 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00102295 dicom:dicom_00102295 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Breed Registration Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5256,11 +5203,12 @@ dicom:dicom_00102295 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00102294 dicom:dicom_00102294 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Breed Registration Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5272,11 +5220,12 @@ dicom:dicom_00102294 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00102296 dicom:dicom_00102296 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Breed Registry Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5288,11 +5237,12 @@ dicom:dicom_00102296 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189172 dicom:dicom_00189172 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Bulk Motion Compensation Technique"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5304,11 +5254,12 @@ dicom:dicom_00189172 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189173 dicom:dicom_00189173 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Bulk Motion Signal Source"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5320,7 +5271,6 @@ dicom:dicom_00189173 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280301 dicom:dicom_00280301 rdf:type owl:DatatypeProperty ; @@ -5333,17 +5283,17 @@ dicom:dicom_00280301 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,0301)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189474 dicom:dicom_00189474 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "C-arm Positioner Tabletop Relationship"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5355,11 +5305,12 @@ dicom:dicom_00189474 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700229 dicom:dicom_00700229 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "CSS Font Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5371,11 +5322,12 @@ dicom:dicom_00700229 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189304 dicom:dicom_00189304 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "CT Acquisition Details Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5387,11 +5339,12 @@ dicom:dicom_00189304 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189301 dicom:dicom_00189301 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "CT Acquisition Type Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5403,11 +5356,12 @@ dicom:dicom_00189301 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189360 dicom:dicom_00189360 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "CT Additional X-Ray Source Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5419,11 +5373,12 @@ dicom:dicom_00189360 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189321 dicom:dicom_00189321 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "CT Exposure Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5435,11 +5390,12 @@ dicom:dicom_00189321 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189312 dicom:dicom_00189312 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "CT Geometry Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5451,11 +5407,12 @@ dicom:dicom_00189312 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189329 dicom:dicom_00189329 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "CT Image Frame Type Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5467,11 +5424,12 @@ dicom:dicom_00189329 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189326 dicom:dicom_00189326 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "CT Position Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5483,11 +5441,12 @@ dicom:dicom_00189326 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189314 dicom:dicom_00189314 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "CT Reconstruction Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5499,11 +5458,12 @@ dicom:dicom_00189314 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189308 dicom:dicom_00189308 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "CT Table Dynamics Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5515,11 +5475,12 @@ dicom:dicom_00189308 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189325 dicom:dicom_00189325 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "CT X-Ray Details Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5531,11 +5492,12 @@ dicom:dicom_00189325 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189325 dicom:dicom_00189325 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "CT X-Ray Details Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5547,11 +5509,12 @@ dicom:dicom_00189325 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189346 dicom:dicom_00189346 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "CTDI Phantom Type Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5563,11 +5526,12 @@ dicom:dicom_00189346 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189346 dicom:dicom_00189346 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "CTDI Phantom Type Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5579,11 +5543,12 @@ dicom:dicom_00189346 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189942 dicom:dicom_00189942 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "CTDIvol Notification Trigger"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5595,11 +5560,12 @@ dicom:dicom_00189942 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189345 dicom:dicom_00189345 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "CTDIvol"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5611,11 +5577,12 @@ dicom:dicom_00189345 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189352 dicom:dicom_00189352 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Calcium Scoring Mass Factor Device"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5627,11 +5594,12 @@ dicom:dicom_00189352 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189351 dicom:dicom_00189351 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Calcium Scoring Mass Factor Patient"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5643,11 +5611,12 @@ dicom:dicom_00189351 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189452 dicom:dicom_00189452 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Calculated Anatomy Thickness"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5659,11 +5628,12 @@ dicom:dicom_00189452 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080074 dicom:dicom_30080074 rdf:type owl:DatatypeProperty ; + dicom:VR "ST"^^xsd:string ; + rdfs:label "Calculated Dose Reference Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5675,11 +5645,12 @@ dicom:dicom_30080074 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080076 dicom:dicom_30080076 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Calculated Dose Reference Dose Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5691,11 +5662,12 @@ dicom:dicom_30080076 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080072 dicom:dicom_30080072 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Calculated Dose Reference Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5707,11 +5679,12 @@ dicom:dicom_30080072 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080070 dicom:dicom_30080070 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Calculated Dose Reference Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5723,11 +5696,12 @@ dicom:dicom_30080070 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081162 dicom:dicom_00081162 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Calculated Frame List"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5739,11 +5713,12 @@ dicom:dicom_00081162 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00182044 dicom:dicom_00182044 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Calculated Target Position"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5755,7 +5730,6 @@ dicom:dicom_00182044 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540306 dicom:dicom_00540306 rdf:type owl:DatatypeProperty ; @@ -5768,13 +5742,11 @@ dicom:dicom_00540306 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0306)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00500004 dicom:dicom_00500004 rdf:type owl:DatatypeProperty ; @@ -5787,17 +5759,17 @@ dicom:dicom_00500004 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0050,0004)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189455 dicom:dicom_00189455 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Calibration Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5809,11 +5781,12 @@ dicom:dicom_00189455 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189169 dicom:dicom_00189169 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Cardiac Beat Rejection Technique"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5825,7 +5798,6 @@ dicom:dicom_00189169 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189236 dicom:dicom_00189236 rdf:type owl:DatatypeProperty ; @@ -5838,13 +5810,11 @@ dicom:dicom_00189236 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9236)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181064 dicom:dicom_00181064 rdf:type owl:DatatypeProperty ; @@ -5853,17 +5823,15 @@ dicom:dicom_00181064 rdf:type owl:DatatypeProperty ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "Description of type of framing performed. See for description and Defined Terms."^^xsd:string ; + obo:IAO_0000115 "Description of type of framing performed."^^xsd:string ; dicom:dicom_xxxx0065 "(0018,1064)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181064 dicom:dicom_00181064 rdf:type owl:DatatypeProperty ; @@ -5876,13 +5844,11 @@ dicom:dicom_00181064 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1064)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181090 dicom:dicom_00181090 rdf:type owl:DatatypeProperty ; @@ -5895,17 +5861,17 @@ dicom:dicom_00181090 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1090)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189070 dicom:dicom_00189070 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Cardiac RR Interval Specified"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5917,11 +5883,12 @@ dicom:dicom_00189070 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189085 dicom:dicom_00189085 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Cardiac Signal Source"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5933,11 +5900,12 @@ dicom:dicom_00189085 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189085 dicom:dicom_00189085 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Cardiac Signal Source"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5949,11 +5917,12 @@ dicom:dicom_00189085 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189118 dicom:dicom_00189118 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Cardiac Synchronization Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5965,11 +5934,12 @@ dicom:dicom_00189118 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189037 dicom:dicom_00189037 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Cardiac Synchronization Technique"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5981,11 +5951,12 @@ dicom:dicom_00189037 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189037 dicom:dicom_00189037 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Cardiac Synchronization Technique"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -5997,11 +5968,12 @@ dicom:dicom_00189037 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181007 dicom:dicom_00181007 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Cassette ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6013,11 +5985,12 @@ dicom:dicom_00181007 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181402 dicom:dicom_00181402 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Cassette Orientation"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6029,11 +6002,12 @@ dicom:dicom_00181402 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181403 dicom:dicom_00181403 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Cassette Size"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6045,11 +6019,12 @@ dicom:dicom_00181403 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240055 dicom:dicom_00240055 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Catch Trials Data Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6061,11 +6036,12 @@ dicom:dicom_00240055 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00520031 dicom:dicom_00520031 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Catheter Direction of Rotation"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6077,11 +6053,12 @@ dicom:dicom_00520031 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00520013 dicom:dicom_00520013 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Catheter Rotational Rate"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6093,7 +6070,6 @@ dicom:dicom_00520013 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181710 dicom:dicom_00181710 rdf:type owl:DatatypeProperty ; @@ -6106,17 +6082,17 @@ dicom:dicom_00181710 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1710)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189440 dicom:dicom_00189440 rdf:type owl:DatatypeProperty ; + dicom:VR "SS"^^xsd:string ; + rdfs:label "Center of Circular Exposure Control Sensing Region"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6128,11 +6104,12 @@ dicom:dicom_00189440 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181610 dicom:dicom_00181610 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Center of Circular Shutter"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6144,7 +6121,6 @@ dicom:dicom_00181610 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181145 dicom:dicom_00181145 rdf:type owl:DatatypeProperty ; @@ -6157,17 +6133,17 @@ dicom:dicom_00181145 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1145)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0066001C dicom:dicom_0066001C rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Center of Rotation"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6179,11 +6155,12 @@ dicom:dicom_0066001C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_04000110 dicom:dicom_04000110 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Certificate Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6195,11 +6172,12 @@ dicom:dicom_04000110 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_04000115 dicom:dicom_04000115 rdf:type owl:DatatypeProperty ; + dicom:VR "OB"^^xsd:string ; + rdfs:label "Certificate of Signer"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6211,11 +6189,12 @@ dicom:dicom_04000115 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_04000305 dicom:dicom_04000305 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Certified Timestamp Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6227,23 +6206,23 @@ dicom:dicom_04000305 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_04000310 dicom:dicom_04000310 rdf:type owl:DatatypeProperty ; + dicom:VR "OB"^^xsd:string ; + rdfs:label "Certified Timestamp"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "A certified timestamp of the Digital Signature (0400,0120) Attribute Value, which shall be obtained when the Digital Signature is created. See ."^^xsd:string ; + obo:IAO_0000115 "A certified timestamp of the Digital Signature (0400,0120) Attribute Value, which shall be obtained when the Digital Signature is created."^^xsd:string ; dicom:dicom_xxxx0065 "(0400,0310)"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0213 dicom:dicom_003A0213 rdf:type owl:DatatypeProperty ; @@ -6256,13 +6235,11 @@ dicom:dicom_003A0213 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,0213)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0200 dicom:dicom_003A0200 rdf:type owl:DatatypeProperty ; @@ -6275,13 +6252,11 @@ dicom:dicom_003A0200 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,0200)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A020C dicom:dicom_003A020C rdf:type owl:DatatypeProperty ; @@ -6294,13 +6269,11 @@ dicom:dicom_003A020C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,020C)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0022001A dicom:dicom_0022001A rdf:type owl:DatatypeProperty ; @@ -6313,17 +6286,17 @@ dicom:dicom_0022001A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,001A)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0242 dicom:dicom_003A0242 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Channel Display Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6335,11 +6308,12 @@ dicom:dicom_003A0242 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0301 dicom:dicom_003A0301 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Channel Identification Code"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6351,7 +6325,6 @@ dicom:dicom_003A0301 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0203 dicom:dicom_003A0203 rdf:type owl:DatatypeProperty ; @@ -6364,13 +6337,11 @@ dicom:dicom_003A0203 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,0203)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0284 dicom:dicom_300A0284 rdf:type owl:DatatypeProperty ; @@ -6383,13 +6354,11 @@ dicom:dicom_300A0284 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0284)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_54000112 dicom:dicom_54000112 rdf:type owl:DatatypeProperty ; @@ -6402,13 +6371,11 @@ dicom:dicom_54000112 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(5400,0112)"^^xsd:string ; - dicom:VR "OB or OW"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_54000110 dicom:dicom_54000110 rdf:type owl:DatatypeProperty ; @@ -6421,17 +6388,17 @@ dicom:dicom_54000110 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(5400,0110)"^^xsd:string ; - dicom:VR "OB or OW"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0302 dicom:dicom_003A0302 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Channel Mode"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6443,7 +6410,6 @@ dicom:dicom_003A0302 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0282 dicom:dicom_300A0282 rdf:type owl:DatatypeProperty ; @@ -6456,13 +6422,11 @@ dicom:dicom_300A0282 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0282)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0218 dicom:dicom_003A0218 rdf:type owl:DatatypeProperty ; @@ -6475,13 +6439,11 @@ dicom:dicom_003A0218 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,0218)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0218 dicom:dicom_003A0218 rdf:type owl:DatatypeProperty ; @@ -6494,17 +6456,17 @@ dicom:dicom_003A0218 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,0218)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0245 dicom:dicom_003A0245 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Channel Position"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6516,11 +6478,12 @@ dicom:dicom_003A0245 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0244 dicom:dicom_003A0244 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Channel Recommended Display CIELab Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6532,7 +6495,6 @@ dicom:dicom_003A0244 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0215 dicom:dicom_003A0215 rdf:type owl:DatatypeProperty ; @@ -6545,13 +6507,11 @@ dicom:dicom_003A0215 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,0215)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0212 dicom:dicom_003A0212 rdf:type owl:DatatypeProperty ; @@ -6564,13 +6524,11 @@ dicom:dicom_003A0212 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,0212)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0211 dicom:dicom_003A0211 rdf:type owl:DatatypeProperty ; @@ -6583,13 +6541,11 @@ dicom:dicom_003A0211 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,0211)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0210 dicom:dicom_003A0210 rdf:type owl:DatatypeProperty ; @@ -6602,13 +6558,11 @@ dicom:dicom_003A0210 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,0210)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0280 dicom:dicom_300A0280 rdf:type owl:DatatypeProperty ; @@ -6621,13 +6575,11 @@ dicom:dicom_300A0280 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0280)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A02B3 dicom:dicom_300A02B3 rdf:type owl:DatatypeProperty ; @@ -6640,13 +6592,11 @@ dicom:dicom_300A02B3 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,02B3)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A02B4 dicom:dicom_300A02B4 rdf:type owl:DatatypeProperty ; @@ -6659,13 +6609,11 @@ dicom:dicom_300A02B4 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,02B4)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A02B8 dicom:dicom_300A02B8 rdf:type owl:DatatypeProperty ; @@ -6674,17 +6622,15 @@ dicom:dicom_300A02B8 rdf:type owl:DatatypeProperty ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "Nominal Thickness of Channel Shield (mm). See ."^^xsd:string ; + obo:IAO_0000115 "Nominal Thickness of Channel Shield (mm)."^^xsd:string ; dicom:dicom_xxxx0065 "(300A,02B8)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A02BA dicom:dicom_300A02BA rdf:type owl:DatatypeProperty ; @@ -6697,13 +6643,11 @@ dicom:dicom_300A02BA rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,02BA)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A02B2 dicom:dicom_300A02B2 rdf:type owl:DatatypeProperty ; @@ -6716,13 +6660,11 @@ dicom:dicom_300A02B2 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,02B2)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A02B0 dicom:dicom_300A02B0 rdf:type owl:DatatypeProperty ; @@ -6735,13 +6677,11 @@ dicom:dicom_300A02B0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,02B0)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0209 dicom:dicom_003A0209 rdf:type owl:DatatypeProperty ; @@ -6754,17 +6694,17 @@ dicom:dicom_003A0209 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,0209)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0208 dicom:dicom_003A0208 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Channel Source Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6776,7 +6716,6 @@ dicom:dicom_003A0208 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0205 dicom:dicom_003A0205 rdf:type owl:DatatypeProperty ; @@ -6789,13 +6728,11 @@ dicom:dicom_003A0205 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,0205)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0214 dicom:dicom_003A0214 rdf:type owl:DatatypeProperty ; @@ -6808,13 +6745,11 @@ dicom:dicom_003A0214 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,0214)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0286 dicom:dicom_300A0286 rdf:type owl:DatatypeProperty ; @@ -6827,17 +6762,17 @@ dicom:dicom_300A0286 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0286)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460042 dicom:dicom_00460042 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Channel Width"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6849,11 +6784,12 @@ dicom:dicom_00460042 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189296 dicom:dicom_00189296 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Chemical Shift Maximum Integration Limit in ppm"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6865,11 +6801,12 @@ dicom:dicom_00189296 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189295 dicom:dicom_00189295 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Chemical Shift Minimum Integration Limit in ppm"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6881,7 +6818,6 @@ dicom:dicom_00189295 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189053 dicom:dicom_00189053 rdf:type owl:DatatypeProperty ; @@ -6894,13 +6830,11 @@ dicom:dicom_00189053 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9053)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189084 dicom:dicom_00189084 rdf:type owl:DatatypeProperty ; @@ -6913,17 +6847,17 @@ dicom:dicom_00189084 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9084)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180040 dicom:dicom_00180040 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Cine Rate"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6935,11 +6869,12 @@ dicom:dicom_00180040 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720330 dicom:dicom_00720330 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Cine Relative to Real-Time"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6951,11 +6886,12 @@ dicom:dicom_00720330 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720330 dicom:dicom_00720330 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Cine Relative to Real-Time"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6967,11 +6903,12 @@ dicom:dicom_00720330 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00120060 dicom:dicom_00120060 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Clinical Trial Coordinating Center Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6983,11 +6920,12 @@ dicom:dicom_00120060 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00120060 dicom:dicom_00120060 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Clinical Trial Coordinating Center Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -6999,11 +6937,12 @@ dicom:dicom_00120060 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00120082 dicom:dicom_00120082 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Clinical Trial Protocol Ethics Committee Approval Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -7015,11 +6954,12 @@ dicom:dicom_00120082 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00120081 dicom:dicom_00120081 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Clinical Trial Protocol Ethics Committee Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -7031,11 +6971,12 @@ dicom:dicom_00120081 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00120081 dicom:dicom_00120081 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Clinical Trial Protocol Ethics Committee Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -7047,11 +6988,12 @@ dicom:dicom_00120081 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00120020 dicom:dicom_00120020 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Clinical Trial Protocol ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -7063,11 +7005,12 @@ dicom:dicom_00120020 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00120021 dicom:dicom_00120021 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Clinical Trial Protocol Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -7079,43 +7022,46 @@ dicom:dicom_00120021 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00120072 dicom:dicom_00120072 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Clinical Trial Series Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "A description of the series in the context of a clinical trial or research. See ."^^xsd:string ; + obo:IAO_0000115 "A description of the series in the context of a clinical trial or research."^^xsd:string ; dicom:dicom_xxxx0065 "(0012,0072)"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00120071 dicom:dicom_00120071 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Clinical Trial Series ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "An identifier of the series in the context of a clinical trial or research. See ."^^xsd:string ; + obo:IAO_0000115 "An identifier of the series in the context of a clinical trial or research."^^xsd:string ; dicom:dicom_xxxx0065 "(0012,0071)"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00120030 dicom:dicom_00120030 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Clinical Trial Site ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -7127,43 +7073,46 @@ dicom:dicom_00120030 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00120031 dicom:dicom_00120031 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Clinical Trial Site Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "Name of the site responsible for submitting clinical trial data. See ."^^xsd:string ; + obo:IAO_0000115 "Name of the site responsible for submitting clinical trial data."^^xsd:string ; dicom:dicom_xxxx0065 "(0012,0031)"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00120010 dicom:dicom_00120010 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Clinical Trial Sponsor Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "The name of the clinical trial or research sponsor. See ."^^xsd:string ; + obo:IAO_0000115 "The name of the clinical trial or research sponsor."^^xsd:string ; dicom:dicom_xxxx0065 "(0012,0010)"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00120040 dicom:dicom_00120040 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Clinical Trial Subject ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -7175,11 +7124,12 @@ dicom:dicom_00120040 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00120042 dicom:dicom_00120042 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Clinical Trial Subject Reading ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -7191,43 +7141,46 @@ dicom:dicom_00120042 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00120051 dicom:dicom_00120051 rdf:type owl:DatatypeProperty ; + dicom:VR "ST"^^xsd:string ; + rdfs:label "Clinical Trial Time Point Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "A description of a set of one or more studies that are grouped together to represent a clinical time point or submission in a clinical trial or research. See ."^^xsd:string ; + obo:IAO_0000115 "A description of a set of one or more studies that are grouped together to represent a clinical time point or submission in a clinical trial or research."^^xsd:string ; dicom:dicom_xxxx0065 "(0012,0051)"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00120050 dicom:dicom_00120050 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Clinical Trial Time Point ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "An identifier specifying the one or more studies that are grouped together as a clinical time point or submission in a clinical trial or research. See ."^^xsd:string ; + obo:IAO_0000115 "An identifier specifying the one or more studies that are grouped together as a clinical time point or submission in a clinical trial or research."^^xsd:string ; dicom:dicom_xxxx0065 "(0012,0050)"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006863A4 dicom:dicom_006863A4 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Coating Materials Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -7239,7 +7192,6 @@ dicom:dicom_006863A4 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080104 dicom:dicom_00080104 rdf:type owl:DatatypeProperty ; @@ -7252,13 +7204,11 @@ dicom:dicom_00080104 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0104)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080100 dicom:dicom_00080100 rdf:type owl:DatatypeProperty ; @@ -7271,13 +7221,11 @@ dicom:dicom_00080100 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0100)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080102 dicom:dicom_00080102 rdf:type owl:DatatypeProperty ; @@ -7290,13 +7238,11 @@ dicom:dicom_00080102 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0102)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080114 dicom:dicom_00080114 rdf:type owl:DatatypeProperty ; @@ -7309,13 +7255,11 @@ dicom:dicom_00080114 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0114)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080110 dicom:dicom_00080110 rdf:type owl:DatatypeProperty ; @@ -7328,13 +7272,11 @@ dicom:dicom_00080110 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0110)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080115 dicom:dicom_00080115 rdf:type owl:DatatypeProperty ; @@ -7347,13 +7289,11 @@ dicom:dicom_00080115 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0115)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080112 dicom:dicom_00080112 rdf:type owl:DatatypeProperty ; @@ -7366,13 +7306,11 @@ dicom:dicom_00080112 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0112)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080116 dicom:dicom_00080116 rdf:type owl:DatatypeProperty ; @@ -7385,13 +7323,11 @@ dicom:dicom_00080116 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0116)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0008010C dicom:dicom_0008010C rdf:type owl:DatatypeProperty ; @@ -7404,13 +7340,11 @@ dicom:dicom_0008010C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,010C)"^^xsd:string ; - dicom:VR "UI"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080103 dicom:dicom_00080103 rdf:type owl:DatatypeProperty ; @@ -7423,13 +7357,11 @@ dicom:dicom_00080103 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0103)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541210 dicom:dicom_00541210 rdf:type owl:DatatypeProperty ; @@ -7442,13 +7374,11 @@ dicom:dicom_00541210 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1210)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541210 dicom:dicom_00541210 rdf:type owl:DatatypeProperty ; @@ -7461,13 +7391,11 @@ dicom:dicom_00541210 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1210)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181702 dicom:dicom_00181702 rdf:type owl:DatatypeProperty ; @@ -7480,13 +7408,11 @@ dicom:dicom_00181702 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1702)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181702 dicom:dicom_00181702 rdf:type owl:DatatypeProperty ; @@ -7499,13 +7425,11 @@ dicom:dicom_00181702 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1702)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181708 dicom:dicom_00181708 rdf:type owl:DatatypeProperty ; @@ -7518,13 +7442,11 @@ dicom:dicom_00181708 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1708)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181708 dicom:dicom_00181708 rdf:type owl:DatatypeProperty ; @@ -7537,13 +7459,11 @@ dicom:dicom_00181708 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1708)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181704 dicom:dicom_00181704 rdf:type owl:DatatypeProperty ; @@ -7556,13 +7476,11 @@ dicom:dicom_00181704 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1704)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181704 dicom:dicom_00181704 rdf:type owl:DatatypeProperty ; @@ -7575,17 +7493,17 @@ dicom:dicom_00181704 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1704)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189407 dicom:dicom_00189407 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Collimator Shape Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -7597,7 +7515,6 @@ dicom:dicom_00189407 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181700 dicom:dicom_00181700 rdf:type owl:DatatypeProperty ; @@ -7610,13 +7527,11 @@ dicom:dicom_00181700 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1700)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181181 dicom:dicom_00181181 rdf:type owl:DatatypeProperty ; @@ -7629,13 +7544,11 @@ dicom:dicom_00181181 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1181)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181706 dicom:dicom_00181706 rdf:type owl:DatatypeProperty ; @@ -7648,17 +7561,17 @@ dicom:dicom_00181706 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1706)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181180 dicom:dicom_00181180 rdf:type owl:DatatypeProperty ; + dicom:VR "SH"^^xsd:string ; + rdfs:label "Collimator/Grid Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -7670,11 +7583,12 @@ dicom:dicom_00181180 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00282002 dicom:dicom_00282002 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Color Space"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -7686,11 +7600,12 @@ dicom:dicom_00282002 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189447 dicom:dicom_00189447 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Column Angulation (Patient)"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -7702,7 +7617,6 @@ dicom:dicom_00189447 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181450 dicom:dicom_00181450 rdf:type owl:DatatypeProperty ; @@ -7715,18 +7629,17 @@ dicom:dicom_00181450 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1450)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_0048021E dicom:dicom_0048021E rdf:type owl:DatatypeProperty ; + dicom:VR "SL"^^xsd:string ; + rdfs:label "Column Position In Total Image Pixel Matrix"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -7738,7 +7651,6 @@ dicom:dicom_0048021E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280011 dicom:dicom_00280011 rdf:type owl:DatatypeProperty ; @@ -7751,18 +7663,17 @@ dicom:dicom_00280011 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,0011)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00240044 dicom:dicom_00240044 rdf:type owl:DatatypeProperty ; + dicom:VR "LT"^^xsd:string ; + rdfs:label "Comments on Patient's Performance of Visual Field"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -7774,7 +7685,6 @@ dicom:dicom_00240044 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400310 dicom:dicom_00400310 rdf:type owl:DatatypeProperty ; @@ -7787,13 +7697,11 @@ dicom:dicom_00400310 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,0310)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400280 dicom:dicom_00400280 rdf:type owl:DatatypeProperty ; @@ -7806,13 +7714,11 @@ dicom:dicom_00400280 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,0280)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00E8 dicom:dicom_300A00E8 rdf:type owl:DatatypeProperty ; @@ -7825,17 +7731,17 @@ dicom:dicom_300A00E8 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00E8)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A02EB dicom:dicom_300A02EB rdf:type owl:DatatypeProperty ; + dicom:VR "LT"^^xsd:string ; + rdfs:label "Compensator Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -7847,7 +7753,6 @@ dicom:dicom_300A02EB rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A02E0 dicom:dicom_300A02E0 rdf:type owl:DatatypeProperty ; @@ -7860,13 +7765,11 @@ dicom:dicom_300A02E0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,02E0)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00E5 dicom:dicom_300A00E5 rdf:type owl:DatatypeProperty ; @@ -7879,13 +7782,11 @@ dicom:dicom_300A00E5 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00E5)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A02E1 dicom:dicom_300A02E1 rdf:type owl:DatatypeProperty ; @@ -7898,13 +7799,11 @@ dicom:dicom_300A02E1 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,02E1)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00E4 dicom:dicom_300A00E4 rdf:type owl:DatatypeProperty ; @@ -7917,13 +7816,11 @@ dicom:dicom_300A00E4 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00E4)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00E9 dicom:dicom_300A00E9 rdf:type owl:DatatypeProperty ; @@ -7936,13 +7833,11 @@ dicom:dicom_300A00E9 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00E9)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00EA dicom:dicom_300A00EA rdf:type owl:DatatypeProperty ; @@ -7955,13 +7850,11 @@ dicom:dicom_300A00EA rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00EA)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00E7 dicom:dicom_300A00E7 rdf:type owl:DatatypeProperty ; @@ -7974,13 +7867,11 @@ dicom:dicom_300A00E7 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00E7)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00E3 dicom:dicom_300A00E3 rdf:type owl:DatatypeProperty ; @@ -7993,13 +7884,11 @@ dicom:dicom_300A00E3 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00E3)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00EC dicom:dicom_300A00EC rdf:type owl:DatatypeProperty ; @@ -8012,13 +7901,11 @@ dicom:dicom_300A00EC rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00EC)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00EB dicom:dicom_300A00EB rdf:type owl:DatatypeProperty ; @@ -8031,17 +7918,17 @@ dicom:dicom_300A00EB rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00EB)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00EF dicom:dicom_300A00EF rdf:type owl:DatatypeProperty ; + dicom:VR "SH"^^xsd:string ; + rdfs:label "Compensator Tray ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8053,11 +7940,12 @@ dicom:dicom_300A00EF rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00EE dicom:dicom_300A00EE rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Compensator Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8069,7 +7957,6 @@ dicom:dicom_300A00EE rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A492 dicom:dicom_0040A492 rdf:type owl:DatatypeProperty ; @@ -8082,13 +7969,11 @@ dicom:dicom_0040A492 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A492)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A491 dicom:dicom_0040A491 rdf:type owl:DatatypeProperty ; @@ -8101,13 +7986,11 @@ dicom:dicom_0040A491 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A491)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00089208 dicom:dicom_00089208 rdf:type owl:DatatypeProperty ; @@ -8120,17 +8003,17 @@ dicom:dicom_00089208 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,9208)"^^xsd:string ; - dicom:VR "cs"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00760070 dicom:dicom_00760070 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Component 1 Referenced ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8142,11 +8025,12 @@ dicom:dicom_00760070 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00760090 dicom:dicom_00760090 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Component 1 Referenced Mating Feature ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8158,11 +8042,12 @@ dicom:dicom_00760090 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00760080 dicom:dicom_00760080 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Component 1 Referenced Mating Feature Set ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8174,11 +8059,12 @@ dicom:dicom_00760080 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_007600A0 dicom:dicom_007600A0 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Component 2 Referenced ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8190,11 +8076,12 @@ dicom:dicom_007600A0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_007600C0 dicom:dicom_007600C0 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Component 2 Referenced Mating Feature ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8206,11 +8093,12 @@ dicom:dicom_007600C0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_007600B0 dicom:dicom_007600B0 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Component 2 Referenced Mating Feature Set ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8222,11 +8110,12 @@ dicom:dicom_007600B0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00760060 dicom:dicom_00760060 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Component Assembly Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8238,11 +8127,12 @@ dicom:dicom_00760060 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00760055 dicom:dicom_00760055 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Component ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8254,11 +8144,12 @@ dicom:dicom_00760055 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701803 dicom:dicom_00701803 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Component Input Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8270,11 +8161,12 @@ dicom:dicom_00701803 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00760040 dicom:dicom_00760040 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Component Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8286,11 +8178,12 @@ dicom:dicom_00760040 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00760034 dicom:dicom_00760034 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Component Type Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8302,11 +8195,12 @@ dicom:dicom_00760034 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701802 dicom:dicom_00701802 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Component Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8318,11 +8212,12 @@ dicom:dicom_00701802 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00760032 dicom:dicom_00760032 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Component Types Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8334,11 +8229,12 @@ dicom:dicom_00760032 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701206 dicom:dicom_00701206 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Compositing Method"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8350,11 +8246,12 @@ dicom:dicom_00701206 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700226 dicom:dicom_00700226 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Compound Graphic Instance ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8366,11 +8263,12 @@ dicom:dicom_00700226 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700226 dicom:dicom_00700226 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Compound Graphic Instance ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8382,11 +8280,12 @@ dicom:dicom_00700226 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700209 dicom:dicom_00700209 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Compound Graphic Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8398,11 +8297,12 @@ dicom:dicom_00700209 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700294 dicom:dicom_00700294 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Compound Graphic Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8414,11 +8314,12 @@ dicom:dicom_00700294 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700282 dicom:dicom_00700282 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Compound Graphic Units"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8430,7 +8331,6 @@ dicom:dicom_00700282 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_001811A2 dicom:dicom_001811A2 rdf:type owl:DatatypeProperty ; @@ -8443,13 +8343,11 @@ dicom:dicom_001811A2 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,11A2)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209228 dicom:dicom_00209228 rdf:type owl:DatatypeProperty ; @@ -8462,13 +8360,11 @@ dicom:dicom_00209228 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,9228)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209161 dicom:dicom_00209161 rdf:type owl:DatatypeProperty ; @@ -8481,17 +8377,17 @@ dicom:dicom_00209161 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,9161)"^^xsd:string ; - dicom:VR "UI"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A168 dicom:dicom_0040A168 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Concept Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8503,12 +8399,12 @@ dicom:dicom_0040A168 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_0040A043 dicom:dicom_0040A043 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Concept Name Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8520,11 +8416,12 @@ dicom:dicom_0040A043 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480111 dicom:dicom_00480111 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Condenser Lens Power"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8536,11 +8433,12 @@ dicom:dicom_00480111 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00120083 dicom:dicom_00120083 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Consent for Clinical Trial Use Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8552,11 +8450,12 @@ dicom:dicom_00120083 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00120085 dicom:dicom_00120085 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Consent for Distribution Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8568,11 +8467,12 @@ dicom:dicom_00120085 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189333 dicom:dicom_00189333 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Constant Volume Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8584,11 +8484,12 @@ dicom:dicom_00189333 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00820032 dicom:dicom_00820032 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Constraint Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8600,11 +8501,12 @@ dicom:dicom_00820032 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00820034 dicom:dicom_00820034 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Constraint Value Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8616,11 +8518,12 @@ dicom:dicom_00820034 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00820037 dicom:dicom_00820037 rdf:type owl:DatatypeProperty ; + dicom:VR "UT"^^xsd:string ; + rdfs:label "Constraint Violation Condition"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8632,11 +8535,12 @@ dicom:dicom_00820037 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00820036 dicom:dicom_00820036 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Constraint Violation Significance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8648,7 +8552,6 @@ dicom:dicom_00820036 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0021 dicom:dicom_300A0021 rdf:type owl:DatatypeProperty ; @@ -8661,17 +8564,17 @@ dicom:dicom_300A0021 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0021)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0008009D dicom:dicom_0008009D rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Consulting Physician Identification Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8683,11 +8586,12 @@ dicom:dicom_0008009D rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0008009C dicom:dicom_0008009C rdf:type owl:DatatypeProperty ; + dicom:VR "PN"^^xsd:string ; + rdfs:label "Consulting Physician's Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8699,11 +8603,12 @@ dicom:dicom_0008009C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0050001E dicom:dicom_0050001E rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Container Component Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8715,11 +8620,12 @@ dicom:dicom_0050001E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0050001D dicom:dicom_0050001D rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Container Component Diameter"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8731,11 +8637,12 @@ dicom:dicom_0050001D rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0050001B dicom:dicom_0050001B rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Container Component ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8747,11 +8654,12 @@ dicom:dicom_0050001B rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0050001C dicom:dicom_0050001C rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Container Component Length"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8763,11 +8671,12 @@ dicom:dicom_0050001C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0050001A dicom:dicom_0050001A rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Container Component Material"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8779,11 +8688,12 @@ dicom:dicom_0050001A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400520 dicom:dicom_00400520 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Container Component Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8795,11 +8705,12 @@ dicom:dicom_00400520 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00500013 dicom:dicom_00500013 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Container Component Thickness"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8811,11 +8722,12 @@ dicom:dicom_00500013 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00500012 dicom:dicom_00500012 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Container Component Type Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8827,11 +8739,12 @@ dicom:dicom_00500012 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00500015 dicom:dicom_00500015 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Container Component Width"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8843,11 +8756,12 @@ dicom:dicom_00500015 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040051A dicom:dicom_0040051A rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Container Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8859,11 +8773,12 @@ dicom:dicom_0040051A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400512 dicom:dicom_00400512 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Container Identifier"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8875,11 +8790,12 @@ dicom:dicom_00400512 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400518 dicom:dicom_00400518 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Container Type Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8891,11 +8807,12 @@ dicom:dicom_00400518 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700086 dicom:dicom_00700086 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Content Creator's Identification Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8907,11 +8824,12 @@ dicom:dicom_00700086 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700086 dicom:dicom_00700086 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Content Creator's Identification Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -8923,8 +8841,6 @@ dicom:dicom_00700086 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00700084 dicom:dicom_00700084 rdf:type owl:DatatypeProperty ; @@ -8937,13 +8853,11 @@ dicom:dicom_00700084 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0084)"^^xsd:string ; - dicom:VR "PN"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080023 dicom:dicom_00080023 rdf:type owl:DatatypeProperty ; @@ -8956,14 +8870,11 @@ dicom:dicom_00080023 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0023)"^^xsd:string ; - dicom:VR "DA"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00700081 dicom:dicom_00700081 rdf:type owl:DatatypeProperty ; @@ -8976,13 +8887,11 @@ dicom:dicom_00700081 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0081)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400441 dicom:dicom_00400441 rdf:type owl:DatatypeProperty ; @@ -8995,13 +8904,11 @@ dicom:dicom_00400441 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,0441)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700080 dicom:dicom_00700080 rdf:type owl:DatatypeProperty ; @@ -9014,13 +8921,11 @@ dicom:dicom_00700080 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0080)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189004 dicom:dicom_00189004 rdf:type owl:DatatypeProperty ; @@ -9033,13 +8938,11 @@ dicom:dicom_00189004 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9004)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A730 dicom:dicom_0040A730 rdf:type owl:DatatypeProperty ; @@ -9052,13 +8955,11 @@ dicom:dicom_0040A730 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A730)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A504 dicom:dicom_0040A504 rdf:type owl:DatatypeProperty ; @@ -9071,13 +8972,11 @@ dicom:dicom_0040A504 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A504)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080033 dicom:dicom_00080033 rdf:type owl:DatatypeProperty ; @@ -9090,17 +8989,17 @@ dicom:dicom_00080033 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0033)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0008010D dicom:dicom_0008010D rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Context Group Extension Creator UID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9112,7 +9011,6 @@ dicom:dicom_0008010D rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0008010B dicom:dicom_0008010B rdf:type owl:DatatypeProperty ; @@ -9125,17 +9023,17 @@ dicom:dicom_0008010B rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,010B)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080123 dicom:dicom_00080123 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Context Group Identification Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9147,7 +9045,6 @@ dicom:dicom_00080123 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080107 dicom:dicom_00080107 rdf:type owl:DatatypeProperty ; @@ -9160,13 +9057,11 @@ dicom:dicom_00080107 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0107)"^^xsd:string ; - dicom:VR "DT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080106 dicom:dicom_00080106 rdf:type owl:DatatypeProperty ; @@ -9179,13 +9074,11 @@ dicom:dicom_00080106 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0106)"^^xsd:string ; - dicom:VR "DT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0008010F dicom:dicom_0008010F rdf:type owl:DatatypeProperty ; @@ -9198,13 +9091,11 @@ dicom:dicom_0008010F rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,010F)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A050 dicom:dicom_0040A050 rdf:type owl:DatatypeProperty ; @@ -9217,13 +9108,11 @@ dicom:dicom_0040A050 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A050)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060050 dicom:dicom_30060050 rdf:type owl:DatatypeProperty ; @@ -9236,13 +9125,11 @@ dicom:dicom_30060050 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0050)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060042 dicom:dicom_30060042 rdf:type owl:DatatypeProperty ; @@ -9255,13 +9142,11 @@ dicom:dicom_30060042 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0042)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060016 dicom:dicom_30060016 rdf:type owl:DatatypeProperty ; @@ -9274,13 +9159,11 @@ dicom:dicom_30060016 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0016)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060048 dicom:dicom_30060048 rdf:type owl:DatatypeProperty ; @@ -9293,13 +9176,11 @@ dicom:dicom_30060048 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0048)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060045 dicom:dicom_30060045 rdf:type owl:DatatypeProperty ; @@ -9312,13 +9193,11 @@ dicom:dicom_30060045 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0045)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060040 dicom:dicom_30060040 rdf:type owl:DatatypeProperty ; @@ -9331,13 +9210,11 @@ dicom:dicom_30060040 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0040)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060044 dicom:dicom_30060044 rdf:type owl:DatatypeProperty ; @@ -9350,13 +9227,11 @@ dicom:dicom_30060044 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0044)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700312 dicom:dicom_00700312 rdf:type owl:DatatypeProperty ; @@ -9369,17 +9244,17 @@ dicom:dicom_00700312 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0312)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018990B dicom:dicom_0018990B rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Contraindications Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9391,7 +9266,6 @@ dicom:dicom_0018990B rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189340 dicom:dicom_00189340 rdf:type owl:DatatypeProperty ; @@ -9404,17 +9278,17 @@ dicom:dicom_00189340 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9340)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181047 dicom:dicom_00181047 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Contrast Flow Duration"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9426,11 +9300,12 @@ dicom:dicom_00181047 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181046 dicom:dicom_00181046 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Contrast Flow Rate"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9442,11 +9317,12 @@ dicom:dicom_00181046 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181046 dicom:dicom_00181046 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Contrast Flow Rate"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9458,7 +9334,6 @@ dicom:dicom_00181046 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00286112 dicom:dicom_00286112 rdf:type owl:DatatypeProperty ; @@ -9471,13 +9346,11 @@ dicom:dicom_00286112 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,6112)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00286112 dicom:dicom_00286112 rdf:type owl:DatatypeProperty ; @@ -9490,17 +9363,17 @@ dicom:dicom_00286112 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,6112)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180014 dicom:dicom_00180014 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Contrast/Bolus Administration Route Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9512,11 +9385,12 @@ dicom:dicom_00180014 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189342 dicom:dicom_00189342 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Contrast/Bolus Agent Administered"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9528,11 +9402,12 @@ dicom:dicom_00189342 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189343 dicom:dicom_00189343 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Contrast/Bolus Agent Detected"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9544,7 +9419,6 @@ dicom:dicom_00189343 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189337 dicom:dicom_00189337 rdf:type owl:DatatypeProperty ; @@ -9553,22 +9427,21 @@ dicom:dicom_00189337 rdf:type owl:DatatypeProperty ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "Identifying number corresponding to the agent administered prior to or during the acquisition ."^^xsd:string ; + obo:IAO_0000115 "Identifying number corresponding to the agent administered prior to or during the acquisition."^^xsd:string ; dicom:dicom_xxxx0065 "(0018,9337)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00189344 dicom:dicom_00189344 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Contrast/Bolus Agent Phase"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9580,11 +9453,12 @@ dicom:dicom_00189344 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180012 dicom:dicom_00180012 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Contrast/Bolus Agent Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9596,11 +9470,12 @@ dicom:dicom_00180012 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180010 dicom:dicom_00180010 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Contrast/Bolus Agent"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9612,7 +9487,6 @@ dicom:dicom_00180010 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189338 dicom:dicom_00189338 rdf:type owl:DatatypeProperty ; @@ -9625,17 +9499,17 @@ dicom:dicom_00189338 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9338)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181049 dicom:dicom_00181049 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Contrast/Bolus Ingredient Concentration"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9647,11 +9521,12 @@ dicom:dicom_00181049 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189425 dicom:dicom_00189425 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Contrast/Bolus Ingredient Opaque"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9663,11 +9538,12 @@ dicom:dicom_00189425 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00520001 dicom:dicom_00520001 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Contrast/Bolus Ingredient Percent by Volume"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9679,11 +9555,12 @@ dicom:dicom_00520001 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181048 dicom:dicom_00181048 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Contrast/Bolus Ingredient"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9695,11 +9572,12 @@ dicom:dicom_00181048 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181040 dicom:dicom_00181040 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Contrast/Bolus Route"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9711,11 +9589,12 @@ dicom:dicom_00181040 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181042 dicom:dicom_00181042 rdf:type owl:DatatypeProperty ; + dicom:VR "TM"^^xsd:string ; + rdfs:label "Contrast/Bolus Start Time"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9727,12 +9606,12 @@ dicom:dicom_00181042 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00181043 dicom:dicom_00181043 rdf:type owl:DatatypeProperty ; + dicom:VR "TM"^^xsd:string ; + rdfs:label "Contrast/Bolus Stop Time"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9744,11 +9623,12 @@ dicom:dicom_00181043 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180013 dicom:dicom_00180013 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Contrast/Bolus T1 Relaxivity"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9760,11 +9640,12 @@ dicom:dicom_00180013 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181044 dicom:dicom_00181044 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Contrast/Bolus Total Dose"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9776,11 +9657,12 @@ dicom:dicom_00181044 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189341 dicom:dicom_00189341 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Contrast/Bolus Usage Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9792,11 +9674,12 @@ dicom:dicom_00189341 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181041 dicom:dicom_00181041 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Contrast/Bolus Volume"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9808,7 +9691,6 @@ dicom:dicom_00181041 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018A001 dicom:dicom_0018A001 rdf:type owl:DatatypeProperty ; @@ -9821,17 +9703,17 @@ dicom:dicom_0018A001 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,A001)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209529 dicom:dicom_00209529 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Contributing SOP Instances Reference Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9843,11 +9725,12 @@ dicom:dicom_00209529 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189506 dicom:dicom_00189506 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Contributing Sources Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9859,7 +9742,6 @@ dicom:dicom_00189506 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018A002 dicom:dicom_0018A002 rdf:type owl:DatatypeProperty ; @@ -9872,13 +9754,11 @@ dicom:dicom_0018A002 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,A002)"^^xsd:string ; - dicom:VR "DT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018A003 dicom:dicom_0018A003 rdf:type owl:DatatypeProperty ; @@ -9891,13 +9771,11 @@ dicom:dicom_0018A003 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,A003)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A02D4 dicom:dicom_300A02D4 rdf:type owl:DatatypeProperty ; @@ -9910,13 +9788,11 @@ dicom:dicom_300A02D4 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,02D4)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080040 dicom:dicom_30080040 rdf:type owl:DatatypeProperty ; @@ -9929,13 +9805,11 @@ dicom:dicom_30080040 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0040)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0112 dicom:dicom_300A0112 rdf:type owl:DatatypeProperty ; @@ -9948,17 +9822,17 @@ dicom:dicom_300A0112 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0112)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0412 dicom:dicom_300A0412 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Control Point Orientation"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -9970,7 +9844,6 @@ dicom:dicom_300A0412 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A02D2 dicom:dicom_300A02D2 rdf:type owl:DatatypeProperty ; @@ -9983,14 +9856,11 @@ dicom:dicom_300A02D2 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,02D2)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_300A0111 dicom:dicom_300A0111 rdf:type owl:DatatypeProperty ; @@ -10003,17 +9873,17 @@ dicom:dicom_300A0111 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0111)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209172 dicom:dicom_00209172 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Conversion Source Attributes Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10025,7 +9895,6 @@ dicom:dicom_00209172 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080064 dicom:dicom_00080064 rdf:type owl:DatatypeProperty ; @@ -10038,13 +9907,11 @@ dicom:dicom_00080064 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0064)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080064 dicom:dicom_00080064 rdf:type owl:DatatypeProperty ; @@ -10057,17 +9924,17 @@ dicom:dicom_00080064 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0064)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189316 dicom:dicom_00189316 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Convolution Kernel Group"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10079,11 +9946,12 @@ dicom:dicom_00189316 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181210 dicom:dicom_00181210 rdf:type owl:DatatypeProperty ; + dicom:VR "SH"^^xsd:string ; + rdfs:label "Convolution Kernel"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10095,11 +9963,12 @@ dicom:dicom_00181210 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460234 dicom:dicom_00460234 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Corneal Eccentricity Index"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10111,11 +9980,12 @@ dicom:dicom_00460234 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460224 dicom:dicom_00460224 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Corneal I-S Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10127,11 +9997,12 @@ dicom:dicom_00460224 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460248 dicom:dicom_00460248 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Corneal Point Estimated"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10143,11 +10014,12 @@ dicom:dicom_00460248 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460247 dicom:dicom_00460247 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Corneal Point Location"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10159,11 +10031,12 @@ dicom:dicom_00460247 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460046 dicom:dicom_00460046 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Corneal Size"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10175,11 +10048,12 @@ dicom:dicom_00460046 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460242 dicom:dicom_00460242 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Corneal Topography Map Quality Evaluation"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10191,11 +10065,12 @@ dicom:dicom_00460242 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460207 dicom:dicom_00460207 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Corneal Topography Map Type Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10207,11 +10082,12 @@ dicom:dicom_00460207 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460210 dicom:dicom_00460210 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Corneal Topography Mapping Normals Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10223,11 +10099,12 @@ dicom:dicom_00460210 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460201 dicom:dicom_00460201 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Corneal Topography Surface"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10239,11 +10116,12 @@ dicom:dicom_00460201 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460202 dicom:dicom_00460202 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Corneal Vertex Location"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10255,11 +10133,12 @@ dicom:dicom_00460202 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460253 dicom:dicom_00460253 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Corneal Wavefront"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10271,7 +10150,6 @@ dicom:dicom_00460253 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280051 dicom:dicom_00280051 rdf:type owl:DatatypeProperty ; @@ -10284,17 +10162,17 @@ dicom:dicom_00280051 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,0051)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240078 dicom:dicom_00240078 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Corrected Localized Deviation From Normal Calculated"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10306,11 +10184,12 @@ dicom:dicom_00240078 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240080 dicom:dicom_00240080 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Corrected Localized Deviation From Normal Probability Calculated"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10322,11 +10201,12 @@ dicom:dicom_00240080 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240081 dicom:dicom_00240081 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Corrected Localized Deviation From Normal Probability"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10338,11 +10218,12 @@ dicom:dicom_00240081 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240079 dicom:dicom_00240079 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Corrected Localized Deviation From Normal"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10354,11 +10235,12 @@ dicom:dicom_00240079 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080068 dicom:dicom_30080068 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Corrected Parameter Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10370,11 +10252,12 @@ dicom:dicom_30080068 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_3008006A dicom:dicom_3008006A rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Correction Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10386,11 +10269,12 @@ dicom:dicom_3008006A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189764 dicom:dicom_00189764 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Count Loss Normalization Corrected"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10402,7 +10286,6 @@ dicom:dicom_00189764 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181243 dicom:dicom_00181243 rdf:type owl:DatatypeProperty ; @@ -10415,13 +10298,11 @@ dicom:dicom_00181243 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1243)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180070 dicom:dicom_00180070 rdf:type owl:DatatypeProperty ; @@ -10434,13 +10315,11 @@ dicom:dicom_00180070 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0070)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541002 dicom:dicom_00541002 rdf:type owl:DatatypeProperty ; @@ -10453,13 +10332,11 @@ dicom:dicom_00541002 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1002)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189094 dicom:dicom_00189094 rdf:type owl:DatatypeProperty ; @@ -10472,13 +10349,11 @@ dicom:dicom_00189094 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9094)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00185026 dicom:dicom_00185026 rdf:type owl:DatatypeProperty ; @@ -10491,13 +10366,11 @@ dicom:dicom_00185026 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,5026)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00089123 dicom:dicom_00089123 rdf:type owl:DatatypeProperty ; @@ -10510,17 +10383,17 @@ dicom:dicom_00089123 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,9123)"^^xsd:string ; - dicom:VR "UI"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701204 dicom:dicom_00701204 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Crop"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10532,11 +10405,12 @@ dicom:dicom_00701204 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701205 dicom:dicom_00701205 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Cropping Specification Index"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10548,11 +10422,12 @@ dicom:dicom_00701205 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701309 dicom:dicom_00701309 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Cropping Specification Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10564,7 +10439,6 @@ dicom:dicom_00701309 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A010C dicom:dicom_300A010C rdf:type owl:DatatypeProperty ; @@ -10577,13 +10451,11 @@ dicom:dicom_300A010C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,010C)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080052 dicom:dicom_30080052 rdf:type owl:DatatypeProperty ; @@ -10596,13 +10468,11 @@ dicom:dicom_30080052 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0052)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0134 dicom:dicom_300A0134 rdf:type owl:DatatypeProperty ; @@ -10615,13 +10485,11 @@ dicom:dicom_300A0134 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0134)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A02D6 dicom:dicom_300A02D6 rdf:type owl:DatatypeProperty ; @@ -10634,13 +10502,11 @@ dicom:dicom_300A02D6 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,02D6)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080022 dicom:dicom_30080022 rdf:type owl:DatatypeProperty ; @@ -10653,13 +10519,11 @@ dicom:dicom_30080022 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0022)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A375 dicom:dicom_0040A375 rdf:type owl:DatatypeProperty ; @@ -10672,13 +10536,11 @@ dicom:dicom_0040A375 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A375)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080200 dicom:dicom_30080200 rdf:type owl:DatatypeProperty ; @@ -10691,17 +10553,17 @@ dicom:dicom_30080200 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0200)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A07C dicom:dicom_0040A07C rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Custodial Organization Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10713,7 +10575,6 @@ dicom:dicom_0040A07C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220009 dicom:dicom_00220009 rdf:type owl:DatatypeProperty ; @@ -10726,13 +10587,11 @@ dicom:dicom_00220009 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0009)"^^xsd:string ; - dicom:VR "FL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220009 dicom:dicom_00220009 rdf:type owl:DatatypeProperty ; @@ -10745,13 +10604,11 @@ dicom:dicom_00220009 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0009)"^^xsd:string ; - dicom:VR "FL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220008 dicom:dicom_00220008 rdf:type owl:DatatypeProperty ; @@ -10764,13 +10621,11 @@ dicom:dicom_00220008 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0008)"^^xsd:string ; - dicom:VR "FL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220008 dicom:dicom_00220008 rdf:type owl:DatatypeProperty ; @@ -10783,17 +10638,17 @@ dicom:dicom_00220008 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0008)"^^xsd:string ; - dicom:VR "FL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460147 dicom:dicom_00460147 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Cylinder Power"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10805,11 +10660,12 @@ dicom:dicom_00460147 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460018 dicom:dicom_00460018 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Cylinder Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10821,11 +10677,12 @@ dicom:dicom_00460018 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040E022 dicom:dicom_0040E022 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "DICOM Media Retrieval Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10837,11 +10694,12 @@ dicom:dicom_0040E022 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040E021 dicom:dicom_0040E021 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "DICOM Retrieval Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10853,11 +10711,12 @@ dicom:dicom_0040E021 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00404071 dicom:dicom_00404071 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "DICOM Storage Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10869,11 +10728,12 @@ dicom:dicom_00404071 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189943 dicom:dicom_00189943 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "DLP Notification Trigger"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -10885,7 +10745,6 @@ dicom:dicom_00189943 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30040058 dicom:dicom_30040058 rdf:type owl:DatatypeProperty ; @@ -10898,13 +10757,11 @@ dicom:dicom_30040058 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3004,0058)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30040052 dicom:dicom_30040052 rdf:type owl:DatatypeProperty ; @@ -10917,13 +10774,11 @@ dicom:dicom_30040052 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3004,0052)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30040072 dicom:dicom_30040072 rdf:type owl:DatatypeProperty ; @@ -10936,13 +10791,11 @@ dicom:dicom_30040072 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3004,0072)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30040074 dicom:dicom_30040074 rdf:type owl:DatatypeProperty ; @@ -10955,13 +10808,11 @@ dicom:dicom_30040074 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3004,0074)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30040070 dicom:dicom_30040070 rdf:type owl:DatatypeProperty ; @@ -10974,13 +10825,11 @@ dicom:dicom_30040070 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3004,0070)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30040042 dicom:dicom_30040042 rdf:type owl:DatatypeProperty ; @@ -10993,13 +10842,11 @@ dicom:dicom_30040042 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3004,0042)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30040040 dicom:dicom_30040040 rdf:type owl:DatatypeProperty ; @@ -11012,13 +10859,11 @@ dicom:dicom_30040040 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3004,0040)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30040056 dicom:dicom_30040056 rdf:type owl:DatatypeProperty ; @@ -11031,13 +10876,11 @@ dicom:dicom_30040056 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3004,0056)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30040062 dicom:dicom_30040062 rdf:type owl:DatatypeProperty ; @@ -11050,13 +10893,11 @@ dicom:dicom_30040062 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3004,0062)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30040060 dicom:dicom_30040060 rdf:type owl:DatatypeProperty ; @@ -11069,13 +10910,11 @@ dicom:dicom_30040060 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3004,0060)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30040050 dicom:dicom_30040050 rdf:type owl:DatatypeProperty ; @@ -11088,13 +10927,11 @@ dicom:dicom_30040050 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3004,0050)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30040001 dicom:dicom_30040001 rdf:type owl:DatatypeProperty ; @@ -11107,13 +10944,11 @@ dicom:dicom_30040001 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3004,0001)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30040054 dicom:dicom_30040054 rdf:type owl:DatatypeProperty ; @@ -11126,17 +10961,17 @@ dicom:dicom_30040054 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3004,0054)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189313 dicom:dicom_00189313 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Data Collection Center (Patient)"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -11148,11 +10983,12 @@ dicom:dicom_00189313 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180090 dicom:dicom_00180090 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Data Collection Diameter"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -11164,27 +11000,29 @@ dicom:dicom_00180090 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_04000020 dicom:dicom_04000020 rdf:type owl:DatatypeProperty ; + dicom:VR "AT"^^xsd:string ; + rdfs:label "Data Elements Signed"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "A list of Data Element Tags in the order they appear in the Data Set that identify the Data Elements used in creating the MAC for the Digital Signature. See ."^^xsd:string ; + obo:IAO_0000115 "A list of Data Element Tags in the order they appear in the Data Set that identify the Data Elements used in creating the MAC for the Digital Signature. "^^xsd:string ; dicom:dicom_xxxx0065 "(0400,0020)"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281401 dicom:dicom_00281401 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Data Frame Assignment Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -11196,7 +11034,6 @@ dicom:dicom_00281401 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540063 dicom:dicom_00540063 rdf:type owl:DatatypeProperty ; @@ -11209,17 +11046,17 @@ dicom:dicom_00540063 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0063)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240325 dicom:dicom_00240325 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Data Observation Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -11231,11 +11068,12 @@ dicom:dicom_00240325 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281402 dicom:dicom_00281402 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Data Path Assignment"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -11247,11 +11085,12 @@ dicom:dicom_00281402 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0028140E dicom:dicom_0028140E rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Data Path ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -11263,7 +11102,6 @@ dicom:dicom_0028140E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00289002 dicom:dicom_00289002 rdf:type owl:DatatypeProperty ; @@ -11276,13 +11114,11 @@ dicom:dicom_00289002 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,9002)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00289001 dicom:dicom_00289001 rdf:type owl:DatatypeProperty ; @@ -11295,13 +11131,11 @@ dicom:dicom_00289001 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,9001)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00289108 dicom:dicom_00289108 rdf:type owl:DatatypeProperty ; @@ -11314,17 +11148,17 @@ dicom:dicom_00289108 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,9108)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240309 dicom:dicom_00240309 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Data Set Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -11336,11 +11170,12 @@ dicom:dicom_00240309 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240306 dicom:dicom_00240306 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Data Set Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -11352,11 +11187,12 @@ dicom:dicom_00240306 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240308 dicom:dicom_00240308 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Data Set Source"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -11368,11 +11204,12 @@ dicom:dicom_00240308 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240307 dicom:dicom_00240307 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Data Set Version"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -11384,11 +11221,12 @@ dicom:dicom_00240307 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189808 dicom:dicom_00189808 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Data Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -11400,7 +11238,6 @@ dicom:dicom_00189808 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181200 dicom:dicom_00181200 rdf:type owl:DatatypeProperty ; @@ -11413,13 +11250,11 @@ dicom:dicom_00181200 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1200)"^^xsd:string ; - dicom:VR "DA"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018700C dicom:dicom_0018700C rdf:type owl:DatatypeProperty ; @@ -11432,13 +11267,11 @@ dicom:dicom_0018700C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,700C)"^^xsd:string ; - dicom:VR "DA"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181012 dicom:dicom_00181012 rdf:type owl:DatatypeProperty ; @@ -11451,17 +11284,17 @@ dicom:dicom_00181012 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1012)"^^xsd:string ; - dicom:VR "DA"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A121 dicom:dicom_0040A121 rdf:type owl:DatatypeProperty ; + dicom:VR "DA"^^xsd:string ; + rdfs:label "Date"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -11473,7 +11306,6 @@ dicom:dicom_0040A121 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A120 dicom:dicom_0040A120 rdf:type owl:DatatypeProperty ; @@ -11486,13 +11318,11 @@ dicom:dicom_0040A120 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A120)"^^xsd:string ; - dicom:VR "DT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189060 dicom:dicom_00189060 rdf:type owl:DatatypeProperty ; @@ -11505,13 +11335,11 @@ dicom:dicom_00189060 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9060)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189063 dicom:dicom_00189063 rdf:type owl:DatatypeProperty ; @@ -11524,13 +11352,11 @@ dicom:dicom_00189063 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9063)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189061 dicom:dicom_00189061 rdf:type owl:DatatypeProperty ; @@ -11543,13 +11369,11 @@ dicom:dicom_00189061 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9061)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189062 dicom:dicom_00189062 rdf:type owl:DatatypeProperty ; @@ -11562,13 +11386,11 @@ dicom:dicom_00189062 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9062)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189059 dicom:dicom_00189059 rdf:type owl:DatatypeProperty ; @@ -11581,17 +11403,17 @@ dicom:dicom_00189059 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9059)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00120064 dicom:dicom_00120064 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "De-identification Method Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -11603,27 +11425,29 @@ dicom:dicom_00120064 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00120063 dicom:dicom_00120063 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "De-identification Method"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "A description or label of the mechanism or method use to remove the patient's identity. This may be used to describe the extent or thoroughness of the de-identification, for example whether or not the de-identification is for a "Limited Data Set" (as per HIPAA Privacy Rule). The characteristics of the de-identifying equipment and/or the responsible operator of that equipment may be recorded as an additional item of the Contributing Equipment Sequence (0018,A001) in the . De-identifying equipment may use a Purpose of Reference of (109104, DCM, "De-identifying Equipment")."^^xsd:string ; + obo:IAO_0000115 "A description or label of the mechanism or method use to remove the patient's identity. This may be used to describe the extent or thoroughness of the de-identification, for example whether or not the de-identification is for a "Limited Data Set" (as per HIPAA Privacy Rule). The characteristics of the de-identifying equipment and/or the responsible operator of that equipment may be recorded as an additional item of the Contributing Equipment Sequence (0018,A001). De-identifying equipment may use a Purpose of Reference of (109104, DCM, "De-identifying Equipment")."^^xsd:string ; dicom:dicom_xxxx0065 "(0012,0063)"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189761 dicom:dicom_00189761 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Dead Time Corrected"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -11635,7 +11459,6 @@ dicom:dicom_00189761 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541324 dicom:dicom_00541324 rdf:type owl:DatatypeProperty ; @@ -11648,17 +11471,17 @@ dicom:dicom_00541324 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1324)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189758 dicom:dicom_00189758 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Decay Corrected"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -11670,11 +11493,12 @@ dicom:dicom_00189758 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189701 dicom:dicom_00189701 rdf:type owl:DatatypeProperty ; + dicom:VR "DT"^^xsd:string ; + rdfs:label "Decay Correction DateTime"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -11686,7 +11510,6 @@ dicom:dicom_00189701 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541102 dicom:dicom_00541102 rdf:type owl:DatatypeProperty ; @@ -11699,13 +11522,11 @@ dicom:dicom_00541102 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1102)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541321 dicom:dicom_00541321 rdf:type owl:DatatypeProperty ; @@ -11718,17 +11539,17 @@ dicom:dicom_00541321 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1321)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460238 dicom:dicom_00460238 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Decimal Potential Visual Acuity"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -11740,11 +11561,12 @@ dicom:dicom_00460238 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460137 dicom:dicom_00460137 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Decimal Visual Acuity"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -11756,11 +11578,12 @@ dicom:dicom_00460137 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00640005 dicom:dicom_00640005 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Deformable Registration Grid Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -11772,11 +11595,12 @@ dicom:dicom_00640005 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00640002 dicom:dicom_00640002 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Deformable Registration Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -11788,7 +11612,6 @@ dicom:dicom_00640002 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0022000E dicom:dicom_0022000E rdf:type owl:DatatypeProperty ; @@ -11801,17 +11624,17 @@ dicom:dicom_0022000E rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,000E)"^^xsd:string ; - dicom:VR "FL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686410 dicom:dicom_00686410 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Degree of Freedom ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -11823,11 +11646,12 @@ dicom:dicom_00686410 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686420 dicom:dicom_00686420 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Degree of Freedom Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -11839,11 +11663,12 @@ dicom:dicom_00686420 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080305 dicom:dicom_00080305 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Deidentification Action Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -11855,11 +11680,12 @@ dicom:dicom_00080305 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080307 dicom:dicom_00080307 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Deidentification Action"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -11871,7 +11697,6 @@ dicom:dicom_00080307 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080134 dicom:dicom_30080134 rdf:type owl:DatatypeProperty ; @@ -11884,13 +11709,11 @@ dicom:dicom_30080134 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0134)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080044 dicom:dicom_30080044 rdf:type owl:DatatypeProperty ; @@ -11903,13 +11726,11 @@ dicom:dicom_30080044 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0044)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080138 dicom:dicom_30080138 rdf:type owl:DatatypeProperty ; @@ -11922,13 +11743,11 @@ dicom:dicom_30080138 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0138)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080036 dicom:dicom_30080036 rdf:type owl:DatatypeProperty ; @@ -11941,13 +11760,11 @@ dicom:dicom_30080036 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0036)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_3008013C dicom:dicom_3008013C rdf:type owl:DatatypeProperty ; @@ -11960,13 +11777,11 @@ dicom:dicom_3008013C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,013C)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080037 dicom:dicom_30080037 rdf:type owl:DatatypeProperty ; @@ -11979,13 +11794,11 @@ dicom:dicom_30080037 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0037)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_3008003B dicom:dicom_3008003B rdf:type owl:DatatypeProperty ; @@ -11998,13 +11811,11 @@ dicom:dicom_3008003B rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,003B)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0023 dicom:dicom_300A0023 rdf:type owl:DatatypeProperty ; @@ -12017,13 +11828,11 @@ dicom:dicom_300A0023 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0023)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0022 dicom:dicom_300A0022 rdf:type owl:DatatypeProperty ; @@ -12036,17 +11845,17 @@ dicom:dicom_300A0022 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0022)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220035 dicom:dicom_00220035 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Depth Spatial Resolution"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -12058,11 +11867,12 @@ dicom:dicom_00220035 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220035 dicom:dicom_00220035 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Depth Spatial Resolution"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -12074,7 +11884,6 @@ dicom:dicom_00220035 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00185050 dicom:dicom_00185050 rdf:type owl:DatatypeProperty ; @@ -12087,17 +11896,17 @@ dicom:dicom_00185050 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,5050)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220041 dicom:dicom_00220041 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Depth of Transverse Image"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -12109,11 +11918,12 @@ dicom:dicom_00220041 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189801 dicom:dicom_00189801 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Depth(s) of Focus"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -12125,7 +11935,6 @@ dicom:dicom_00189801 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00089215 dicom:dicom_00089215 rdf:type owl:DatatypeProperty ; @@ -12138,13 +11947,11 @@ dicom:dicom_00089215 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,9215)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00089215 dicom:dicom_00089215 rdf:type owl:DatatypeProperty ; @@ -12157,13 +11964,11 @@ dicom:dicom_00089215 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,9215)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00089215 dicom:dicom_00089215 rdf:type owl:DatatypeProperty ; @@ -12172,17 +11977,15 @@ dicom:dicom_00089215 rdf:type owl:DatatypeProperty ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "A coded description of how this frame was derived. See for further explanation."^^xsd:string ; + obo:IAO_0000115 "A coded description of how this frame was derived."^^xsd:string ; dicom:dicom_xxxx0065 "(0008,9215)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00089215 dicom:dicom_00089215 rdf:type owl:DatatypeProperty ; @@ -12195,13 +11998,11 @@ dicom:dicom_00089215 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,9215)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00082111 dicom:dicom_00082111 rdf:type owl:DatatypeProperty ; @@ -12214,17 +12015,17 @@ dicom:dicom_00082111 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,2111)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00089124 dicom:dicom_00089124 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Derivation Image Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -12236,11 +12037,12 @@ dicom:dicom_00089124 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0076000E dicom:dicom_0076000E rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Derivation Implant Assembly Template Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -12252,11 +12054,12 @@ dicom:dicom_0076000E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686224 dicom:dicom_00686224 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Derivation Implant Template Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -12268,7 +12071,6 @@ dicom:dicom_00686224 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_21000140 dicom:dicom_21000140 rdf:type owl:DatatypeProperty ; @@ -12281,13 +12083,11 @@ dicom:dicom_21000140 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(2100,0140)"^^xsd:string ; - dicom:VR "AE"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187016 dicom:dicom_00187016 rdf:type owl:DatatypeProperty ; @@ -12300,17 +12100,17 @@ dicom:dicom_00187016 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7016)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189558 dicom:dicom_00189558 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Detector Active Area Orientation"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -12322,11 +12122,12 @@ dicom:dicom_00189558 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189557 dicom:dicom_00189557 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Detector Active Area TLHC Position"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -12338,7 +12139,6 @@ dicom:dicom_00189557 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187026 dicom:dicom_00187026 rdf:type owl:DatatypeProperty ; @@ -12351,13 +12151,11 @@ dicom:dicom_00187026 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7026)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187028 dicom:dicom_00187028 rdf:type owl:DatatypeProperty ; @@ -12370,13 +12168,11 @@ dicom:dicom_00187028 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7028)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187024 dicom:dicom_00187024 rdf:type owl:DatatypeProperty ; @@ -12389,13 +12185,11 @@ dicom:dicom_00187024 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7024)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187014 dicom:dicom_00187014 rdf:type owl:DatatypeProperty ; @@ -12408,13 +12202,11 @@ dicom:dicom_00187014 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7014)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018701A dicom:dicom_0018701A rdf:type owl:DatatypeProperty ; @@ -12427,13 +12219,11 @@ dicom:dicom_0018701A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,701A)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187000 dicom:dicom_00187000 rdf:type owl:DatatypeProperty ; @@ -12446,13 +12236,11 @@ dicom:dicom_00187000 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7000)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187005 dicom:dicom_00187005 rdf:type owl:DatatypeProperty ; @@ -12465,13 +12253,11 @@ dicom:dicom_00187005 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7005)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187006 dicom:dicom_00187006 rdf:type owl:DatatypeProperty ; @@ -12484,13 +12270,11 @@ dicom:dicom_00187006 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7006)"^^xsd:string ; - dicom:VR "LT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187020 dicom:dicom_00187020 rdf:type owl:DatatypeProperty ; @@ -12503,13 +12287,11 @@ dicom:dicom_00187020 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7020)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541203 dicom:dicom_00541203 rdf:type owl:DatatypeProperty ; @@ -12522,13 +12304,11 @@ dicom:dicom_00541203 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1203)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187022 dicom:dicom_00187022 rdf:type owl:DatatypeProperty ; @@ -12537,21 +12317,21 @@ dicom:dicom_00187022 rdf:type owl:DatatypeProperty ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "Physical distance between the center of each detector element, specified by a numeric pair - row spacing value(delimiter) column spacing value in mm. See for further explanation of the value order. This may not be the same as the Imager Pixel Spacing (0018,1164), and should not be assumed to describe the stored image."^^xsd:string ; + obo:IAO_0000115 "Physical distance between the center of each detector element, specified by a numeric pair - row spacing value(delimiter) column spacing value in mm. This may not be the same as the Imager Pixel Spacing (0018,1164), and should not be assumed to describe the stored image."^^xsd:string ; dicom:dicom_xxxx0065 "(0018,7022)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189725 dicom:dicom_00189725 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Detector Geometry"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -12563,7 +12343,6 @@ dicom:dicom_00189725 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018700A dicom:dicom_0018700A rdf:type owl:DatatypeProperty ; @@ -12576,13 +12355,11 @@ dicom:dicom_0018700A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,700A)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540022 dicom:dicom_00540022 rdf:type owl:DatatypeProperty ; @@ -12595,17 +12372,17 @@ dicom:dicom_00540022 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0022)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189550 dicom:dicom_00189550 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Detector Isocenter Primary Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -12617,11 +12394,12 @@ dicom:dicom_00189550 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189551 dicom:dicom_00189551 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Detector Isocenter Secondary Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -12633,7 +12411,6 @@ dicom:dicom_00189551 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541104 dicom:dicom_00541104 rdf:type owl:DatatypeProperty ; @@ -12646,13 +12423,11 @@ dicom:dicom_00541104 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1104)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018702A dicom:dicom_0018702A rdf:type owl:DatatypeProperty ; @@ -12665,13 +12440,11 @@ dicom:dicom_0018702A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,702A)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018702B dicom:dicom_0018702B rdf:type owl:DatatypeProperty ; @@ -12684,13 +12457,11 @@ dicom:dicom_0018702B rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,702B)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187008 dicom:dicom_00187008 rdf:type owl:DatatypeProperty ; @@ -12703,17 +12474,17 @@ dicom:dicom_00187008 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7008)"^^xsd:string ; - dicom:VR "LT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189768 dicom:dicom_00189768 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Detector Normalization Correction"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -12725,11 +12496,12 @@ dicom:dicom_00189768 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189541 dicom:dicom_00189541 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Detector Position Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -12741,7 +12513,6 @@ dicom:dicom_00189541 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181530 dicom:dicom_00181530 rdf:type owl:DatatypeProperty ; @@ -12754,13 +12525,11 @@ dicom:dicom_00181530 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1530)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181531 dicom:dicom_00181531 rdf:type owl:DatatypeProperty ; @@ -12773,13 +12542,11 @@ dicom:dicom_00181531 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1531)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187001 dicom:dicom_00187001 rdf:type owl:DatatypeProperty ; @@ -12792,13 +12559,11 @@ dicom:dicom_00187001 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7001)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187012 dicom:dicom_00187012 rdf:type owl:DatatypeProperty ; @@ -12811,13 +12576,11 @@ dicom:dicom_00187012 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7012)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187004 dicom:dicom_00187004 rdf:type owl:DatatypeProperty ; @@ -12830,13 +12593,11 @@ dicom:dicom_00187004 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7004)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540020 dicom:dicom_00540020 rdf:type owl:DatatypeProperty ; @@ -12849,17 +12610,17 @@ dicom:dicom_00540020 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0020)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189552 dicom:dicom_00189552 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Detector X Position to Isocenter"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -12871,11 +12632,12 @@ dicom:dicom_00189552 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189553 dicom:dicom_00189553 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Detector Y Position to Isocenter"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -12887,11 +12649,12 @@ dicom:dicom_00189553 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189554 dicom:dicom_00189554 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Detector Z Position to Isocenter"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -12903,11 +12666,12 @@ dicom:dicom_00189554 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181413 dicom:dicom_00181413 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Deviation Index"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -12919,11 +12683,12 @@ dicom:dicom_00181413 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00500020 dicom:dicom_00500020 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Device Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -12935,11 +12700,12 @@ dicom:dicom_00500020 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00500017 dicom:dicom_00500017 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Device Diameter Units"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -12951,11 +12717,12 @@ dicom:dicom_00500017 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00500016 dicom:dicom_00500016 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Device Diameter"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -12967,11 +12734,12 @@ dicom:dicom_00500016 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181003 dicom:dicom_00181003 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Device ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -12983,11 +12751,12 @@ dicom:dicom_00181003 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00500014 dicom:dicom_00500014 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Device Length"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -12999,11 +12768,12 @@ dicom:dicom_00500014 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0450 dicom:dicom_300A0450 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Device Motion Control Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13015,11 +12785,12 @@ dicom:dicom_300A0450 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0451 dicom:dicom_300A0451 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Device Motion Execution Mode"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13031,11 +12802,12 @@ dicom:dicom_300A0451 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0452 dicom:dicom_300A0452 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Device Motion Observation Mode"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13047,11 +12819,12 @@ dicom:dicom_300A0452 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0453 dicom:dicom_300A0453 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Device Motion Parameter Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13063,11 +12836,12 @@ dicom:dicom_300A0453 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00500010 dicom:dicom_00500010 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Device Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13079,7 +12853,6 @@ dicom:dicom_00500010 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181000 dicom:dicom_00181000 rdf:type owl:DatatypeProperty ; @@ -13092,17 +12865,17 @@ dicom:dicom_00181000 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1000)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181002 dicom:dicom_00181002 rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Device UID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13114,11 +12887,12 @@ dicom:dicom_00181002 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00500018 dicom:dicom_00500018 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Device Volume"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13130,11 +12904,12 @@ dicom:dicom_00500018 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700262 dicom:dicom_00700262 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Diameter of Visibility"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13146,7 +12921,6 @@ dicom:dicom_00700262 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30020034 dicom:dicom_30020034 rdf:type owl:DatatypeProperty ; @@ -13159,17 +12933,17 @@ dicom:dicom_30020034 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3002,0034)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660133 dicom:dicom_00660133 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Diffusion Acquisition Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13181,7 +12955,6 @@ dicom:dicom_00660133 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189147 dicom:dicom_00189147 rdf:type owl:DatatypeProperty ; @@ -13194,13 +12967,11 @@ dicom:dicom_00189147 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9147)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189075 dicom:dicom_00189075 rdf:type owl:DatatypeProperty ; @@ -13213,13 +12984,11 @@ dicom:dicom_00189075 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9075)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189076 dicom:dicom_00189076 rdf:type owl:DatatypeProperty ; @@ -13232,13 +13001,11 @@ dicom:dicom_00189076 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9076)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189089 dicom:dicom_00189089 rdf:type owl:DatatypeProperty ; @@ -13251,17 +13018,17 @@ dicom:dicom_00189089 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9089)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660134 dicom:dicom_00660134 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Diffusion Model Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13273,27 +13040,29 @@ dicom:dicom_00660134 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189601 dicom:dicom_00189601 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Diffusion b-matrix Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "The directional diffusion sensitization expressed as a 3x3 matrix with diagonal symmetry (with six unique elements from which the other elements can be derived). The rows and columns of the matrix are the X (right to left), Y (anterior to posterior) and Z (foot to head) patient-relative orthogonal axes as defined in . The values are in units of ms/mm2."^^xsd:string ; + obo:IAO_0000115 "The directional diffusion sensitization expressed as a 3x3 matrix with diagonal symmetry (with six unique elements from which the other elements can be derived). The rows and columns of the matrix are the X (right to left), Y (anterior to posterior) and Z (foot to head) patient-relative orthogonal axes. The values are in units of ms/mm2."^^xsd:string ; dicom:dicom_xxxx0065 "(0018,9601)"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189602 dicom:dicom_00189602 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Diffusion b-value XX"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13305,11 +13074,12 @@ dicom:dicom_00189602 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189603 dicom:dicom_00189603 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Diffusion b-value XY"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13321,11 +13091,12 @@ dicom:dicom_00189603 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189604 dicom:dicom_00189604 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Diffusion b-value XZ"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13337,11 +13108,12 @@ dicom:dicom_00189604 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189605 dicom:dicom_00189605 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Diffusion b-value YY"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13353,11 +13125,12 @@ dicom:dicom_00189605 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189606 dicom:dicom_00189606 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Diffusion b-value YZ"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13369,11 +13142,12 @@ dicom:dicom_00189606 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189607 dicom:dicom_00189607 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Diffusion b-value ZZ"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13385,7 +13159,6 @@ dicom:dicom_00189607 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189087 dicom:dicom_00189087 rdf:type owl:DatatypeProperty ; @@ -13398,13 +13171,11 @@ dicom:dicom_00189087 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9087)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181023 dicom:dicom_00181023 rdf:type owl:DatatypeProperty ; @@ -13417,17 +13188,17 @@ dicom:dicom_00181023 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1023)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_04000105 dicom:dicom_04000105 rdf:type owl:DatatypeProperty ; + dicom:VR "DT"^^xsd:string ; + rdfs:label "Digital Signature DateTime"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13439,11 +13210,12 @@ dicom:dicom_04000105 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_04000401 dicom:dicom_04000401 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Digital Signature Purpose Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13455,11 +13227,12 @@ dicom:dicom_04000401 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_04000100 dicom:dicom_04000100 rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Digital Signature UID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13471,11 +13244,12 @@ dicom:dicom_04000100 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_FFFAFFFA dicom:dicom_FFFAFFFA rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Digital Signatures Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13487,7 +13261,6 @@ dicom:dicom_FFFAFFFA rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00182020 dicom:dicom_00182020 rdf:type owl:DatatypeProperty ; @@ -13500,17 +13273,17 @@ dicom:dicom_00182020 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,2020)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209421 dicom:dicom_00209421 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Dimension Description Label"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13522,7 +13295,6 @@ dicom:dicom_00209421 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209165 dicom:dicom_00209165 rdf:type owl:DatatypeProperty ; @@ -13535,13 +13307,11 @@ dicom:dicom_00209165 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,9165)"^^xsd:string ; - dicom:VR "AT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209213 dicom:dicom_00209213 rdf:type owl:DatatypeProperty ; @@ -13554,13 +13324,11 @@ dicom:dicom_00209213 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,9213)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209222 dicom:dicom_00209222 rdf:type owl:DatatypeProperty ; @@ -13573,13 +13341,11 @@ dicom:dicom_00209222 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,9222)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209157 dicom:dicom_00209157 rdf:type owl:DatatypeProperty ; @@ -13592,13 +13358,11 @@ dicom:dicom_00209157 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,9157)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209221 dicom:dicom_00209221 rdf:type owl:DatatypeProperty ; @@ -13611,17 +13375,17 @@ dicom:dicom_00209221 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,9221)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209311 dicom:dicom_00209311 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Dimension Organization Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13633,11 +13397,12 @@ dicom:dicom_00209311 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209311 dicom:dicom_00209311 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Dimension Organization Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13649,7 +13414,6 @@ dicom:dicom_00209311 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209164 dicom:dicom_00209164 rdf:type owl:DatatypeProperty ; @@ -13662,13 +13426,11 @@ dicom:dicom_00209164 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,9164)"^^xsd:string ; - dicom:VR "UI"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209164 dicom:dicom_00209164 rdf:type owl:DatatypeProperty ; @@ -13681,17 +13443,17 @@ dicom:dicom_00209164 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,9164)"^^xsd:string ; - dicom:VR "UI"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00041220 dicom:dicom_00041220 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Directory Record Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13703,11 +13465,12 @@ dicom:dicom_00041220 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00041430 dicom:dicom_00041430 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Directory Record Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13719,11 +13482,12 @@ dicom:dicom_00041430 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720108 dicom:dicom_00720108 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Display Environment Spatial Position"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13735,11 +13499,12 @@ dicom:dicom_00720108 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00289411 dicom:dicom_00289411 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Display Filter Percentage"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13751,11 +13516,12 @@ dicom:dicom_00289411 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720717 dicom:dicom_00720717 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Display Set Horizontal Justification"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13767,11 +13533,12 @@ dicom:dicom_00720717 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720203 dicom:dicom_00720203 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Display Set Label"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13783,11 +13550,12 @@ dicom:dicom_00720203 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720202 dicom:dicom_00720202 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Display Set Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13799,11 +13567,12 @@ dicom:dicom_00720202 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720700 dicom:dicom_00720700 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Display Set Patient Orientation"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13815,11 +13584,12 @@ dicom:dicom_00720700 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720206 dicom:dicom_00720206 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Display Set Presentation Group Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13831,11 +13601,12 @@ dicom:dicom_00720206 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720204 dicom:dicom_00720204 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Display Set Presentation Group"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13847,11 +13618,12 @@ dicom:dicom_00720204 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720212 dicom:dicom_00720212 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Display Set Scrolling Group"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13863,11 +13635,12 @@ dicom:dicom_00720212 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720718 dicom:dicom_00720718 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Display Set Vertical Justification"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13879,11 +13652,12 @@ dicom:dicom_00720718 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720200 dicom:dicom_00720200 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Display Sets Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13895,11 +13669,12 @@ dicom:dicom_00720200 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0246 dicom:dicom_003A0246 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Display Shading Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13911,7 +13686,6 @@ dicom:dicom_003A0246 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00182006 dicom:dicom_00182006 rdf:type owl:DatatypeProperty ; @@ -13924,17 +13698,17 @@ dicom:dicom_00182006 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,2006)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700053 dicom:dicom_00700053 rdf:type owl:DatatypeProperty ; + dicom:VR "SL"^^xsd:string ; + rdfs:label "Displayed Area Bottom Right Hand Corner"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13946,23 +13720,23 @@ dicom:dicom_00700053 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0070005A dicom:dicom_0070005A rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Displayed Area Selection Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "A sequence of Items each of which describes the displayed area selection for a group of images or frames. Sufficient Items shall be present to describe every image and frame listed in the ."^^xsd:string ; + obo:IAO_0000115 "A sequence of Items each of which describes the displayed area selection for a group of images or frames. Sufficient Items shall be present to describe every image and frame listed in the Presentation State Relationship Module."^^xsd:string ; dicom:dicom_xxxx0065 "(0070,005A)"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700052 dicom:dicom_00700052 rdf:type owl:DatatypeProperty ; @@ -13975,17 +13749,17 @@ dicom:dicom_00700052 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0052)"^^xsd:string ; - dicom:VR "SL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00182046 dicom:dicom_00182046 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Displayed Z Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -13997,11 +13771,12 @@ dicom:dicom_00182046 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480014 dicom:dicom_00480014 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Distance Between Focal Planes"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -14013,11 +13788,12 @@ dicom:dicom_00480014 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189403 dicom:dicom_00189403 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Distance Object to Table Top"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -14029,11 +13805,12 @@ dicom:dicom_00189403 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460060 dicom:dicom_00460060 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Distance Pupillary Distance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -14045,11 +13822,12 @@ dicom:dicom_00460060 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189426 dicom:dicom_00189426 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Distance Receptor Plane to Detector Housing"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -14061,11 +13839,12 @@ dicom:dicom_00189426 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189335 dicom:dicom_00189335 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Distance Source to Data Collection Center"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -14077,7 +13856,6 @@ dicom:dicom_00189335 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181110 dicom:dicom_00181110 rdf:type owl:DatatypeProperty ; @@ -14090,13 +13868,11 @@ dicom:dicom_00181110 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1110)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400306 dicom:dicom_00400306 rdf:type owl:DatatypeProperty ; @@ -14109,17 +13885,17 @@ dicom:dicom_00400306 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,0306)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189402 dicom:dicom_00189402 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Distance Source to Isocenter"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -14131,11 +13907,12 @@ dicom:dicom_00189402 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189402 dicom:dicom_00189402 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Distance Source to Isocenter"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -14147,11 +13924,12 @@ dicom:dicom_00189402 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181111 dicom:dicom_00181111 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Distance Source to Patient"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -14163,11 +13941,12 @@ dicom:dicom_00181111 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00120084 dicom:dicom_00120084 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Distribution Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -14179,11 +13958,12 @@ dicom:dicom_00120084 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040E008 dicom:dicom_0040E008 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Document Class Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -14195,11 +13975,12 @@ dicom:dicom_0040E008 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00420010 dicom:dicom_00420010 rdf:type owl:DatatypeProperty ; + dicom:VR "ST"^^xsd:string ; + rdfs:label "Document Title"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -14211,7 +13992,6 @@ dicom:dicom_00420010 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186034 dicom:dicom_00186034 rdf:type owl:DatatypeProperty ; @@ -14224,13 +14004,11 @@ dicom:dicom_00186034 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6034)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186039 dicom:dicom_00186039 rdf:type owl:DatatypeProperty ; @@ -14243,13 +14021,11 @@ dicom:dicom_00186039 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6039)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018603B dicom:dicom_0018603B rdf:type owl:DatatypeProperty ; @@ -14262,13 +14038,11 @@ dicom:dicom_0018603B rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,603B)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541322 dicom:dicom_00541322 rdf:type owl:DatatypeProperty ; @@ -14281,13 +14055,11 @@ dicom:dicom_00541322 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1322)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30040006 dicom:dicom_30040006 rdf:type owl:DatatypeProperty ; @@ -14300,13 +14072,11 @@ dicom:dicom_30040006 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3004,0006)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_3004000E dicom:dicom_3004000E rdf:type owl:DatatypeProperty ; @@ -14319,13 +14089,11 @@ dicom:dicom_3004000E rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3004,000E)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080048 dicom:dicom_30080048 rdf:type owl:DatatypeProperty ; @@ -14338,13 +14106,11 @@ dicom:dicom_30080048 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0048)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0115 dicom:dicom_300A0115 rdf:type owl:DatatypeProperty ; @@ -14357,13 +14123,11 @@ dicom:dicom_300A0115 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0115)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0115 dicom:dicom_300A0115 rdf:type owl:DatatypeProperty ; @@ -14376,13 +14140,11 @@ dicom:dicom_300A0115 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0115)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0016 dicom:dicom_300A0016 rdf:type owl:DatatypeProperty ; @@ -14395,13 +14157,11 @@ dicom:dicom_300A0016 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0016)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0012 dicom:dicom_300A0012 rdf:type owl:DatatypeProperty ; @@ -14414,13 +14174,11 @@ dicom:dicom_300A0012 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0012)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0018 dicom:dicom_300A0018 rdf:type owl:DatatypeProperty ; @@ -14433,13 +14191,11 @@ dicom:dicom_300A0018 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0018)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0010 dicom:dicom_300A0010 rdf:type owl:DatatypeProperty ; @@ -14452,13 +14208,11 @@ dicom:dicom_300A0010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0010)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0014 dicom:dicom_300A0014 rdf:type owl:DatatypeProperty ; @@ -14471,13 +14225,11 @@ dicom:dicom_300A0014 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0014)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0020 dicom:dicom_300A0020 rdf:type owl:DatatypeProperty ; @@ -14490,13 +14242,11 @@ dicom:dicom_300A0020 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0020)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0013 dicom:dicom_300A0013 rdf:type owl:DatatypeProperty ; @@ -14509,13 +14259,11 @@ dicom:dicom_300A0013 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0013)"^^xsd:string ; - dicom:VR "UI"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_3004000A dicom:dicom_3004000A rdf:type owl:DatatypeProperty ; @@ -14528,13 +14276,11 @@ dicom:dicom_3004000A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3004,000A)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30040004 dicom:dicom_30040004 rdf:type owl:DatatypeProperty ; @@ -14547,13 +14293,11 @@ dicom:dicom_30040004 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3004,0004)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30040002 dicom:dicom_30040002 rdf:type owl:DatatypeProperty ; @@ -14566,13 +14310,11 @@ dicom:dicom_30040002 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3004,0002)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30040012 dicom:dicom_30040012 rdf:type owl:DatatypeProperty ; @@ -14581,21 +14323,21 @@ dicom:dicom_30040012 rdf:type owl:DatatypeProperty ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "Dose value for ROI, in units defined by Dose Units (3004,0002). See ."^^xsd:string ; + obo:IAO_0000115 "Dose value for ROI, in units defined by Dose Units (3004,0002). "^^xsd:string ; dicom:dicom_xxxx0065 "(3004,0012)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_7FE00009 dicom:dicom_7FE00009 rdf:type owl:DatatypeProperty ; + dicom:VR "OD"^^xsd:string ; + rdfs:label "Double Float Pixel Data"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -14607,11 +14349,12 @@ dicom:dicom_7FE00009 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280125 dicom:dicom_00280125 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Double Float Pixel Padding Range Limit"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -14623,11 +14366,12 @@ dicom:dicom_00280125 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280123 dicom:dicom_00280123 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Double Float Pixel Padding Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -14639,11 +14383,12 @@ dicom:dicom_00280123 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00409214 dicom:dicom_00409214 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Double Float Real World Value First Value Mapped"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -14655,11 +14400,12 @@ dicom:dicom_00409214 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00409213 dicom:dicom_00409213 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Double Float Real World Value Last Value Mapped"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -14671,7 +14417,6 @@ dicom:dicom_00409213 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180086 dicom:dicom_00180086 rdf:type owl:DatatypeProperty ; @@ -14684,17 +14429,17 @@ dicom:dicom_00180086 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0086)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189298 dicom:dicom_00189298 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Echo Peak Position"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -14706,7 +14451,6 @@ dicom:dicom_00189298 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189018 dicom:dicom_00189018 rdf:type owl:DatatypeProperty ; @@ -14719,13 +14463,11 @@ dicom:dicom_00189018 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9018)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189018 dicom:dicom_00189018 rdf:type owl:DatatypeProperty ; @@ -14738,13 +14480,11 @@ dicom:dicom_00189018 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9018)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189008 dicom:dicom_00189008 rdf:type owl:DatatypeProperty ; @@ -14757,13 +14497,11 @@ dicom:dicom_00189008 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9008)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180081 dicom:dicom_00180081 rdf:type owl:DatatypeProperty ; @@ -14776,13 +14514,11 @@ dicom:dicom_00180081 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0081)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180091 dicom:dicom_00180091 rdf:type owl:DatatypeProperty ; @@ -14795,17 +14531,17 @@ dicom:dicom_00180091 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0091)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686226 dicom:dicom_00686226 rdf:type owl:DatatypeProperty ; + dicom:VR "DT"^^xsd:string ; + rdfs:label "Effective DateTime"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -14817,11 +14553,12 @@ dicom:dicom_00686226 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180072 dicom:dicom_00180072 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Effective Duration"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -14833,7 +14570,6 @@ dicom:dicom_00180072 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189082 dicom:dicom_00189082 rdf:type owl:DatatypeProperty ; @@ -14846,17 +14582,17 @@ dicom:dicom_00189082 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9082)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00520004 dicom:dicom_00520004 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Effective Refractive Index"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -14868,11 +14604,12 @@ dicom:dicom_00520004 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00DE dicom:dicom_300A00DE rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Effective Wedge Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -14884,7 +14621,6 @@ dicom:dicom_300A00DE rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0022000A dicom:dicom_0022000A rdf:type owl:DatatypeProperty ; @@ -14897,33 +14633,34 @@ dicom:dicom_0022000A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,000A)"^^xsd:string ; - dicom:VR "FL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720421 dicom:dicom_00720421 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Empty Image Box CIELab Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "A value in which it is recommended that empty Image Boxes be rendered on a color display. The units are specified in PCS-Values, and the value is encoded as CIELab. See ."^^xsd:string ; + obo:IAO_0000115 "A value in which it is recommended that empty Image Boxes be rendered on a color display. The units are specified in PCS-Values, and the value is encoded as CIELab. "^^xsd:string ; dicom:dicom_xxxx0065 "(0072,0421)"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00420011 dicom:dicom_00420011 rdf:type owl:DatatypeProperty ; + dicom:VR "OB"^^xsd:string ; + rdfs:label "Encapsulated Document"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -14935,7 +14672,6 @@ dicom:dicom_00420011 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_04000500 dicom:dicom_04000500 rdf:type owl:DatatypeProperty ; @@ -14948,13 +14684,11 @@ dicom:dicom_04000500 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0400,0500)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_04000510 dicom:dicom_04000510 rdf:type owl:DatatypeProperty ; @@ -14967,13 +14701,11 @@ dicom:dicom_04000510 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0400,0510)"^^xsd:string ; - dicom:VR "UI"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_04000520 dicom:dicom_04000520 rdf:type owl:DatatypeProperty ; @@ -14986,17 +14718,17 @@ dicom:dicom_04000520 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0400,0520)"^^xsd:string ; - dicom:VR "OB"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189517 dicom:dicom_00189517 rdf:type owl:DatatypeProperty ; + dicom:VR "DT"^^xsd:string ; + rdfs:label "End Acquisition DateTime"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15008,7 +14740,6 @@ dicom:dicom_00189517 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300C0009 dicom:dicom_300C0009 rdf:type owl:DatatypeProperty ; @@ -15021,13 +14752,11 @@ dicom:dicom_300C0009 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,0009)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_3008007A dicom:dicom_3008007A rdf:type owl:DatatypeProperty ; @@ -15040,17 +14769,17 @@ dicom:dicom_3008007A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,007A)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209248 dicom:dicom_00209248 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Ending Respiratory Amplitude"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15062,11 +14791,12 @@ dicom:dicom_00209248 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209249 dicom:dicom_00209249 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Ending Respiratory Phase"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15078,11 +14808,12 @@ dicom:dicom_00209249 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189353 dicom:dicom_00189353 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Energy Weighting Factor"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15094,11 +14825,12 @@ dicom:dicom_00189353 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189353 dicom:dicom_00189353 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Energy Weighting Factor"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15110,7 +14842,6 @@ dicom:dicom_00189353 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540012 dicom:dicom_00540012 rdf:type owl:DatatypeProperty ; @@ -15123,13 +14854,11 @@ dicom:dicom_00540012 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0012)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540014 dicom:dicom_00540014 rdf:type owl:DatatypeProperty ; @@ -15143,13 +14872,11 @@ dicom:dicom_00540014 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0014)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540018 dicom:dicom_00540018 rdf:type owl:DatatypeProperty ; @@ -15162,13 +14889,11 @@ dicom:dicom_00540018 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0018)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540308 dicom:dicom_00540308 rdf:type owl:DatatypeProperty ; @@ -15181,13 +14906,11 @@ dicom:dicom_00540308 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0308)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540013 dicom:dicom_00540013 rdf:type owl:DatatypeProperty ; @@ -15200,13 +14923,11 @@ dicom:dicom_00540013 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0013)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540015 dicom:dicom_00540015 rdf:type owl:DatatypeProperty ; @@ -15219,13 +14940,11 @@ dicom:dicom_00540015 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0015)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540010 dicom:dicom_00540010 rdf:type owl:DatatypeProperty ; @@ -15238,17 +14957,17 @@ dicom:dicom_00540010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0010)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0028140B dicom:dicom_0028140B rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Enhanced Palette Color Lookup Table Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15260,7 +14979,6 @@ dicom:dicom_0028140B rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00408302 dicom:dicom_00408302 rdf:type owl:DatatypeProperty ; @@ -15273,13 +14991,11 @@ dicom:dicom_00408302 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,8302)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400302 dicom:dicom_00400302 rdf:type owl:DatatypeProperty ; @@ -15292,17 +15008,17 @@ dicom:dicom_00400302 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,0302)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00289537 dicom:dicom_00289537 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Equipment Coordinate System Identification"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15314,11 +15030,12 @@ dicom:dicom_00289537 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080221 dicom:dicom_00080221 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Equipment Modality"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15330,11 +15047,12 @@ dicom:dicom_00080221 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080121 dicom:dicom_00080121 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Equivalent Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15346,11 +15064,12 @@ dicom:dicom_00080121 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460205 dicom:dicom_00460205 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Equivalent Pupil Radius"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15362,11 +15081,12 @@ dicom:dicom_00460205 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189324 dicom:dicom_00189324 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Estimated Dose Saving"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15378,7 +15098,6 @@ dicom:dicom_00189324 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181114 dicom:dicom_00181114 rdf:type owl:DatatypeProperty ; @@ -15391,17 +15110,17 @@ dicom:dicom_00181114 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1114)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00120087 dicom:dicom_00120087 rdf:type owl:DatatypeProperty ; + dicom:VR "DA"^^xsd:string ; + rdfs:label "Ethics Committee Approval Effectiveness End Date"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15413,11 +15132,12 @@ dicom:dicom_00120087 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00120086 dicom:dicom_00120086 rdf:type owl:DatatypeProperty ; + dicom:VR "DA"^^xsd:string ; + rdfs:label "Ethics Committee Approval Effectiveness Start Date"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15429,7 +15149,6 @@ dicom:dicom_00120086 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00102160 dicom:dicom_00102160 rdf:type owl:DatatypeProperty ; @@ -15442,17 +15161,17 @@ dicom:dicom_00102160 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0010,2160)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00082135 dicom:dicom_00082135 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Event Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15464,7 +15183,6 @@ dicom:dicom_00082135 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00082130 dicom:dicom_00082130 rdf:type owl:DatatypeProperty ; @@ -15477,17 +15195,17 @@ dicom:dicom_00082130 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,2130)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00082134 dicom:dicom_00082134 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Event Time Offset"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15499,7 +15217,6 @@ dicom:dicom_00082134 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00082132 dicom:dicom_00082132 rdf:type owl:DatatypeProperty ; @@ -15512,17 +15229,17 @@ dicom:dicom_00082132 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,2132)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00082133 dicom:dicom_00082133 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Event Timer Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15534,11 +15251,12 @@ dicom:dicom_00082133 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240051 dicom:dicom_00240051 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Excessive False Negatives Data Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15550,11 +15268,12 @@ dicom:dicom_00240051 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240052 dicom:dicom_00240052 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Excessive False Negatives"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15566,11 +15285,12 @@ dicom:dicom_00240052 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240061 dicom:dicom_00240061 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Excessive False Positives Data Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15582,11 +15302,12 @@ dicom:dicom_00240061 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240062 dicom:dicom_00240062 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Excessive False Positives"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15598,11 +15319,12 @@ dicom:dicom_00240062 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240039 dicom:dicom_00240039 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Excessive Fixation Losses Data Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15614,11 +15336,12 @@ dicom:dicom_00240039 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240040 dicom:dicom_00240040 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Excessive Fixation Losses"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15630,11 +15353,12 @@ dicom:dicom_00240040 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189803 dicom:dicom_00189803 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Excluded Intervals Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15646,11 +15370,12 @@ dicom:dicom_00189803 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189805 dicom:dicom_00189805 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Exclusion Duration"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15662,11 +15387,12 @@ dicom:dicom_00189805 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189804 dicom:dicom_00189804 rdf:type owl:DatatypeProperty ; + dicom:VR "DT"^^xsd:string ; + rdfs:label "Exclusion Start DateTime"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15678,11 +15404,12 @@ dicom:dicom_00189804 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00760036 dicom:dicom_00760036 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Exclusive Component Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15694,7 +15421,6 @@ dicom:dicom_00760036 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400303 dicom:dicom_00400303 rdf:type owl:DatatypeProperty ; @@ -15707,13 +15433,11 @@ dicom:dicom_00400303 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,0303)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187062 dicom:dicom_00187062 rdf:type owl:DatatypeProperty ; @@ -15726,13 +15450,11 @@ dicom:dicom_00187062 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7062)"^^xsd:string ; - dicom:VR "LT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187060 dicom:dicom_00187060 rdf:type owl:DatatypeProperty ; @@ -15745,17 +15467,17 @@ dicom:dicom_00187060 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7060)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189436 dicom:dicom_00189436 rdf:type owl:DatatypeProperty ; + dicom:VR "SS"^^xsd:string ; + rdfs:label "Exposure Control Sensing Region Left Vertical Edge"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15767,11 +15489,12 @@ dicom:dicom_00189436 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189439 dicom:dicom_00189439 rdf:type owl:DatatypeProperty ; + dicom:VR "SS"^^xsd:string ; + rdfs:label "Exposure Control Sensing Region Lower Horizontal Edge"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15783,11 +15506,12 @@ dicom:dicom_00189439 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189437 dicom:dicom_00189437 rdf:type owl:DatatypeProperty ; + dicom:VR "SS"^^xsd:string ; + rdfs:label "Exposure Control Sensing Region Right Vertical Edge"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15799,11 +15523,12 @@ dicom:dicom_00189437 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189435 dicom:dicom_00189435 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Exposure Control Sensing Region Shape"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15815,11 +15540,12 @@ dicom:dicom_00189435 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189438 dicom:dicom_00189438 rdf:type owl:DatatypeProperty ; + dicom:VR "SS"^^xsd:string ; + rdfs:label "Exposure Control Sensing Region Upper Horizontal Edge"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15831,11 +15557,12 @@ dicom:dicom_00189438 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189434 dicom:dicom_00189434 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Exposure Control Sensing Regions Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15847,11 +15574,12 @@ dicom:dicom_00189434 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181411 dicom:dicom_00181411 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Exposure Index"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15863,11 +15591,12 @@ dicom:dicom_00181411 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189323 dicom:dicom_00189323 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Exposure Modulation Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15879,7 +15608,6 @@ dicom:dicom_00189323 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30020030 dicom:dicom_30020030 rdf:type owl:DatatypeProperty ; @@ -15892,13 +15620,11 @@ dicom:dicom_30020030 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3002,0030)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187064 dicom:dicom_00187064 rdf:type owl:DatatypeProperty ; @@ -15911,17 +15637,17 @@ dicom:dicom_00187064 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7064)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189328 dicom:dicom_00189328 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Exposure Time in ms"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15933,12 +15659,12 @@ dicom:dicom_00189328 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00188150 dicom:dicom_00188150 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Exposure Time in uS"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15950,7 +15676,6 @@ dicom:dicom_00188150 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181150 dicom:dicom_00181150 rdf:type owl:DatatypeProperty ; @@ -15963,17 +15688,17 @@ dicom:dicom_00181150 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1150)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189332 dicom:dicom_00189332 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Exposure in mAs"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -15989,6 +15714,8 @@ dicom:dicom_00189332 rdf:type owl:DatatypeProperty ; dicom:dicom_00181153 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Exposure in uAs"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16000,11 +15727,12 @@ dicom:dicom_00181153 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181152 dicom:dicom_00181152 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Exposure"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16016,7 +15744,6 @@ dicom:dicom_00181152 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187010 dicom:dicom_00187010 rdf:type owl:DatatypeProperty ; @@ -16029,13 +15756,11 @@ dicom:dicom_00187010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7010)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187011 dicom:dicom_00187011 rdf:type owl:DatatypeProperty ; @@ -16048,17 +15773,17 @@ dicom:dicom_00187011 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7011)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181404 dicom:dicom_00181404 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Exposures on Plate"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16070,11 +15795,12 @@ dicom:dicom_00181404 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480012 dicom:dicom_00480012 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Extended Depth of Field"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16086,11 +15812,12 @@ dicom:dicom_00480012 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0133 dicom:dicom_300A0133 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "External Contour Entry Point"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16102,11 +15829,12 @@ dicom:dicom_300A0133 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660034 dicom:dicom_00660034 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Facet Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16118,11 +15846,12 @@ dicom:dicom_00660034 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240045 dicom:dicom_00240045 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "False Negatives Estimate Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16134,11 +15863,12 @@ dicom:dicom_00240045 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240046 dicom:dicom_00240046 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "False Negatives Estimate"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16150,11 +15880,12 @@ dicom:dicom_00240046 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240050 dicom:dicom_00240050 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "False Negatives Quantity"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16166,11 +15897,12 @@ dicom:dicom_00240050 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240053 dicom:dicom_00240053 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "False Positives Estimate Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16182,11 +15914,12 @@ dicom:dicom_00240053 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240054 dicom:dicom_00240054 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "False Positives Estimate"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16198,11 +15931,12 @@ dicom:dicom_00240054 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240060 dicom:dicom_00240060 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "False Positives Quantity"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16214,7 +15948,6 @@ dicom:dicom_00240060 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0070030F dicom:dicom_0070030F rdf:type owl:DatatypeProperty ; @@ -16227,13 +15960,11 @@ dicom:dicom_0070030F rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,030F)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700311 dicom:dicom_00700311 rdf:type owl:DatatypeProperty ; @@ -16246,13 +15977,11 @@ dicom:dicom_00700311 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0311)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700310 dicom:dicom_00700310 rdf:type owl:DatatypeProperty ; @@ -16265,13 +15994,11 @@ dicom:dicom_00700310 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0310)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0070031E dicom:dicom_0070031E rdf:type owl:DatatypeProperty ; @@ -16284,13 +16011,11 @@ dicom:dicom_0070031E rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,031E)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0070031C dicom:dicom_0070031C rdf:type owl:DatatypeProperty ; @@ -16303,13 +16028,11 @@ dicom:dicom_0070031C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,031C)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0070031A dicom:dicom_0070031A rdf:type owl:DatatypeProperty ; @@ -16322,17 +16045,17 @@ dicom:dicom_0070031A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,031A)"^^xsd:string ; - dicom:VR "UI"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0070031F dicom:dicom_0070031F rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Fiducials Property Category Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16344,11 +16067,12 @@ dicom:dicom_0070031F rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189433 dicom:dicom_00189433 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Field of View Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16360,11 +16084,12 @@ dicom:dicom_00189433 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189461 dicom:dicom_00189461 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Field of View Dimension(s) in Float"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16376,7 +16101,6 @@ dicom:dicom_00189461 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181149 dicom:dicom_00181149 rdf:type owl:DatatypeProperty ; @@ -16389,13 +16113,11 @@ dicom:dicom_00181149 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1149)"^^xsd:string ; - dicom:VR "-2"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187034 dicom:dicom_00187034 rdf:type owl:DatatypeProperty ; @@ -16408,13 +16130,11 @@ dicom:dicom_00187034 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7034)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187030 dicom:dicom_00187030 rdf:type owl:DatatypeProperty ; @@ -16427,13 +16147,11 @@ dicom:dicom_00187030 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7030)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187032 dicom:dicom_00187032 rdf:type owl:DatatypeProperty ; @@ -16446,17 +16164,17 @@ dicom:dicom_00187032 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7032)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189432 dicom:dicom_00189432 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Field of View Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16468,7 +16186,6 @@ dicom:dicom_00189432 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181147 dicom:dicom_00181147 rdf:type owl:DatatypeProperty ; @@ -16481,17 +16198,17 @@ dicom:dicom_00181147 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1147)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00041212 dicom:dicom_00041212 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "File-set Consistency Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16503,11 +16220,12 @@ dicom:dicom_00041212 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00041141 dicom:dicom_00041141 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "File-set Descriptor File ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16519,11 +16237,12 @@ dicom:dicom_00041141 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00041130 dicom:dicom_00041130 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "File-set ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16535,11 +16254,12 @@ dicom:dicom_00041130 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700257 dicom:dicom_00700257 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Fill Mode"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16551,11 +16271,12 @@ dicom:dicom_00700257 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700256 dicom:dicom_00700256 rdf:type owl:DatatypeProperty ; + dicom:VR "OB"^^xsd:string ; + rdfs:label "Fill Pattern"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16567,11 +16288,12 @@ dicom:dicom_00700256 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700233 dicom:dicom_00700233 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Fill Style Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16583,7 +16305,6 @@ dicom:dicom_00700233 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00402017 dicom:dicom_00402017 rdf:type owl:DatatypeProperty ; @@ -16596,17 +16317,17 @@ dicom:dicom_00402017 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,2017)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187058 dicom:dicom_00187058 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Filter Beam Path Length Maximum"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16618,11 +16339,12 @@ dicom:dicom_00187058 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187056 dicom:dicom_00187056 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Filter Beam Path Length Minimum"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16634,7 +16356,6 @@ dicom:dicom_00187056 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0221 dicom:dicom_003A0221 rdf:type owl:DatatypeProperty ; @@ -16647,13 +16368,11 @@ dicom:dicom_003A0221 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,0221)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0220 dicom:dicom_003A0220 rdf:type owl:DatatypeProperty ; @@ -16666,13 +16385,11 @@ dicom:dicom_003A0220 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,0220)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187050 dicom:dicom_00187050 rdf:type owl:DatatypeProperty ; @@ -16685,17 +16402,17 @@ dicom:dicom_00187050 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7050)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720400 dicom:dicom_00720400 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Filter Operations Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16707,11 +16424,12 @@ dicom:dicom_00720400 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187054 dicom:dicom_00187054 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Filter Thickness Maximum"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16723,7 +16441,6 @@ dicom:dicom_00187054 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187052 dicom:dicom_00187052 rdf:type owl:DatatypeProperty ; @@ -16736,13 +16453,11 @@ dicom:dicom_00187052 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7052)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181160 dicom:dicom_00181160 rdf:type owl:DatatypeProperty ; @@ -16755,17 +16470,17 @@ dicom:dicom_00181160 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1160)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720404 dicom:dicom_00720404 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Filter-by Attribute Presence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16777,11 +16492,12 @@ dicom:dicom_00720404 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720402 dicom:dicom_00720402 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Filter-by Category"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16793,11 +16509,12 @@ dicom:dicom_00720402 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720406 dicom:dicom_00720406 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Filter-by Operator"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16809,7 +16526,6 @@ dicom:dicom_00720406 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A010E dicom:dicom_300A010E rdf:type owl:DatatypeProperty ; @@ -16822,13 +16538,11 @@ dicom:dicom_300A010E rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,010E)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A02C8 dicom:dicom_300A02C8 rdf:type owl:DatatypeProperty ; @@ -16841,17 +16555,17 @@ dicom:dicom_300A02C8 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,02C8)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0066000E dicom:dicom_0066000E rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Finite Volume"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16863,11 +16577,12 @@ dicom:dicom_0066000E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00520034 dicom:dicom_00520034 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "First A-line Location"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16879,7 +16594,6 @@ dicom:dicom_00520034 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_56000010 dicom:dicom_56000010 rdf:type owl:DatatypeProperty ; @@ -16892,13 +16606,11 @@ dicom:dicom_56000010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(5600,0010)"^^xsd:string ; - dicom:VR "OF"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189198 dicom:dicom_00189198 rdf:type owl:DatatypeProperty ; @@ -16911,13 +16623,11 @@ dicom:dicom_00189198 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9198)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080054 dicom:dicom_30080054 rdf:type owl:DatatypeProperty ; @@ -16930,17 +16640,17 @@ dicom:dicom_30080054 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0054)"^^xsd:string ; - dicom:VR "DA"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240035 dicom:dicom_00240035 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Fixation Checked Quantity"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -16952,7 +16662,6 @@ dicom:dicom_00240035 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0196 dicom:dicom_300A0196 rdf:type owl:DatatypeProperty ; @@ -16965,13 +16674,11 @@ dicom:dicom_300A0196 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0196)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0194 dicom:dicom_300A0194 rdf:type owl:DatatypeProperty ; @@ -16984,17 +16691,17 @@ dicom:dicom_300A0194 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0194)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0199 dicom:dicom_300A0199 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Fixation Device Pitch Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17006,7 +16713,6 @@ dicom:dicom_300A0199 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0198 dicom:dicom_300A0198 rdf:type owl:DatatypeProperty ; @@ -17019,17 +16725,17 @@ dicom:dicom_300A0198 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0198)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A019A dicom:dicom_300A019A rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Fixation Device Roll Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17041,7 +16747,6 @@ dicom:dicom_300A019A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0190 dicom:dicom_300A0190 rdf:type owl:DatatypeProperty ; @@ -17054,13 +16759,11 @@ dicom:dicom_300A0190 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0190)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0192 dicom:dicom_300A0192 rdf:type owl:DatatypeProperty ; @@ -17073,17 +16776,17 @@ dicom:dicom_300A0192 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0192)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006863AC dicom:dicom_006863AC rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Fixation Method Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17095,11 +16798,12 @@ dicom:dicom_006863AC rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240033 dicom:dicom_00240033 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Fixation Monitoring Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17111,11 +16815,12 @@ dicom:dicom_00240033 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240032 dicom:dicom_00240032 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Fixation Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17127,11 +16832,12 @@ dicom:dicom_00240032 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460080 dicom:dicom_00460080 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Flat Keratometric Axis Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17143,7 +16849,6 @@ dicom:dicom_00460080 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181314 dicom:dicom_00181314 rdf:type owl:DatatypeProperty ; @@ -17156,17 +16861,17 @@ dicom:dicom_00181314 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1314)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_7FE00008 dicom:dicom_7FE00008 rdf:type owl:DatatypeProperty ; + dicom:VR "OF"^^xsd:string ; + rdfs:label "Float Pixel Data"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17178,11 +16883,12 @@ dicom:dicom_7FE00008 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280124 dicom:dicom_00280124 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Float Pixel Padding Range Limit"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17194,11 +16900,12 @@ dicom:dicom_00280124 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280122 dicom:dicom_00280122 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Float Pixel Padding Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17210,11 +16917,12 @@ dicom:dicom_00280122 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A161 dicom:dicom_0040A161 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Floating Point Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17226,11 +16934,12 @@ dicom:dicom_0040A161 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A161 dicom:dicom_0040A161 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Floating Point Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17242,11 +16951,12 @@ dicom:dicom_0040A161 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660125 dicom:dicom_00660125 rdf:type owl:DatatypeProperty ; + dicom:VR "OF"^^xsd:string ; + rdfs:label "Floating Point Values"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17258,7 +16968,6 @@ dicom:dicom_00660125 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189183 dicom:dicom_00189183 rdf:type owl:DatatypeProperty ; @@ -17271,13 +16980,11 @@ dicom:dicom_00189183 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9183)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189010 dicom:dicom_00189010 rdf:type owl:DatatypeProperty ; @@ -17290,13 +16997,11 @@ dicom:dicom_00189010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9010)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30020042 dicom:dicom_30020042 rdf:type owl:DatatypeProperty ; @@ -17309,13 +17014,11 @@ dicom:dicom_30020042 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3002,0042)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30020041 dicom:dicom_30020041 rdf:type owl:DatatypeProperty ; @@ -17328,13 +17031,11 @@ dicom:dicom_30020041 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3002,0041)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30020040 dicom:dicom_30020040 rdf:type owl:DatatypeProperty ; @@ -17347,17 +17048,17 @@ dicom:dicom_30020040 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3002,0040)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30020052 dicom:dicom_30020052 rdf:type owl:DatatypeProperty ; + dicom:VR "SH"^^xsd:string ; + rdfs:label "Fluence Mode ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17369,11 +17070,12 @@ dicom:dicom_30020052 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30020051 dicom:dicom_30020051 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Fluence Mode"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17385,11 +17087,12 @@ dicom:dicom_30020051 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189334 dicom:dicom_00189334 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Fluoroscopy Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17401,7 +17104,6 @@ dicom:dicom_00189334 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181182 dicom:dicom_00181182 rdf:type owl:DatatypeProperty ; @@ -17414,17 +17116,17 @@ dicom:dicom_00181182 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1182)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181190 dicom:dicom_00181190 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Focal Spot(s)"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17436,11 +17138,12 @@ dicom:dicom_00181190 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181190 dicom:dicom_00181190 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Focal Spot(s)"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17452,7 +17155,6 @@ dicom:dicom_00181190 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00185012 dicom:dicom_00185012 rdf:type owl:DatatypeProperty ; @@ -17465,17 +17167,17 @@ dicom:dicom_00185012 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,5012)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480011 dicom:dicom_00480011 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Focus Method"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17487,11 +17189,12 @@ dicom:dicom_00480011 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700228 dicom:dicom_00700228 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Font Name Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17503,11 +17206,12 @@ dicom:dicom_00700228 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700227 dicom:dicom_00700227 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Font Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17519,11 +17223,12 @@ dicom:dicom_00700227 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240117 dicom:dicom_00240117 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Foveal Point Normative Data Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17535,11 +17240,12 @@ dicom:dicom_00240117 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240118 dicom:dicom_00240118 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Foveal Point Probability Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17551,11 +17257,12 @@ dicom:dicom_00240118 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240086 dicom:dicom_00240086 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Foveal Sensitivity Measured"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17567,11 +17274,12 @@ dicom:dicom_00240086 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240087 dicom:dicom_00240087 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Foveal Sensitivity"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17583,7 +17291,6 @@ dicom:dicom_00240087 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0072 dicom:dicom_300A0072 rdf:type owl:DatatypeProperty ; @@ -17596,13 +17303,11 @@ dicom:dicom_300A0072 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0072)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0071 dicom:dicom_300A0071 rdf:type owl:DatatypeProperty ; @@ -17615,13 +17320,11 @@ dicom:dicom_300A0071 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0071)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0070 dicom:dicom_300A0070 rdf:type owl:DatatypeProperty ; @@ -17634,13 +17337,11 @@ dicom:dicom_300A0070 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0070)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080220 dicom:dicom_30080220 rdf:type owl:DatatypeProperty ; @@ -17653,13 +17354,11 @@ dicom:dicom_30080220 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0220)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080224 dicom:dicom_30080224 rdf:type owl:DatatypeProperty ; @@ -17672,13 +17371,11 @@ dicom:dicom_30080224 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0224)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30020029 dicom:dicom_30020029 rdf:type owl:DatatypeProperty ; @@ -17691,13 +17388,11 @@ dicom:dicom_30020029 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3002,0029)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A007B dicom:dicom_300A007B rdf:type owl:DatatypeProperty ; @@ -17710,13 +17405,11 @@ dicom:dicom_300A007B rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,007B)"^^xsd:string ; - dicom:VR "LT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080240 dicom:dicom_30080240 rdf:type owl:DatatypeProperty ; @@ -17729,17 +17422,17 @@ dicom:dicom_30080240 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0240)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0247 dicom:dicom_003A0247 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Fractional Channel Display Scale"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17751,7 +17444,6 @@ dicom:dicom_003A0247 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189074 dicom:dicom_00189074 rdf:type owl:DatatypeProperty ; @@ -17764,13 +17456,11 @@ dicom:dicom_00189074 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9074)"^^xsd:string ; - dicom:VR "DT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189220 dicom:dicom_00189220 rdf:type owl:DatatypeProperty ; @@ -17783,13 +17473,11 @@ dicom:dicom_00189220 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9220)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209156 dicom:dicom_00209156 rdf:type owl:DatatypeProperty ; @@ -17802,17 +17490,17 @@ dicom:dicom_00209156 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,9156)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189417 dicom:dicom_00189417 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Frame Acquisition Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17824,7 +17512,6 @@ dicom:dicom_00189417 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209071 dicom:dicom_00209071 rdf:type owl:DatatypeProperty ; @@ -17837,13 +17524,11 @@ dicom:dicom_00209071 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,9071)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209158 dicom:dicom_00209158 rdf:type owl:DatatypeProperty ; @@ -17856,13 +17541,11 @@ dicom:dicom_00209158 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,9158)"^^xsd:string ; - dicom:VR "LT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209111 dicom:dicom_00209111 rdf:type owl:DatatypeProperty ; @@ -17875,17 +17558,17 @@ dicom:dicom_00209111 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,9111)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181066 dicom:dicom_00181066 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Frame Delay"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17897,11 +17580,12 @@ dicom:dicom_00181066 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189451 dicom:dicom_00189451 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Frame Detector Parameters Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17913,7 +17597,6 @@ dicom:dicom_00189451 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0028000A dicom:dicom_0028000A rdf:type owl:DatatypeProperty ; @@ -17926,17 +17609,17 @@ dicom:dicom_0028000A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,000A)"^^xsd:string ; - dicom:VR "AT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00089458 dicom:dicom_00089458 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Frame Display Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17948,11 +17631,12 @@ dicom:dicom_00089458 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189472 dicom:dicom_00189472 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Frame Display Shutter Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17968,6 +17652,8 @@ dicom:dicom_00189472 rdf:type owl:DatatypeProperty ; dicom:dicom_00081164 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Frame Extraction Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -17979,7 +17665,6 @@ dicom:dicom_00081164 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280009 dicom:dicom_00280009 rdf:type owl:DatatypeProperty ; @@ -17992,13 +17677,11 @@ dicom:dicom_00280009 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,0009)"^^xsd:string ; - dicom:VR "AT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280009 dicom:dicom_00280009 rdf:type owl:DatatypeProperty ; @@ -18011,13 +17694,11 @@ dicom:dicom_00280009 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,0009)"^^xsd:string ; - dicom:VR "AT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280009 dicom:dicom_00280009 rdf:type owl:DatatypeProperty ; @@ -18030,13 +17711,11 @@ dicom:dicom_00280009 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,0009)"^^xsd:string ; - dicom:VR "AT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280009 dicom:dicom_00280009 rdf:type owl:DatatypeProperty ; @@ -18049,13 +17728,11 @@ dicom:dicom_00280009 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,0009)"^^xsd:string ; - dicom:VR "AT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00182002 dicom:dicom_00182002 rdf:type owl:DatatypeProperty ; @@ -18068,17 +17745,17 @@ dicom:dicom_00182002 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,2002)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209453 dicom:dicom_00209453 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Frame Label"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18090,7 +17767,6 @@ dicom:dicom_00209453 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209072 dicom:dicom_00209072 rdf:type owl:DatatypeProperty ; @@ -18103,13 +17779,11 @@ dicom:dicom_00209072 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,9072)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00286020 dicom:dicom_00286020 rdf:type owl:DatatypeProperty ; @@ -18122,13 +17796,11 @@ dicom:dicom_00286020 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,6020)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00286022 dicom:dicom_00286022 rdf:type owl:DatatypeProperty ; @@ -18141,17 +17813,17 @@ dicom:dicom_00286022 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,6022)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00289443 dicom:dicom_00289443 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Frame Pixel Data Properties Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18163,11 +17835,12 @@ dicom:dicom_00289443 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00289415 dicom:dicom_00289415 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Frame Pixel Shift Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18179,7 +17852,6 @@ dicom:dicom_00289415 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00182003 dicom:dicom_00182003 rdf:type owl:DatatypeProperty ; @@ -18192,13 +17864,11 @@ dicom:dicom_00182003 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,2003)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189151 dicom:dicom_00189151 rdf:type owl:DatatypeProperty ; @@ -18211,13 +17881,11 @@ dicom:dicom_00189151 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9151)"^^xsd:string ; - dicom:VR "DT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541300 dicom:dicom_00541300 rdf:type owl:DatatypeProperty ; @@ -18230,13 +17898,11 @@ dicom:dicom_00541300 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1300)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00182004 dicom:dicom_00182004 rdf:type owl:DatatypeProperty ; @@ -18249,17 +17915,17 @@ dicom:dicom_00182004 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,2004)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181065 dicom:dicom_00181065 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Frame Time Vector"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18271,11 +17937,12 @@ dicom:dicom_00181065 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181063 dicom:dicom_00181063 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Frame Time"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18287,11 +17954,12 @@ dicom:dicom_00181063 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181063 dicom:dicom_00181063 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Frame Time"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18303,7 +17971,6 @@ dicom:dicom_00181063 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00089007 dicom:dicom_00089007 rdf:type owl:DatatypeProperty ; @@ -18316,14 +17983,11 @@ dicom:dicom_00089007 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,9007)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00289132 dicom:dicom_00289132 rdf:type owl:DatatypeProperty ; @@ -18336,13 +18000,11 @@ dicom:dicom_00289132 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,9132)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00286023 dicom:dicom_00286023 rdf:type owl:DatatypeProperty ; @@ -18355,13 +18017,11 @@ dicom:dicom_00286023 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,6023)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300600C8 dicom:dicom_300600C8 rdf:type owl:DatatypeProperty ; @@ -18374,13 +18034,11 @@ dicom:dicom_300600C8 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,00C8)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0070030C dicom:dicom_0070030C rdf:type owl:DatatypeProperty ; @@ -18393,13 +18051,11 @@ dicom:dicom_0070030C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,030C)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0070030C dicom:dicom_0070030C rdf:type owl:DatatypeProperty ; @@ -18412,13 +18068,11 @@ dicom:dicom_0070030C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,030C)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300600C6 dicom:dicom_300600C6 rdf:type owl:DatatypeProperty ; @@ -18431,13 +18085,11 @@ dicom:dicom_300600C6 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,00C6)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00200052 dicom:dicom_00200052 rdf:type owl:DatatypeProperty ; @@ -18450,17 +18102,17 @@ dicom:dicom_00200052 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,0052)"^^xsd:string ; - dicom:VR "UI"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0070030B dicom:dicom_0070030B rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Frame of Reference to Displayed Coordinate System Transformation Matrix"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18472,7 +18124,6 @@ dicom:dicom_0070030B rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189101 dicom:dicom_00189101 rdf:type owl:DatatypeProperty ; @@ -18485,13 +18136,11 @@ dicom:dicom_00189101 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9101)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209167 dicom:dicom_00209167 rdf:type owl:DatatypeProperty ; @@ -18504,13 +18153,11 @@ dicom:dicom_00209167 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,9167)"^^xsd:string ; - dicom:VR "AT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209238 dicom:dicom_00209238 rdf:type owl:DatatypeProperty ; @@ -18523,17 +18170,17 @@ dicom:dicom_00209238 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,9238)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189621 dicom:dicom_00189621 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Functional MR Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18545,11 +18192,12 @@ dicom:dicom_00189621 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189622 dicom:dicom_00189622 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Functional Settling Phase Frames Present"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18561,11 +18209,12 @@ dicom:dicom_00189622 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189623 dicom:dicom_00189623 rdf:type owl:DatatypeProperty ; + dicom:VR "DT"^^xsd:string ; + rdfs:label "Functional Sync Pulse"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18577,7 +18226,6 @@ dicom:dicom_00189623 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0044 dicom:dicom_300A0044 rdf:type owl:DatatypeProperty ; @@ -18590,13 +18238,11 @@ dicom:dicom_300A0044 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0044)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A011E dicom:dicom_300A011E rdf:type owl:DatatypeProperty ; @@ -18609,17 +18255,17 @@ dicom:dicom_300A011E rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,011E)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181008 dicom:dicom_00181008 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Gantry ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18631,11 +18277,12 @@ dicom:dicom_00181008 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189762 dicom:dicom_00189762 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Gantry Motion Corrected"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18647,11 +18294,12 @@ dicom:dicom_00189762 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A014E dicom:dicom_300A014E rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Gantry Pitch Angle Tolerance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18663,11 +18311,12 @@ dicom:dicom_300A014E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A014A dicom:dicom_300A014A rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Gantry Pitch Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18679,11 +18328,12 @@ dicom:dicom_300A014A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A014C dicom:dicom_300A014C rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Gantry Pitch Rotation Direction"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18695,7 +18345,6 @@ dicom:dicom_300A014C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A011F dicom:dicom_300A011F rdf:type owl:DatatypeProperty ; @@ -18708,13 +18357,11 @@ dicom:dicom_300A011F rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,011F)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181121 dicom:dicom_00181121 rdf:type owl:DatatypeProperty ; @@ -18727,17 +18374,17 @@ dicom:dicom_00181121 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1121)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181120 dicom:dicom_00181120 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Gantry/Detector Tilt"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18749,11 +18396,12 @@ dicom:dicom_00181120 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700261 dicom:dicom_00700261 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Gap Length"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18765,7 +18413,6 @@ dicom:dicom_00700261 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540062 dicom:dicom_00540062 rdf:type owl:DatatypeProperty ; @@ -18778,17 +18425,17 @@ dicom:dicom_00540062 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0062)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0422 dicom:dicom_300A0422 rdf:type owl:DatatypeProperty ; + dicom:VR "ST"^^xsd:string ; + rdfs:label "General Accessory Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18800,11 +18447,12 @@ dicom:dicom_300A0422 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0421 dicom:dicom_300A0421 rdf:type owl:DatatypeProperty ; + dicom:VR "SH"^^xsd:string ; + rdfs:label "General Accessory ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18816,11 +18464,12 @@ dicom:dicom_300A0421 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0424 dicom:dicom_300A0424 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "General Accessory Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18832,11 +18481,12 @@ dicom:dicom_300A0424 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0420 dicom:dicom_300A0420 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "General Accessory Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18848,11 +18498,12 @@ dicom:dicom_300A0420 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0423 dicom:dicom_300A0423 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "General Accessory Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18864,11 +18515,12 @@ dicom:dicom_300A0423 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240102 dicom:dicom_00240102 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Generalized Defect Corrected Sensitivity Deviation Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18880,11 +18532,12 @@ dicom:dicom_00240102 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240104 dicom:dicom_00240104 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Generalized Defect Corrected Sensitivity Deviation Probability Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18896,11 +18549,12 @@ dicom:dicom_00240104 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240103 dicom:dicom_00240103 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Generalized Defect Corrected Sensitivity Deviation Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18912,11 +18566,12 @@ dicom:dicom_00240103 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240067 dicom:dicom_00240067 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Generalized Defect Sensitivity Deviation Algorithm Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18928,11 +18583,12 @@ dicom:dicom_00240067 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181005 dicom:dicom_00181005 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Generator ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18944,11 +18600,12 @@ dicom:dicom_00181005 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181170 dicom:dicom_00181170 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Generator Power"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18960,11 +18617,12 @@ dicom:dicom_00181170 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100229 dicom:dicom_00100229 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Genetic Modifications Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18976,11 +18634,12 @@ dicom:dicom_00100229 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100222 dicom:dicom_00100222 rdf:type owl:DatatypeProperty ; + dicom:VR "UC"^^xsd:string ; + rdfs:label "Genetic Modifications Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -18992,11 +18651,12 @@ dicom:dicom_00100222 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100223 dicom:dicom_00100223 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Genetic Modifications Nomenclature"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19008,11 +18668,12 @@ dicom:dicom_00100223 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100221 dicom:dicom_00100221 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Genetic Modifications Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19024,11 +18685,12 @@ dicom:dicom_00100221 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00289445 dicom:dicom_00289445 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Geometric Maximum Distortion"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19040,11 +18702,12 @@ dicom:dicom_00289445 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00289444 dicom:dicom_00289444 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Geometrical Properties"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19056,7 +18719,6 @@ dicom:dicom_00289444 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189032 dicom:dicom_00189032 rdf:type owl:DatatypeProperty ; @@ -19069,17 +18731,17 @@ dicom:dicom_00189032 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9032)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240059 dicom:dicom_00240059 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Global Deviation Probability Normals Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19091,11 +18753,12 @@ dicom:dicom_00240059 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240083 dicom:dicom_00240083 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Global Deviation Probability Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19107,11 +18770,12 @@ dicom:dicom_00240083 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240071 dicom:dicom_00240071 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Global Deviation Probability"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19123,11 +18787,12 @@ dicom:dicom_00240071 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240066 dicom:dicom_00240066 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Global Deviation from Normal"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19139,7 +18804,6 @@ dicom:dicom_00240066 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189241 dicom:dicom_00189241 rdf:type owl:DatatypeProperty ; @@ -19152,13 +18816,11 @@ dicom:dicom_00189241 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9241)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189180 dicom:dicom_00189180 rdf:type owl:DatatypeProperty ; @@ -19171,13 +18833,11 @@ dicom:dicom_00189180 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9180)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189182 dicom:dicom_00189182 rdf:type owl:DatatypeProperty ; @@ -19190,13 +18850,11 @@ dicom:dicom_00189182 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9182)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700001 dicom:dicom_00700001 rdf:type owl:DatatypeProperty ; @@ -19209,13 +18867,11 @@ dicom:dicom_00700001 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0001)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700005 dicom:dicom_00700005 rdf:type owl:DatatypeProperty ; @@ -19228,13 +18884,11 @@ dicom:dicom_00700005 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0005)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700318 dicom:dicom_00700318 rdf:type owl:DatatypeProperty ; @@ -19247,13 +18901,11 @@ dicom:dicom_00700318 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0318)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700022 dicom:dicom_00700022 rdf:type owl:DatatypeProperty ; @@ -19266,13 +18918,11 @@ dicom:dicom_00700022 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0022)"^^xsd:string ; - dicom:VR "FL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700020 dicom:dicom_00700020 rdf:type owl:DatatypeProperty ; @@ -19285,13 +18935,11 @@ dicom:dicom_00700020 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0020)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700024 dicom:dicom_00700024 rdf:type owl:DatatypeProperty ; @@ -19304,17 +18952,17 @@ dicom:dicom_00700024 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0024)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700208 dicom:dicom_00700208 rdf:type owl:DatatypeProperty ; + dicom:VR "ST"^^xsd:string ; + rdfs:label "Graphic Group Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19326,11 +18974,12 @@ dicom:dicom_00700208 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700295 dicom:dicom_00700295 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Graphic Group ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19342,11 +18991,12 @@ dicom:dicom_00700295 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700295 dicom:dicom_00700295 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Graphic Group ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19358,11 +19008,12 @@ dicom:dicom_00700295 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700295 dicom:dicom_00700295 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Graphic Group ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19374,11 +19025,12 @@ dicom:dicom_00700295 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700207 dicom:dicom_00700207 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Graphic Group Label"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19390,11 +19042,12 @@ dicom:dicom_00700207 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700234 dicom:dicom_00700234 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Graphic Group Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19406,7 +19059,6 @@ dicom:dicom_00700234 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700068 dicom:dicom_00700068 rdf:type owl:DatatypeProperty ; @@ -19419,13 +19071,11 @@ dicom:dicom_00700068 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0068)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700062 dicom:dicom_00700062 rdf:type owl:DatatypeProperty ; @@ -19438,17 +19088,17 @@ dicom:dicom_00700062 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0062)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700401 dicom:dicom_00700401 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Graphic Layer Recommended Display CIELab Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19460,6 +19110,7 @@ dicom:dicom_00700401 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . +### http://purl.org/nidash/dicom#dicom_00700066 dicom:dicom_00700066 rdf:type owl:DatatypeProperty ; @@ -19471,13 +19122,11 @@ dicom:dicom_00700066 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0066)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700060 dicom:dicom_00700060 rdf:type owl:DatatypeProperty ; @@ -19490,13 +19139,11 @@ dicom:dicom_00700060 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0060)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700002 dicom:dicom_00700002 rdf:type owl:DatatypeProperty ; @@ -19509,13 +19156,11 @@ dicom:dicom_00700002 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0002)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700009 dicom:dicom_00700009 rdf:type owl:DatatypeProperty ; @@ -19528,13 +19173,11 @@ dicom:dicom_00700009 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0009)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700023 dicom:dicom_00700023 rdf:type owl:DatatypeProperty ; @@ -19547,13 +19190,11 @@ dicom:dicom_00700023 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0023)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281202 dicom:dicom_00281202 rdf:type owl:DatatypeProperty ; @@ -19566,13 +19207,11 @@ dicom:dicom_00281202 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,1202)"^^xsd:string ; - dicom:VR "OW"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281102 dicom:dicom_00281102 rdf:type owl:DatatypeProperty ; @@ -19585,13 +19224,11 @@ dicom:dicom_00281102 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,1102)"^^xsd:string ; - dicom:VR "US or SS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187040 dicom:dicom_00187040 rdf:type owl:DatatypeProperty ; @@ -19604,13 +19241,11 @@ dicom:dicom_00187040 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7040)"^^xsd:string ; - dicom:VR "LT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187046 dicom:dicom_00187046 rdf:type owl:DatatypeProperty ; @@ -19623,17 +19258,17 @@ dicom:dicom_00187046 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7046)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00640007 dicom:dicom_00640007 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Grid Dimensions"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19645,7 +19280,6 @@ dicom:dicom_00640007 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018704C dicom:dicom_0018704C rdf:type owl:DatatypeProperty ; @@ -19658,13 +19292,11 @@ dicom:dicom_0018704C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,704C)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_3004000C dicom:dicom_3004000C rdf:type owl:DatatypeProperty ; @@ -19677,17 +19309,17 @@ dicom:dicom_3004000C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3004,000C)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181006 dicom:dicom_00181006 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Grid ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19699,7 +19331,6 @@ dicom:dicom_00181006 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187048 dicom:dicom_00187048 rdf:type owl:DatatypeProperty ; @@ -19712,13 +19343,11 @@ dicom:dicom_00187048 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7048)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187044 dicom:dicom_00187044 rdf:type owl:DatatypeProperty ; @@ -19731,17 +19360,17 @@ dicom:dicom_00187044 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7044)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00640008 dicom:dicom_00640008 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Grid Resolution"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19753,7 +19382,6 @@ dicom:dicom_00640008 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187041 dicom:dicom_00187041 rdf:type owl:DatatypeProperty ; @@ -19766,13 +19394,11 @@ dicom:dicom_00187041 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7041)"^^xsd:string ; - dicom:VR "LT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187042 dicom:dicom_00187042 rdf:type owl:DatatypeProperty ; @@ -19785,13 +19411,11 @@ dicom:dicom_00187042 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7042)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181166 dicom:dicom_00181166 rdf:type owl:DatatypeProperty ; @@ -19804,17 +19428,17 @@ dicom:dicom_00181166 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1166)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100027 dicom:dicom_00100027 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Group of Patients Identification Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19826,11 +19450,12 @@ dicom:dicom_00100027 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040E001 dicom:dicom_0040E001 rdf:type owl:DatatypeProperty ; + dicom:VR "ST"^^xsd:string ; + rdfs:label "HL7 Instance Identifier"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19842,11 +19467,12 @@ dicom:dicom_0040E001 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040E001 dicom:dicom_0040E001 rdf:type owl:DatatypeProperty ; + dicom:VR "ST"^^xsd:string ; + rdfs:label "HL7 Instance Identifier"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19858,11 +19484,12 @@ dicom:dicom_0040E001 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A390 dicom:dicom_0040A390 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "HL7 Structured Document Reference Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19874,11 +19501,12 @@ dicom:dicom_0040A390 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686310 dicom:dicom_00686310 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "HPGL Contour Pen Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19890,11 +19518,12 @@ dicom:dicom_00686310 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006862D0 dicom:dicom_006862D0 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "HPGL Document ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19906,11 +19535,12 @@ dicom:dicom_006862D0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006862D5 dicom:dicom_006862D5 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "HPGL Document Label"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19922,11 +19552,12 @@ dicom:dicom_006862D5 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006862F2 dicom:dicom_006862F2 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "HPGL Document Scaling"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19938,11 +19569,12 @@ dicom:dicom_006862F2 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006862C0 dicom:dicom_006862C0 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "HPGL Document Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19954,11 +19586,12 @@ dicom:dicom_006862C0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686300 dicom:dicom_00686300 rdf:type owl:DatatypeProperty ; + dicom:VR "OB"^^xsd:string ; + rdfs:label "HPGL Document"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19970,11 +19603,12 @@ dicom:dicom_00686300 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686345 dicom:dicom_00686345 rdf:type owl:DatatypeProperty ; + dicom:VR "ST"^^xsd:string ; + rdfs:label "HPGL Pen Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -19986,11 +19620,12 @@ dicom:dicom_00686345 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686340 dicom:dicom_00686340 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "HPGL Pen Label"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20002,11 +19637,12 @@ dicom:dicom_00686340 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686330 dicom:dicom_00686330 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "HPGL Pen Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20018,11 +19654,12 @@ dicom:dicom_00686330 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686320 dicom:dicom_00686320 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "HPGL Pen Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20034,7 +19671,6 @@ dicom:dicom_00686320 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400314 dicom:dicom_00400314 rdf:type owl:DatatypeProperty ; @@ -20047,17 +19683,17 @@ dicom:dicom_00400314 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,0314)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0072000A dicom:dicom_0072000A rdf:type owl:DatatypeProperty ; + dicom:VR "DT"^^xsd:string ; + rdfs:label "Hanging Protocol Creation DateTime"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20069,11 +19705,12 @@ dicom:dicom_0072000A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720008 dicom:dicom_00720008 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Hanging Protocol Creator"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20085,11 +19722,12 @@ dicom:dicom_00720008 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720008 dicom:dicom_00720008 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Hanging Protocol Creator"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20101,11 +19739,12 @@ dicom:dicom_00720008 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0072000C dicom:dicom_0072000C rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Hanging Protocol Definition Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20117,11 +19756,12 @@ dicom:dicom_0072000C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720004 dicom:dicom_00720004 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Hanging Protocol Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20133,11 +19773,12 @@ dicom:dicom_00720004 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720006 dicom:dicom_00720006 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Hanging Protocol Level"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20149,11 +19790,12 @@ dicom:dicom_00720006 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720002 dicom:dicom_00720002 rdf:type owl:DatatypeProperty ; + dicom:VR "SH"^^xsd:string ; + rdfs:label "Hanging Protocol Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20165,11 +19807,12 @@ dicom:dicom_00720002 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720002 dicom:dicom_00720002 rdf:type owl:DatatypeProperty ; + dicom:VR "SH"^^xsd:string ; + rdfs:label "Hanging Protocol Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20181,11 +19824,12 @@ dicom:dicom_00720002 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720010 dicom:dicom_00720010 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Hanging Protocol User Group Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20197,11 +19841,12 @@ dicom:dicom_00720010 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0072000E dicom:dicom_0072000E rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Hanging Protocol User Identification Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20213,7 +19858,6 @@ dicom:dicom_0072000E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181088 dicom:dicom_00181088 rdf:type owl:DatatypeProperty ; @@ -20226,13 +19870,11 @@ dicom:dicom_00181088 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1088)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280102 dicom:dicom_00280102 rdf:type owl:DatatypeProperty ; @@ -20245,17 +19887,17 @@ dicom:dicom_00280102 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,0102)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181082 dicom:dicom_00181082 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "High R-R Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20267,7 +19909,6 @@ dicom:dicom_00181082 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00C7 dicom:dicom_300A00C7 rdf:type owl:DatatypeProperty ; @@ -20280,17 +19921,17 @@ dicom:dicom_300A00C7 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00C7)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040E031 dicom:dicom_0040E031 rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Home Community ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20302,11 +19943,12 @@ dicom:dicom_0040E031 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700242 dicom:dicom_00700242 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Horizontal Alignment"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20318,7 +19960,6 @@ dicom:dicom_00700242 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0022000C dicom:dicom_0022000C rdf:type owl:DatatypeProperty ; @@ -20331,17 +19972,17 @@ dicom:dicom_0022000C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,000C)"^^xsd:string ; - dicom:VR "FL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460032 dicom:dicom_00460032 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Horizontal Prism Base"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20353,11 +19994,12 @@ dicom:dicom_00460032 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460030 dicom:dicom_00460030 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Horizontal Prism Power"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20369,11 +20011,12 @@ dicom:dicom_00460030 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00282000 dicom:dicom_00282000 rdf:type owl:DatatypeProperty ; + dicom:VR "OB"^^xsd:string ; + rdfs:label "ICC Profile"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20385,11 +20028,12 @@ dicom:dicom_00282000 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221028 dicom:dicom_00221028 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "IOL Formula Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20401,11 +20045,12 @@ dicom:dicom_00221028 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221029 dicom:dicom_00221029 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "IOL Formula Detail"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20417,11 +20062,12 @@ dicom:dicom_00221029 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221093 dicom:dicom_00221093 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "IOL Manufacturer"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20433,11 +20079,12 @@ dicom:dicom_00221093 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221090 dicom:dicom_00221090 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "IOL Power Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20449,11 +20096,12 @@ dicom:dicom_00221090 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221121 dicom:dicom_00221121 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "IOL Power for Exact Emmetropia"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20465,11 +20113,12 @@ dicom:dicom_00221121 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221122 dicom:dicom_00221122 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "IOL Power for Exact Target Refraction"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20481,11 +20130,12 @@ dicom:dicom_00221122 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221053 dicom:dicom_00221053 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "IOL Power"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20497,7 +20147,6 @@ dicom:dicom_00221053 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00183100 dicom:dicom_00183100 rdf:type owl:DatatypeProperty ; @@ -20510,13 +20159,11 @@ dicom:dicom_00183100 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,3100)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00183102 dicom:dicom_00183102 rdf:type owl:DatatypeProperty ; @@ -20529,13 +20176,11 @@ dicom:dicom_00183102 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,3102)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00183101 dicom:dicom_00183101 rdf:type owl:DatatypeProperty ; @@ -20548,13 +20193,11 @@ dicom:dicom_00183101 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,3101)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00183103 dicom:dicom_00183103 rdf:type owl:DatatypeProperty ; @@ -20567,13 +20210,11 @@ dicom:dicom_00183103 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,3103)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00183103 dicom:dicom_00183103 rdf:type owl:DatatypeProperty ; @@ -20586,13 +20227,11 @@ dicom:dicom_00183103 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,3103)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00183104 dicom:dicom_00183104 rdf:type owl:DatatypeProperty ; @@ -20605,13 +20244,11 @@ dicom:dicom_00183104 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,3104)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00880200 dicom:dicom_00880200 rdf:type owl:DatatypeProperty ; @@ -20624,13 +20261,11 @@ dicom:dicom_00880200 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0088,0200)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A525 dicom:dicom_0040A525 rdf:type owl:DatatypeProperty ; @@ -20643,17 +20278,17 @@ dicom:dicom_0040A525 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A525)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400035 dicom:dicom_00400035 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Identifier Type Code"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20665,11 +20300,12 @@ dicom:dicom_00400035 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080306 dicom:dicom_00080306 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Identifying Private Elements"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20681,11 +20317,12 @@ dicom:dicom_00080306 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220057 dicom:dicom_00220057 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Illumination Bandwidth"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20697,11 +20334,12 @@ dicom:dicom_00220057 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480108 dicom:dicom_00480108 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Illumination Color Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20713,11 +20351,12 @@ dicom:dicom_00480108 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220056 dicom:dicom_00220056 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Illumination Power"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20729,7 +20368,6 @@ dicom:dicom_00220056 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220016 dicom:dicom_00220016 rdf:type owl:DatatypeProperty ; @@ -20742,17 +20380,17 @@ dicom:dicom_00220016 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0016)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220055 dicom:dicom_00220055 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Illumination Wave Length"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20764,11 +20402,12 @@ dicom:dicom_00220055 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220055 dicom:dicom_00220055 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Illumination Wave Length"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20780,7 +20419,6 @@ dicom:dicom_00220055 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_2010015E dicom:dicom_2010015E rdf:type owl:DatatypeProperty ; @@ -20793,17 +20431,17 @@ dicom:dicom_2010015E rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(2010,015E)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480100 dicom:dicom_00480100 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Illuminator Type Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20815,11 +20453,12 @@ dicom:dicom_00480100 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720318 dicom:dicom_00720318 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Image Box Large Scroll Amount"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20831,11 +20470,12 @@ dicom:dicom_00720318 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720316 dicom:dicom_00720316 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Image Box Large Scroll Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20847,11 +20487,12 @@ dicom:dicom_00720316 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720304 dicom:dicom_00720304 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Image Box Layout Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20863,11 +20504,12 @@ dicom:dicom_00720304 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720302 dicom:dicom_00720302 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Image Box Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20879,11 +20521,12 @@ dicom:dicom_00720302 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720320 dicom:dicom_00720320 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Image Box Overlap Priority"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20895,11 +20538,12 @@ dicom:dicom_00720320 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720310 dicom:dicom_00720310 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Image Box Scroll Direction"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20911,11 +20555,12 @@ dicom:dicom_00720310 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720314 dicom:dicom_00720314 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Image Box Small Scroll Amount"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20927,11 +20572,12 @@ dicom:dicom_00720314 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720312 dicom:dicom_00720312 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Image Box Small Scroll Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20943,11 +20589,12 @@ dicom:dicom_00720312 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720430 dicom:dicom_00720430 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Image Box Synchronization Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20959,11 +20606,12 @@ dicom:dicom_00720430 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720306 dicom:dicom_00720306 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Image Box Tile Horizontal Dimension"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20975,11 +20623,12 @@ dicom:dicom_00720306 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720308 dicom:dicom_00720308 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Image Box Tile Vertical Dimension"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -20991,11 +20640,12 @@ dicom:dicom_00720308 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720300 dicom:dicom_00720300 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Image Boxes Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21007,7 +20657,6 @@ dicom:dicom_00720300 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040071A dicom:dicom_0040071A rdf:type owl:DatatypeProperty ; @@ -21020,13 +20669,11 @@ dicom:dicom_0040071A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,071A)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00204000 dicom:dicom_00204000 rdf:type owl:DatatypeProperty ; @@ -21039,17 +20686,17 @@ dicom:dicom_00204000 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,4000)"^^xsd:string ; - dicom:VR "LT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189941 dicom:dicom_00189941 rdf:type owl:DatatypeProperty ; + dicom:VR "UT"^^xsd:string ; + rdfs:label "Image Filter Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21061,11 +20708,12 @@ dicom:dicom_00189941 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189320 dicom:dicom_00189320 rdf:type owl:DatatypeProperty ; + dicom:VR "SH"^^xsd:string ; + rdfs:label "Image Filter"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21077,7 +20725,6 @@ dicom:dicom_00189320 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_60xx0051 dicom:dicom_60xx0051 rdf:type owl:DatatypeProperty ; @@ -21090,13 +20737,11 @@ dicom:dicom_60xx0051 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(60xx,0051)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700041 dicom:dicom_00700041 rdf:type owl:DatatypeProperty ; @@ -21109,13 +20754,11 @@ dicom:dicom_00700041 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0041)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540400 dicom:dicom_00540400 rdf:type owl:DatatypeProperty ; @@ -21128,13 +20771,11 @@ dicom:dicom_00540400 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0400)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541330 dicom:dicom_00541330 rdf:type owl:DatatypeProperty ; @@ -21147,13 +20788,11 @@ dicom:dicom_00541330 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1330)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00200062 dicom:dicom_00200062 rdf:type owl:DatatypeProperty ; @@ -21166,13 +20805,11 @@ dicom:dicom_00200062 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,0062)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00200037 dicom:dicom_00200037 rdf:type owl:DatatypeProperty ; @@ -21185,17 +20822,17 @@ dicom:dicom_00200037 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,0037)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480102 dicom:dicom_00480102 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Image Orientation (Slide)"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21207,11 +20844,12 @@ dicom:dicom_00480102 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209302 dicom:dicom_00209302 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Image Orientation (Volume)"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21223,7 +20861,6 @@ dicom:dicom_00209302 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220004 dicom:dicom_00220004 rdf:type owl:DatatypeProperty ; @@ -21236,13 +20873,11 @@ dicom:dicom_00220004 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0004)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220003 dicom:dicom_00220003 rdf:type owl:DatatypeProperty ; @@ -21255,13 +20890,11 @@ dicom:dicom_00220003 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0003)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220018 dicom:dicom_00220018 rdf:type owl:DatatypeProperty ; @@ -21274,13 +20907,11 @@ dicom:dicom_00220018 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0018)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30020011 dicom:dicom_30020011 rdf:type owl:DatatypeProperty ; @@ -21293,13 +20924,11 @@ dicom:dicom_30020011 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3002,0011)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00200032 dicom:dicom_00200032 rdf:type owl:DatatypeProperty ; @@ -21312,13 +20941,11 @@ dicom:dicom_00200032 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,0032)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00200032 dicom:dicom_00200032 rdf:type owl:DatatypeProperty ; @@ -21331,7 +20958,6 @@ dicom:dicom_00200032 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,0032)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . @@ -21341,6 +20967,8 @@ dicom:dicom_00200032 rdf:type owl:DatatypeProperty ; dicom:dicom_00209301 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Image Position (Volume)"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21352,11 +20980,12 @@ dicom:dicom_00209301 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00289446 dicom:dicom_00289446 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Image Processing Applied"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21368,7 +20997,6 @@ dicom:dicom_00289446 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700042 dicom:dicom_00700042 rdf:type owl:DatatypeProperty ; @@ -21381,17 +21009,17 @@ dicom:dicom_00700042 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0042)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720040 dicom:dicom_00720040 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Image Set Label"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21403,11 +21031,12 @@ dicom:dicom_00720040 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720032 dicom:dicom_00720032 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Image Set Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21419,11 +21048,12 @@ dicom:dicom_00720032 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720034 dicom:dicom_00720034 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Image Set Selector Category"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21435,11 +21065,12 @@ dicom:dicom_00720034 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720022 dicom:dicom_00720022 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Image Set Selector Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21451,11 +21082,12 @@ dicom:dicom_00720022 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720024 dicom:dicom_00720024 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Image Set Selector Usage Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21467,11 +21099,12 @@ dicom:dicom_00720024 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720020 dicom:dicom_00720020 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Image Sets Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21483,11 +21116,12 @@ dicom:dicom_00720020 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181067 dicom:dicom_00181067 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Image Trigger Delay"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21499,7 +21133,6 @@ dicom:dicom_00181067 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080008 dicom:dicom_00080008 rdf:type owl:DatatypeProperty ; @@ -21512,14 +21145,11 @@ dicom:dicom_00080008 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0008)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_0018115E dicom:dicom_0018115E rdf:type owl:DatatypeProperty ; @@ -21532,18 +21162,17 @@ dicom:dicom_0018115E rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,115E)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00289520 dicom:dicom_00289520 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Image to Equipment Mapping Matrix"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21555,7 +21184,6 @@ dicom:dicom_00289520 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180085 dicom:dicom_00180085 rdf:type owl:DatatypeProperty ; @@ -21568,17 +21196,17 @@ dicom:dicom_00180085 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0085)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480003 dicom:dicom_00480003 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Imaged Volume Depth"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21590,11 +21218,12 @@ dicom:dicom_00480003 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480002 dicom:dicom_00480002 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Imaged Volume Height"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21606,11 +21235,12 @@ dicom:dicom_00480002 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480001 dicom:dicom_00480001 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Imaged Volume Width"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21622,12 +21252,12 @@ dicom:dicom_00480001 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00181164 dicom:dicom_00181164 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Imager Pixel Spacing"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21639,8 +21269,6 @@ dicom:dicom_00181164 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00201002 dicom:dicom_00201002 rdf:type owl:DatatypeProperty ; @@ -21653,13 +21281,11 @@ dicom:dicom_00201002 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,1002)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00CC dicom:dicom_300A00CC rdf:type owl:DatatypeProperty ; @@ -21672,13 +21298,11 @@ dicom:dicom_300A00CC rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00CC)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180084 dicom:dicom_00180084 rdf:type owl:DatatypeProperty ; @@ -21691,17 +21315,17 @@ dicom:dicom_00180084 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0084)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00760003 dicom:dicom_00760003 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Implant Assembly Template Issuer"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21713,11 +21337,12 @@ dicom:dicom_00760003 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00760001 dicom:dicom_00760001 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Implant Assembly Template Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21729,11 +21354,12 @@ dicom:dicom_00760001 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00760010 dicom:dicom_00760010 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Implant Assembly Template Target Anatomy Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21745,11 +21371,12 @@ dicom:dicom_00760010 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0076000A dicom:dicom_0076000A rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Implant Assembly Template Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21761,11 +21388,12 @@ dicom:dicom_0076000A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00760006 dicom:dicom_00760006 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Implant Assembly Template Version"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21777,11 +21405,12 @@ dicom:dicom_00760006 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221095 dicom:dicom_00221095 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Implant Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21793,11 +21422,12 @@ dicom:dicom_00221095 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221097 dicom:dicom_00221097 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Implant Part Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21809,11 +21439,12 @@ dicom:dicom_00221097 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006862A0 dicom:dicom_006862A0 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Implant Regulatory Disapproval Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21825,11 +21456,12 @@ dicom:dicom_006862A0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686210 dicom:dicom_00686210 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Implant Size"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21841,11 +21473,12 @@ dicom:dicom_00686210 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686230 dicom:dicom_00686230 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Implant Target Anatomy Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21857,11 +21490,12 @@ dicom:dicom_00686230 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686350 dicom:dicom_00686350 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Implant Template 3D Model Surface Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21873,11 +21507,12 @@ dicom:dicom_00686350 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00780010 dicom:dicom_00780010 rdf:type owl:DatatypeProperty ; + dicom:VR "ST"^^xsd:string ; + rdfs:label "Implant Template Group Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21889,11 +21524,12 @@ dicom:dicom_00780010 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00780020 dicom:dicom_00780020 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Implant Template Group Issuer"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21905,11 +21541,12 @@ dicom:dicom_00780020 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0078002E dicom:dicom_0078002E rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Implant Template Group Member ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21921,11 +21558,12 @@ dicom:dicom_0078002E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00780070 dicom:dicom_00780070 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Implant Template Group Member Matching 2D Coordinates Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21937,11 +21575,12 @@ dicom:dicom_00780070 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0078002A dicom:dicom_0078002A rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Implant Template Group Members Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21953,11 +21592,12 @@ dicom:dicom_0078002A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00780001 dicom:dicom_00780001 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Implant Template Group Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21969,11 +21609,12 @@ dicom:dicom_00780001 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00780028 dicom:dicom_00780028 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Implant Template Group Target Anatomy Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -21985,11 +21626,12 @@ dicom:dicom_00780028 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_007800B2 dicom:dicom_007800B2 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Implant Template Group Variation Dimension Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22001,11 +21643,12 @@ dicom:dicom_007800B2 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_007800B4 dicom:dicom_007800B4 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Implant Template Group Variation Dimension Rank Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22017,11 +21660,12 @@ dicom:dicom_007800B4 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_007800B8 dicom:dicom_007800B8 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Implant Template Group Variation Dimension Rank"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22033,11 +21677,12 @@ dicom:dicom_007800B8 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_007800B0 dicom:dicom_007800B0 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Implant Template Group Variation Dimension Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22049,11 +21694,12 @@ dicom:dicom_007800B0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00780024 dicom:dicom_00780024 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Implant Template Group Version"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22065,11 +21711,12 @@ dicom:dicom_00780024 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686221 dicom:dicom_00686221 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Implant Template Version"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22081,11 +21728,12 @@ dicom:dicom_00686221 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006863A8 dicom:dicom_006863A8 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Implant Type Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22097,11 +21745,12 @@ dicom:dicom_006863A8 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686223 dicom:dicom_00686223 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Implant Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22113,7 +21762,6 @@ dicom:dicom_00686223 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209057 dicom:dicom_00209057 rdf:type owl:DatatypeProperty ; @@ -22126,13 +21774,11 @@ dicom:dicom_00209057 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,9057)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209162 dicom:dicom_00209162 rdf:type owl:DatatypeProperty ; @@ -22145,13 +21791,11 @@ dicom:dicom_00209162 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,9162)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209163 dicom:dicom_00209163 rdf:type owl:DatatypeProperty ; @@ -22164,14 +21808,11 @@ dicom:dicom_00209163 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,9163)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00181312 dicom:dicom_00181312 rdf:type owl:DatatypeProperty ; @@ -22184,18 +21825,17 @@ dicom:dicom_00181312 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1312)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00240338 dicom:dicom_00240338 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Index Normals Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22207,11 +21847,12 @@ dicom:dicom_00240338 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240344 dicom:dicom_00240344 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Index Probability Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22223,11 +21864,12 @@ dicom:dicom_00240344 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240341 dicom:dicom_00240341 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Index Probability"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22239,11 +21881,12 @@ dicom:dicom_00240341 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686260 dicom:dicom_00686260 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Information From Manufacturer Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22255,11 +21898,12 @@ dicom:dicom_00686260 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686270 dicom:dicom_00686270 rdf:type owl:DatatypeProperty ; + dicom:VR "DT"^^xsd:string ; + rdfs:label "Information Issue DateTime"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22271,11 +21915,12 @@ dicom:dicom_00686270 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686280 dicom:dicom_00686280 rdf:type owl:DatatypeProperty ; + dicom:VR "ST"^^xsd:string ; + rdfs:label "Information Summary"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22287,11 +21932,12 @@ dicom:dicom_00686280 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180042 dicom:dicom_00180042 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Initial Cine Run State"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22303,11 +21949,12 @@ dicom:dicom_00180042 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701203 dicom:dicom_00701203 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Input Sequence Position Index"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22319,11 +21966,12 @@ dicom:dicom_00701203 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080015 dicom:dicom_00080015 rdf:type owl:DatatypeProperty ; + dicom:VR "DT"^^xsd:string ; + rdfs:label "Instance Coercion DateTime"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22335,7 +21983,6 @@ dicom:dicom_00080015 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080012 dicom:dicom_00080012 rdf:type owl:DatatypeProperty ; @@ -22348,13 +21995,11 @@ dicom:dicom_00080012 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0012)"^^xsd:string ; - dicom:VR "DA"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080013 dicom:dicom_00080013 rdf:type owl:DatatypeProperty ; @@ -22367,14 +22012,11 @@ dicom:dicom_00080013 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0013)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00080014 dicom:dicom_00080014 rdf:type owl:DatatypeProperty ; @@ -22387,14 +22029,11 @@ dicom:dicom_00080014 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0014)"^^xsd:string ; - dicom:VR "UI"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00200013 dicom:dicom_00200013 rdf:type owl:DatatypeProperty ; @@ -22407,13 +22046,11 @@ dicom:dicom_00200013 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,0013)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080081 dicom:dicom_00080081 rdf:type owl:DatatypeProperty ; @@ -22426,13 +22063,11 @@ dicom:dicom_00080081 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0081)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080082 dicom:dicom_00080082 rdf:type owl:DatatypeProperty ; @@ -22445,13 +22080,11 @@ dicom:dicom_00080082 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0082)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080082 dicom:dicom_00080082 rdf:type owl:DatatypeProperty ; @@ -22464,13 +22097,11 @@ dicom:dicom_00080082 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0082)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080080 dicom:dicom_00080080 rdf:type owl:DatatypeProperty ; @@ -22483,13 +22114,11 @@ dicom:dicom_00080080 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0080)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081040 dicom:dicom_00081040 rdf:type owl:DatatypeProperty ; @@ -22502,17 +22131,17 @@ dicom:dicom_00081040 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1040)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189917 dicom:dicom_00189917 rdf:type owl:DatatypeProperty ; + dicom:VR "UT"^^xsd:string ; + rdfs:label "Instruction Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22524,11 +22153,12 @@ dicom:dicom_00189917 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189915 dicom:dicom_00189915 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Instruction Index"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22540,11 +22170,12 @@ dicom:dicom_00189915 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018991A dicom:dicom_0018991A rdf:type owl:DatatypeProperty ; + dicom:VR "UT"^^xsd:string ; + rdfs:label "Instruction Performance Comment"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22556,11 +22187,12 @@ dicom:dicom_0018991A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189919 dicom:dicom_00189919 rdf:type owl:DatatypeProperty ; + dicom:VR "DT"^^xsd:string ; + rdfs:label "Instruction Performed DateTime"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22572,11 +22204,12 @@ dicom:dicom_00189919 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189918 dicom:dicom_00189918 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Instruction Performed Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22588,12 +22221,12 @@ dicom:dicom_00189918 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00189914 dicom:dicom_00189914 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Instruction Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22605,11 +22238,12 @@ dicom:dicom_00189914 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189916 dicom:dicom_00189916 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Instruction Text"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22621,11 +22255,12 @@ dicom:dicom_00189916 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189428 dicom:dicom_00189428 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Intensifier Active Dimension(s)"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22637,11 +22272,12 @@ dicom:dicom_00189428 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189427 dicom:dicom_00189427 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Intensifier Active Shape"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22653,7 +22289,6 @@ dicom:dicom_00189427 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181162 dicom:dicom_00181162 rdf:type owl:DatatypeProperty ; @@ -22666,17 +22301,17 @@ dicom:dicom_00181162 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1162)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00500019 dicom:dicom_00500019 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Inter-Marker Distance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22688,11 +22323,12 @@ dicom:dicom_00500019 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460063 dicom:dicom_00460063 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Intermediate Pupillary Distance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22704,11 +22340,12 @@ dicom:dicom_00460063 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00520039 dicom:dicom_00520039 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Interpolation Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22720,11 +22357,12 @@ dicom:dicom_00520039 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181083 dicom:dicom_00181083 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Intervals Acquired"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22736,11 +22374,12 @@ dicom:dicom_00181083 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181084 dicom:dicom_00181084 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Intervals Rejected"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22752,7 +22391,6 @@ dicom:dicom_00181084 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018003A dicom:dicom_0018003A rdf:type owl:DatatypeProperty ; @@ -22765,13 +22403,11 @@ dicom:dicom_0018003A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,003A)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180029 dicom:dicom_00180029 rdf:type owl:DatatypeProperty ; @@ -22784,13 +22420,11 @@ dicom:dicom_00180029 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0029)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180028 dicom:dicom_00180028 rdf:type owl:DatatypeProperty ; @@ -22803,13 +22437,11 @@ dicom:dicom_00180028 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0028)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180026 dicom:dicom_00180026 rdf:type owl:DatatypeProperty ; @@ -22822,13 +22454,11 @@ dicom:dicom_00180026 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0026)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180034 dicom:dicom_00180034 rdf:type owl:DatatypeProperty ; @@ -22841,13 +22471,11 @@ dicom:dicom_00180034 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0034)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180035 dicom:dicom_00180035 rdf:type owl:DatatypeProperty ; @@ -22860,7 +22488,6 @@ dicom:dicom_00180035 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0035)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . @@ -22878,13 +22505,11 @@ dicom:dicom_00180027 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0027)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180036 dicom:dicom_00180036 rdf:type owl:DatatypeProperty ; @@ -22897,13 +22522,11 @@ dicom:dicom_00180036 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0036)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180038 dicom:dicom_00180038 rdf:type owl:DatatypeProperty ; @@ -22916,13 +22539,11 @@ dicom:dicom_00180038 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0038)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0022000B dicom:dicom_0022000B rdf:type owl:DatatypeProperty ; @@ -22935,17 +22556,17 @@ dicom:dicom_0022000B rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,000B)"^^xsd:string ; - dicom:VR "FL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221310 dicom:dicom_00221310 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Intraocular Lens Calculations Left Eye Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22957,11 +22578,12 @@ dicom:dicom_00221310 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221300 dicom:dicom_00221300 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Intraocular Lens Calculations Right Eye Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22973,11 +22595,12 @@ dicom:dicom_00221300 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00520027 dicom:dicom_00520027 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Intravascular Frame Content Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -22989,11 +22612,12 @@ dicom:dicom_00520027 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00520028 dicom:dicom_00520028 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Intravascular Longitudinal Distance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23005,11 +22629,12 @@ dicom:dicom_00520028 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00520029 dicom:dicom_00520029 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Intravascular OCT Frame Content Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23021,11 +22646,12 @@ dicom:dicom_00520029 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00520025 dicom:dicom_00520025 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Intravascular OCT Frame Type Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23037,7 +22663,6 @@ dicom:dicom_00520025 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189009 dicom:dicom_00189009 rdf:type owl:DatatypeProperty ; @@ -23050,13 +22675,11 @@ dicom:dicom_00189009 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9009)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180082 dicom:dicom_00180082 rdf:type owl:DatatypeProperty ; @@ -23069,13 +22692,11 @@ dicom:dicom_00180082 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0082)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189079 dicom:dicom_00189079 rdf:type owl:DatatypeProperty ; @@ -23088,17 +22709,17 @@ dicom:dicom_00189079 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9079)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189477 dicom:dicom_00189477 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Irradiation Event Identification Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23110,11 +22731,12 @@ dicom:dicom_00189477 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00083010 dicom:dicom_00083010 rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Irradiation Event UID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23138,17 +22760,17 @@ dicom:dicom_300A012C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,012C)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189462 dicom:dicom_00189462 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Isocenter Reference System Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23160,11 +22782,12 @@ dicom:dicom_00189462 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080051 dicom:dicom_00080051 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Issuer of Accession Number Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23176,11 +22799,12 @@ dicom:dicom_00080051 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00380014 dicom:dicom_00380014 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Issuer of Admission ID Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23192,11 +22816,12 @@ dicom:dicom_00380014 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100024 dicom:dicom_00100024 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Issuer of Patient ID Qualifiers Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23208,7 +22833,6 @@ dicom:dicom_00100024 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100021 dicom:dicom_00100021 rdf:type owl:DatatypeProperty ; @@ -23221,17 +22845,17 @@ dicom:dicom_00100021 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0010,0021)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00380064 dicom:dicom_00380064 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Issuer of Service Episode ID Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23243,11 +22867,12 @@ dicom:dicom_00380064 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400513 dicom:dicom_00400513 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Issuer of the Container Identifier Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23259,11 +22884,12 @@ dicom:dicom_00400513 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400562 dicom:dicom_00400562 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Issuer of the Specimen Identifier Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23275,11 +22901,12 @@ dicom:dicom_00400562 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700250 dicom:dicom_00700250 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Italic"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23291,11 +22918,12 @@ dicom:dicom_00700250 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189769 dicom:dicom_00189769 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Iterative Reconstruction Method"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23307,7 +22935,6 @@ dicom:dicom_00189769 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180060 dicom:dicom_00180060 rdf:type owl:DatatypeProperty ; @@ -23320,18 +22947,17 @@ dicom:dicom_00180060 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0060)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00460236 dicom:dicom_00460236 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Keratoconus Prediction Index"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23343,11 +22969,12 @@ dicom:dicom_00460236 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221033 dicom:dicom_00221033 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Keratometer Index"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23359,11 +22986,12 @@ dicom:dicom_00221033 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460077 dicom:dicom_00460077 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Keratometric Axis"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23375,12 +23003,12 @@ dicom:dicom_00460077 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00460076 dicom:dicom_00460076 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Keratometric Power"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23392,11 +23020,12 @@ dicom:dicom_00460076 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460071 dicom:dicom_00460071 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Keratometry Left Eye Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23408,11 +23037,12 @@ dicom:dicom_00460071 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221096 dicom:dicom_00221096 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Keratometry Measurement Type Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23424,11 +23054,12 @@ dicom:dicom_00221096 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460070 dicom:dicom_00460070 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Keratometry Right Eye Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23440,7 +23071,6 @@ dicom:dicom_00460070 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00283006 dicom:dicom_00283006 rdf:type owl:DatatypeProperty ; @@ -23453,13 +23083,11 @@ dicom:dicom_00283006 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,3006)"^^xsd:string ; - dicom:VR "US or SS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00283002 dicom:dicom_00283002 rdf:type owl:DatatypeProperty ; @@ -23472,13 +23100,11 @@ dicom:dicom_00283002 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,3002)"^^xsd:string ; - dicom:VR "US or SS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00283003 dicom:dicom_00283003 rdf:type owl:DatatypeProperty ; @@ -23491,18 +23117,17 @@ dicom:dicom_00283003 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,3003)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00289507 dicom:dicom_00289507 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "LUT Frame Range"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23514,11 +23139,12 @@ dicom:dicom_00289507 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00289474 dicom:dicom_00289474 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "LUT Function"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23530,6 +23156,7 @@ dicom:dicom_00289474 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . +### http://purl.org/nidash/dicom#dicom_00409210 dicom:dicom_00409210 rdf:type owl:DatatypeProperty ; @@ -23541,13 +23168,11 @@ dicom:dicom_00409210 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,9210)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_22000002 dicom:dicom_22000002 rdf:type owl:DatatypeProperty ; @@ -23560,17 +23185,17 @@ dicom:dicom_22000002 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(2200,0002)"^^xsd:string ; - dicom:VR "UT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080006 dicom:dicom_00080006 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Language Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23582,7 +23207,6 @@ dicom:dicom_00080006 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280107 dicom:dicom_00280107 rdf:type owl:DatatypeProperty ; @@ -23595,13 +23219,11 @@ dicom:dicom_00280107 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,0107)"^^xsd:string ; - dicom:VR "US or SS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280109 dicom:dicom_00280109 rdf:type owl:DatatypeProperty ; @@ -23614,13 +23236,11 @@ dicom:dicom_00280109 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,0109)"^^xsd:string ; - dicom:VR "US or SS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_001021D0 dicom:dicom_001021D0 rdf:type owl:DatatypeProperty ; @@ -23633,13 +23253,11 @@ dicom:dicom_001021D0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0010,21D0)"^^xsd:string ; - dicom:VR "DA"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00200060 dicom:dicom_00200060 rdf:type owl:DatatypeProperty ; @@ -23652,13 +23270,11 @@ dicom:dicom_00200060 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,0060)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00BE dicom:dicom_300A00BE rdf:type owl:DatatypeProperty ; @@ -23671,13 +23287,11 @@ dicom:dicom_300A00BE rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00BE)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A011C dicom:dicom_300A011C rdf:type owl:DatatypeProperty ; @@ -23690,14 +23304,11 @@ dicom:dicom_300A011C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,011C)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00220021 dicom:dicom_00220021 rdf:type owl:DatatypeProperty ; @@ -23710,17 +23321,17 @@ dicom:dicom_00220021 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0021)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460015 dicom:dicom_00460015 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Left Lens Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23732,11 +23343,12 @@ dicom:dicom_00460015 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221092 dicom:dicom_00221092 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Lens Constant Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23748,11 +23360,12 @@ dicom:dicom_00221092 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460012 dicom:dicom_00460012 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Lens Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23764,11 +23377,12 @@ dicom:dicom_00460012 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460038 dicom:dicom_00460038 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Lens Segment Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23780,11 +23394,12 @@ dicom:dicom_00460038 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221024 dicom:dicom_00221024 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Lens Status Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23796,11 +23411,12 @@ dicom:dicom_00221024 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221065 dicom:dicom_00221065 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Lens Status Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23812,11 +23428,12 @@ dicom:dicom_00221065 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221127 dicom:dicom_00221127 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Lens Thickness Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23828,11 +23445,12 @@ dicom:dicom_00221127 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221130 dicom:dicom_00221130 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Lens Thickness"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23844,7 +23462,6 @@ dicom:dicom_00221130 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220019 dicom:dicom_00220019 rdf:type owl:DatatypeProperty ; @@ -23857,13 +23474,11 @@ dicom:dicom_00220019 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0019)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00183105 dicom:dicom_00183105 rdf:type owl:DatatypeProperty ; @@ -23876,13 +23491,11 @@ dicom:dicom_00183105 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,3105)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220002 dicom:dicom_00220002 rdf:type owl:DatatypeProperty ; @@ -23895,13 +23508,11 @@ dicom:dicom_00220002 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0002)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220001 dicom:dicom_00220001 rdf:type owl:DatatypeProperty ; @@ -23914,13 +23525,11 @@ dicom:dicom_00220001 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0001)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220001 dicom:dicom_00220001 rdf:type owl:DatatypeProperty ; @@ -23933,13 +23542,11 @@ dicom:dicom_00220001 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0001)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220017 dicom:dicom_00220017 rdf:type owl:DatatypeProperty ; @@ -23952,13 +23559,11 @@ dicom:dicom_00220017 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0017)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220017 dicom:dicom_00220017 rdf:type owl:DatatypeProperty ; @@ -23971,17 +23576,17 @@ dicom:dicom_00220017 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0017)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700254 dicom:dicom_00700254 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Line Dashing Style"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -23993,11 +23598,12 @@ dicom:dicom_00700254 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700255 dicom:dicom_00700255 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Line Pattern"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24009,11 +23615,12 @@ dicom:dicom_00700255 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660028 dicom:dicom_00660028 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Line Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24025,11 +23632,12 @@ dicom:dicom_00660028 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700232 dicom:dicom_00700232 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Line Style Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24041,11 +23649,12 @@ dicom:dicom_00700232 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700253 dicom:dicom_00700253 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Line Thickness"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24057,11 +23666,12 @@ dicom:dicom_00700253 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00420014 dicom:dicom_00420014 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "List of MIME Types"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24073,11 +23683,12 @@ dicom:dicom_00420014 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240072 dicom:dicom_00240072 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Local Deviation Probability Normals Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24089,11 +23700,12 @@ dicom:dicom_00240072 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400031 dicom:dicom_00400031 rdf:type owl:DatatypeProperty ; + dicom:VR "UT"^^xsd:string ; + rdfs:label "Local Namespace Entity ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24105,11 +23717,12 @@ dicom:dicom_00400031 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240068 dicom:dicom_00240068 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Localized Deviation From Normal"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24121,11 +23734,12 @@ dicom:dicom_00240068 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240085 dicom:dicom_00240085 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Localized Deviation Probability Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24137,11 +23751,12 @@ dicom:dicom_00240085 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240073 dicom:dicom_00240073 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Localized Deviation Probability"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24153,11 +23768,12 @@ dicom:dicom_00240073 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00182043 dicom:dicom_00182043 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Localizing Cursor Position"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24169,11 +23785,12 @@ dicom:dicom_00182043 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080119 dicom:dicom_00080119 rdf:type owl:DatatypeProperty ; + dicom:VR "UC"^^xsd:string ; + rdfs:label "Long Code Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24185,11 +23802,12 @@ dicom:dicom_00080119 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660042 dicom:dicom_00660042 rdf:type owl:DatatypeProperty ; + dicom:VR "OL"^^xsd:string ; + rdfs:label "Long Edge Point Index List"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24201,11 +23819,12 @@ dicom:dicom_00660042 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660040 dicom:dicom_00660040 rdf:type owl:DatatypeProperty ; + dicom:VR "OL"^^xsd:string ; + rdfs:label "Long Primitive Point Index List"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24217,11 +23836,12 @@ dicom:dicom_00660040 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660041 dicom:dicom_00660041 rdf:type owl:DatatypeProperty ; + dicom:VR "OL"^^xsd:string ; + rdfs:label "Long Triangle Point Index List"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24233,11 +23853,12 @@ dicom:dicom_00660041 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660043 dicom:dicom_00660043 rdf:type owl:DatatypeProperty ; + dicom:VR "OL"^^xsd:string ; + rdfs:label "Long Vertex Point Index List"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24249,11 +23870,12 @@ dicom:dicom_00660043 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280303 dicom:dicom_00280303 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Longitudinal Temporal Information Modified"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24265,8 +23887,6 @@ dicom:dicom_00280303 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00282114 dicom:dicom_00282114 rdf:type owl:DatatypeProperty ; @@ -24279,13 +23899,11 @@ dicom:dicom_00282114 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,2114)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00282112 dicom:dicom_00282112 rdf:type owl:DatatypeProperty ; @@ -24298,14 +23916,11 @@ dicom:dicom_00282112 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,2112)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00282110 dicom:dicom_00282110 rdf:type owl:DatatypeProperty ; @@ -24318,17 +23933,17 @@ dicom:dicom_00282110 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,2110)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181081 dicom:dicom_00181081 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Low R-R Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24340,11 +23955,12 @@ dicom:dicom_00181081 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181081 dicom:dicom_00181081 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Low R-R Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24356,12 +23972,12 @@ dicom:dicom_00181081 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_04000015 dicom:dicom_04000015 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "MAC Algorithm"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24373,11 +23989,12 @@ dicom:dicom_04000015 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_04000010 dicom:dicom_04000010 rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "MAC Calculation Transfer Syntax UID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24389,12 +24006,12 @@ dicom:dicom_04000010 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_04000005 dicom:dicom_04000005 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "MAC ID Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24406,11 +24023,12 @@ dicom:dicom_04000005 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_4FFE0001 dicom:dicom_4FFE0001 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "MAC Parameters Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24422,11 +24040,12 @@ dicom:dicom_4FFE0001 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_04000404 dicom:dicom_04000404 rdf:type owl:DatatypeProperty ; + dicom:VR "OB"^^xsd:string ; + rdfs:label "MAC"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24438,11 +24057,12 @@ dicom:dicom_04000404 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00420012 dicom:dicom_00420012 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "MIME Type of Encapsulated Document"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24454,11 +24074,12 @@ dicom:dicom_00420012 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701502 dicom:dicom_00701502 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "MPR Thickness Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24470,11 +24091,12 @@ dicom:dicom_00701502 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701505 dicom:dicom_00701505 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "MPR Top Left Hand Corner"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24486,11 +24108,12 @@ dicom:dicom_00701505 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701511 dicom:dicom_00701511 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "MPR View Height Direction"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24502,11 +24125,12 @@ dicom:dicom_00701511 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701512 dicom:dicom_00701512 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "MPR View Height"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24518,11 +24142,12 @@ dicom:dicom_00701512 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701507 dicom:dicom_00701507 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "MPR View Width Direction"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24534,11 +24159,12 @@ dicom:dicom_00701507 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701508 dicom:dicom_00701508 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "MPR View Width"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24550,7 +24176,6 @@ dicom:dicom_00701508 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189058 dicom:dicom_00189058 rdf:type owl:DatatypeProperty ; @@ -24563,13 +24188,11 @@ dicom:dicom_00189058 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9058)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189231 dicom:dicom_00189231 rdf:type owl:DatatypeProperty ; @@ -24582,13 +24205,11 @@ dicom:dicom_00189231 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9231)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189232 dicom:dicom_00189232 rdf:type owl:DatatypeProperty ; @@ -24601,13 +24222,11 @@ dicom:dicom_00189232 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9232)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180023 dicom:dicom_00180023 rdf:type owl:DatatypeProperty ; @@ -24620,17 +24239,17 @@ dicom:dicom_00180023 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0023)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189251 dicom:dicom_00189251 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "MR Arterial Spin Labeling Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -24642,7 +24261,6 @@ dicom:dicom_00189251 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189119 dicom:dicom_00189119 rdf:type owl:DatatypeProperty ; @@ -24655,13 +24273,11 @@ dicom:dicom_00189119 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9119)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189117 dicom:dicom_00189117 rdf:type owl:DatatypeProperty ; @@ -24674,13 +24290,11 @@ dicom:dicom_00189117 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9117)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189114 dicom:dicom_00189114 rdf:type owl:DatatypeProperty ; @@ -24693,13 +24307,11 @@ dicom:dicom_00189114 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9114)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189125 dicom:dicom_00189125 rdf:type owl:DatatypeProperty ; @@ -24712,13 +24324,11 @@ dicom:dicom_00189125 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9125)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189226 dicom:dicom_00189226 rdf:type owl:DatatypeProperty ; @@ -24731,13 +24341,11 @@ dicom:dicom_00189226 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9226)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189006 dicom:dicom_00189006 rdf:type owl:DatatypeProperty ; @@ -24750,13 +24358,11 @@ dicom:dicom_00189006 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9006)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189152 dicom:dicom_00189152 rdf:type owl:DatatypeProperty ; @@ -24769,13 +24375,11 @@ dicom:dicom_00189152 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9152)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189115 dicom:dicom_00189115 rdf:type owl:DatatypeProperty ; @@ -24788,13 +24392,11 @@ dicom:dicom_00189115 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9115)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189042 dicom:dicom_00189042 rdf:type owl:DatatypeProperty ; @@ -24807,13 +24409,11 @@ dicom:dicom_00189042 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9042)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189107 dicom:dicom_00189107 rdf:type owl:DatatypeProperty ; @@ -24826,13 +24426,11 @@ dicom:dicom_00189107 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9107)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189200 dicom:dicom_00189200 rdf:type owl:DatatypeProperty ; @@ -24845,13 +24443,11 @@ dicom:dicom_00189200 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9200)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189103 dicom:dicom_00189103 rdf:type owl:DatatypeProperty ; @@ -24864,13 +24460,11 @@ dicom:dicom_00189103 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9103)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189227 dicom:dicom_00189227 rdf:type owl:DatatypeProperty ; @@ -24883,13 +24477,11 @@ dicom:dicom_00189227 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9227)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189112 dicom:dicom_00189112 rdf:type owl:DatatypeProperty ; @@ -24902,13 +24494,11 @@ dicom:dicom_00189112 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9112)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189049 dicom:dicom_00189049 rdf:type owl:DatatypeProperty ; @@ -24921,13 +24511,11 @@ dicom:dicom_00189049 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9049)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189197 dicom:dicom_00189197 rdf:type owl:DatatypeProperty ; @@ -24940,13 +24528,11 @@ dicom:dicom_00189197 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9197)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180087 dicom:dicom_00180087 rdf:type owl:DatatypeProperty ; @@ -24959,13 +24545,11 @@ dicom:dicom_00180087 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0087)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189020 dicom:dicom_00189020 rdf:type owl:DatatypeProperty ; @@ -24978,17 +24562,17 @@ dicom:dicom_00189020 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9020)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700287 dicom:dicom_00700287 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Major Ticks Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25000,11 +24584,12 @@ dicom:dicom_00700287 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00760038 dicom:dicom_00760038 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Mandatory Component Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25016,11 +24601,12 @@ dicom:dicom_00760038 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660010 dicom:dicom_00660010 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Manifold"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25032,8 +24618,6 @@ dicom:dicom_00660010 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00080070 dicom:dicom_00080070 rdf:type owl:DatatypeProperty ; @@ -25046,15 +24630,11 @@ dicom:dicom_00080070 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0070)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - - - ### http://purl.org/nidash/dicom#dicom_00081090 dicom:dicom_00081090 rdf:type owl:DatatypeProperty ; @@ -25067,17 +24647,17 @@ dicom:dicom_00081090 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1090)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080222 dicom:dicom_00080222 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Manufacturer's Related Model Group"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25089,11 +24669,12 @@ dicom:dicom_00080222 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221452 dicom:dicom_00221452 rdf:type owl:DatatypeProperty ; + dicom:VR "US or SS"^^xsd:string ; + rdfs:label "Mapped Pixel Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25105,11 +24686,12 @@ dicom:dicom_00221452 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080124 dicom:dicom_00080124 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Mapping Resource Identification Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25121,11 +24703,12 @@ dicom:dicom_00080124 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080122 dicom:dicom_00080122 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Mapping Resource Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25137,11 +24720,12 @@ dicom:dicom_00080122 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080118 dicom:dicom_00080118 rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Mapping Resource UID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25153,7 +24737,6 @@ dicom:dicom_00080118 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080105 dicom:dicom_00080105 rdf:type owl:DatatypeProperty ; @@ -25166,14 +24749,11 @@ dicom:dicom_00080105 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0105)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00286110 dicom:dicom_00286110 rdf:type owl:DatatypeProperty ; @@ -25186,13 +24766,11 @@ dicom:dicom_00286110 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,6110)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00286190 dicom:dicom_00286190 rdf:type owl:DatatypeProperty ; @@ -25205,13 +24783,11 @@ dicom:dicom_00286190 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,6190)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00286101 dicom:dicom_00286101 rdf:type owl:DatatypeProperty ; @@ -25224,17 +24800,17 @@ dicom:dicom_00286101 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,6101)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00289454 dicom:dicom_00289454 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Mask Selection Mode"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25246,8 +24822,6 @@ dicom:dicom_00289454 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00286114 dicom:dicom_00286114 rdf:type owl:DatatypeProperty ; @@ -25260,13 +24834,11 @@ dicom:dicom_00286114 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,6114)"^^xsd:string ; - dicom:VR "FL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00286100 dicom:dicom_00286100 rdf:type owl:DatatypeProperty ; @@ -25279,18 +24851,17 @@ dicom:dicom_00286100 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,6100)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00289478 dicom:dicom_00289478 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Mask Visibility Percentage"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25302,7 +24873,6 @@ dicom:dicom_00289478 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00E1 dicom:dicom_300A00E1 rdf:type owl:DatatypeProperty ; @@ -25315,18 +24885,17 @@ dicom:dicom_300A00E1 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00E1)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_006863A0 dicom:dicom_006863A0 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Materials Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25338,11 +24907,12 @@ dicom:dicom_006863A0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686400 dicom:dicom_00686400 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Mating Feature Degree of Freedom Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25354,11 +24924,12 @@ dicom:dicom_00686400 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006863F0 dicom:dicom_006863F0 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Mating Feature ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25370,11 +24941,12 @@ dicom:dicom_006863F0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006863E0 dicom:dicom_006863E0 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Mating Feature Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25386,11 +24958,12 @@ dicom:dicom_006863E0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006863C0 dicom:dicom_006863C0 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Mating Feature Set ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25402,11 +24975,12 @@ dicom:dicom_006863C0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006863D0 dicom:dicom_006863D0 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Mating Feature Set Label"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25418,11 +24992,12 @@ dicom:dicom_006863D0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006863B0 dicom:dicom_006863B0 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Mating Feature Sets Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25434,7 +25009,6 @@ dicom:dicom_006863B0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700309 dicom:dicom_00700309 rdf:type owl:DatatypeProperty ; @@ -25447,13 +25021,11 @@ dicom:dicom_00700309 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0309)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0070030A dicom:dicom_0070030A rdf:type owl:DatatypeProperty ; @@ -25466,17 +25038,17 @@ dicom:dicom_0070030A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,030A)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220049 dicom:dicom_00220049 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Maximum Across-scan Distortion"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25488,11 +25060,12 @@ dicom:dicom_00220049 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220038 dicom:dicom_00220038 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Maximum Along-scan Distortion"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25504,11 +25077,12 @@ dicom:dicom_00220038 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460213 dicom:dicom_00460213 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Maximum Corneal Curvature Location"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25520,11 +25094,12 @@ dicom:dicom_00460213 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460211 dicom:dicom_00460211 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Maximum Corneal Curvature Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25536,11 +25111,12 @@ dicom:dicom_00460211 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460212 dicom:dicom_00460212 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Maximum Corneal Curvature"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25552,11 +25128,12 @@ dicom:dicom_00460212 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220036 dicom:dicom_00220036 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Maximum Depth Distortion"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25568,11 +25145,12 @@ dicom:dicom_00220036 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0062000E dicom:dicom_0062000E rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Maximum Fractional Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25584,11 +25162,12 @@ dicom:dicom_0062000E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660019 dicom:dicom_00660019 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Maximum Point Distance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25600,11 +25179,12 @@ dicom:dicom_00660019 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240018 dicom:dicom_00240018 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Maximum Stimulus Luminance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25616,11 +25196,12 @@ dicom:dicom_00240018 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660018 dicom:dicom_00660018 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Mean Point Distance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25632,11 +25213,12 @@ dicom:dicom_00660018 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00101023 dicom:dicom_00101023 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Measured AP Dimension"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25648,7 +25230,6 @@ dicom:dicom_00101023 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080012 dicom:dicom_30080012 rdf:type owl:DatatypeProperty ; @@ -25661,13 +25242,11 @@ dicom:dicom_30080012 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0012)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080064 dicom:dicom_30080064 rdf:type owl:DatatypeProperty ; @@ -25680,13 +25259,11 @@ dicom:dicom_30080064 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0064)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080010 dicom:dicom_30080010 rdf:type owl:DatatypeProperty ; @@ -25699,13 +25276,11 @@ dicom:dicom_30080010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0010)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080014 dicom:dicom_30080014 rdf:type owl:DatatypeProperty ; @@ -25718,13 +25293,11 @@ dicom:dicom_30080014 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0014)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080016 dicom:dicom_30080016 rdf:type owl:DatatypeProperty ; @@ -25737,17 +25310,17 @@ dicom:dicom_30080016 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0016)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00101024 dicom:dicom_00101024 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Measured Lateral Dimension"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25759,7 +25332,6 @@ dicom:dicom_00101024 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A300 dicom:dicom_0040A300 rdf:type owl:DatatypeProperty ; @@ -25772,17 +25344,17 @@ dicom:dicom_0040A300 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A300)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240113 dicom:dicom_00240113 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Measurement Laterality"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25794,12 +25366,12 @@ dicom:dicom_00240113 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_004008EA dicom:dicom_004008EA rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Measurement Units Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25811,11 +25383,12 @@ dicom:dicom_004008EA rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_004008EA dicom:dicom_004008EA rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Measurement Units Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25827,12 +25400,12 @@ dicom:dicom_004008EA rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00660132 dicom:dicom_00660132 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Measurement Values Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25844,11 +25417,12 @@ dicom:dicom_00660132 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660121 dicom:dicom_00660121 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Measurements Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25860,7 +25434,6 @@ dicom:dicom_00660121 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00185022 dicom:dicom_00185022 rdf:type owl:DatatypeProperty ; @@ -25869,17 +25442,15 @@ dicom:dicom_00185022 rdf:type owl:DatatypeProperty ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "See for Description."^^xsd:string ; + obo:IAO_0000115 "The thermal and/or mechanical indices, when made available by a manufacturer, are defined according to the Standard for Real-Time Display of Thermal and Mechanical Acoustic Output Indices on Diagnostic Ultrasound Equipment, a voluntary performance standard jointly published by AIUM and NEMA."^^xsd:string ; dicom:dicom_xxxx0065 "(0018,5022)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00102000 dicom:dicom_00102000 rdf:type owl:DatatypeProperty ; @@ -25892,13 +25463,11 @@ dicom:dicom_00102000 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0010,2000)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189083 dicom:dicom_00189083 rdf:type owl:DatatypeProperty ; @@ -25911,13 +25480,11 @@ dicom:dicom_00189083 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9083)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189080 dicom:dicom_00189080 rdf:type owl:DatatypeProperty ; @@ -25930,13 +25497,11 @@ dicom:dicom_00189080 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9080)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30020032 dicom:dicom_30020032 rdf:type owl:DatatypeProperty ; @@ -25949,13 +25514,11 @@ dicom:dicom_30020032 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3002,0032)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189106 dicom:dicom_00189106 rdf:type owl:DatatypeProperty ; @@ -25968,17 +25531,17 @@ dicom:dicom_00189106 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9106)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460215 dicom:dicom_00460215 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Minimum Keratometric Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -25990,11 +25553,12 @@ dicom:dicom_00460215 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240105 dicom:dicom_00240105 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Minimum Sensitivity Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26006,7 +25570,6 @@ dicom:dicom_00240105 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00283000 dicom:dicom_00283000 rdf:type owl:DatatypeProperty ; @@ -26019,13 +25582,11 @@ dicom:dicom_00283000 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,3000)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00283004 dicom:dicom_00283004 rdf:type owl:DatatypeProperty ; @@ -26038,14 +25599,11 @@ dicom:dicom_00283004 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,3004)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00080060 dicom:dicom_00080060 rdf:type owl:DatatypeProperty ; @@ -26058,18 +25616,17 @@ dicom:dicom_00080060 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0060)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00520016 dicom:dicom_00520016 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Mode of Percutaneous Access Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26081,11 +25638,12 @@ dicom:dicom_00520016 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189912 dicom:dicom_00189912 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Model Specification Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26097,11 +25655,12 @@ dicom:dicom_00189912 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00820038 dicom:dicom_00820038 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Modifiable Constraint Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26113,7 +25672,6 @@ dicom:dicom_00820038 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_04000550 dicom:dicom_04000550 rdf:type owl:DatatypeProperty ; @@ -26126,13 +25684,11 @@ dicom:dicom_04000550 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0400,0550)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A195 dicom:dicom_0040A195 rdf:type owl:DatatypeProperty ; @@ -26145,17 +25701,17 @@ dicom:dicom_0040A195 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A195)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_04000563 dicom:dicom_04000563 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Modifying System"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26167,7 +25723,6 @@ dicom:dicom_04000563 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080056 dicom:dicom_30080056 rdf:type owl:DatatypeProperty ; @@ -26180,17 +25735,17 @@ dicom:dicom_30080056 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0056)"^^xsd:string ; - dicom:VR "DA"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0410 dicom:dicom_300A0410 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Motion Synchronization Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26202,7 +25757,6 @@ dicom:dicom_300A0410 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189046 dicom:dicom_00189046 rdf:type owl:DatatypeProperty ; @@ -26215,13 +25769,11 @@ dicom:dicom_00189046 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9046)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189045 dicom:dicom_00189045 rdf:type owl:DatatypeProperty ; @@ -26234,13 +25786,11 @@ dicom:dicom_00189045 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9045)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189047 dicom:dicom_00189047 rdf:type owl:DatatypeProperty ; @@ -26253,13 +25803,11 @@ dicom:dicom_00189047 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9047)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189048 dicom:dicom_00189048 rdf:type owl:DatatypeProperty ; @@ -26272,17 +25820,17 @@ dicom:dicom_00189048 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9048)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701501 dicom:dicom_00701501 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Multi-Planar Reconstruction Style"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26294,11 +25842,12 @@ dicom:dicom_00701501 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00289505 dicom:dicom_00289505 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Multi-frame Presentation Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26310,11 +25859,12 @@ dicom:dicom_00289505 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081167 dicom:dicom_00081167 rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Multi-frame Source SOP Instance UID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26326,7 +25876,6 @@ dicom:dicom_00081167 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189012 dicom:dicom_00189012 rdf:type owl:DatatypeProperty ; @@ -26339,13 +25888,11 @@ dicom:dicom_00189012 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9012)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189011 dicom:dicom_00189011 rdf:type owl:DatatypeProperty ; @@ -26358,13 +25905,11 @@ dicom:dicom_00189011 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9011)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0020 dicom:dicom_003A0020 rdf:type owl:DatatypeProperty ; @@ -26377,13 +25922,11 @@ dicom:dicom_003A0020 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,0020)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181068 dicom:dicom_00181068 rdf:type owl:DatatypeProperty ; @@ -26396,17 +25939,17 @@ dicom:dicom_00181068 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1068)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0300 dicom:dicom_003A0300 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Multiplexed Audio Channels Description Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26418,7 +25961,6 @@ dicom:dicom_003A0300 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0022001C dicom:dicom_0022001C rdf:type owl:DatatypeProperty ; @@ -26431,17 +25973,17 @@ dicom:dicom_0022001C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,001C)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220042 dicom:dicom_00220042 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Mydriatic Agent Concentration Units Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26453,11 +25995,12 @@ dicom:dicom_00220042 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0022004E dicom:dicom_0022004E rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Mydriatic Agent Concentration"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26469,11 +26012,12 @@ dicom:dicom_0022004E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220058 dicom:dicom_00220058 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Mydriatic Agent Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26485,7 +26029,6 @@ dicom:dicom_00220058 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181803 dicom:dicom_00181803 rdf:type owl:DatatypeProperty ; @@ -26498,13 +26041,11 @@ dicom:dicom_00181803 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1803)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081060 dicom:dicom_00081060 rdf:type owl:DatatypeProperty ; @@ -26517,17 +26058,17 @@ dicom:dicom_00081060 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1060)"^^xsd:string ; - dicom:VR "PN"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720216 dicom:dicom_00720216 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Navigation Display Set"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26539,11 +26080,12 @@ dicom:dicom_00720216 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720214 dicom:dicom_00720214 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Navigation Indicator Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26555,11 +26097,12 @@ dicom:dicom_00720214 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460062 dicom:dicom_00460062 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Near Pupillary Distance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26571,12 +26114,12 @@ dicom:dicom_00460062 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00240048 dicom:dicom_00240048 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Negative Catch Trials Quantity"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26588,7 +26131,6 @@ dicom:dicom_00240048 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0015 dicom:dicom_300A0015 rdf:type owl:DatatypeProperty ; @@ -26601,13 +26143,11 @@ dicom:dicom_300A0015 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0015)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0114 dicom:dicom_300A0114 rdf:type owl:DatatypeProperty ; @@ -26620,17 +26160,17 @@ dicom:dicom_300A0114 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0114)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209153 dicom:dicom_00209153 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Nominal Cardiac Trigger Delay Time"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26642,11 +26182,12 @@ dicom:dicom_00209153 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209154 dicom:dicom_00209154 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Nominal Cardiac Trigger Time Prior to R-peak"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26658,8 +26199,6 @@ dicom:dicom_00209154 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00181062 dicom:dicom_00181062 rdf:type owl:DatatypeProperty ; @@ -26672,18 +26211,17 @@ dicom:dicom_00181062 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1062)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00209241 dicom:dicom_00209241 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Nominal Percentage of Cardiac Phase"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26695,11 +26233,12 @@ dicom:dicom_00209241 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209245 dicom:dicom_00209245 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Nominal Percentage of Respiratory Phase"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26711,7 +26250,6 @@ dicom:dicom_00209245 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A001A dicom:dicom_300A001A rdf:type owl:DatatypeProperty ; @@ -26724,17 +26262,17 @@ dicom:dicom_300A001A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,001A)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209255 dicom:dicom_00209255 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Nominal Respiratory Trigger Delay Time"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26746,7 +26284,6 @@ dicom:dicom_00209255 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00182010 dicom:dicom_00182010 rdf:type owl:DatatypeProperty ; @@ -26759,17 +26296,17 @@ dicom:dicom_00182010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,2010)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720102 dicom:dicom_00720102 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Nominal Screen Definition Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26781,12 +26318,12 @@ dicom:dicom_00720102 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00189766 dicom:dicom_00189766 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Non-uniform Radial Sampling Corrected"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26798,11 +26335,12 @@ dicom:dicom_00189766 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080304 dicom:dicom_00080304 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Nonidentifying Private Elements"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26814,7 +26352,6 @@ dicom:dicom_00080304 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30040008 dicom:dicom_30040008 rdf:type owl:DatatypeProperty ; @@ -26827,13 +26364,11 @@ dicom:dicom_30040008 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3004,0008)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0223 dicom:dicom_003A0223 rdf:type owl:DatatypeProperty ; @@ -26846,13 +26381,11 @@ dicom:dicom_003A0223 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,0223)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0222 dicom:dicom_003A0222 rdf:type owl:DatatypeProperty ; @@ -26865,17 +26398,17 @@ dicom:dicom_003A0222 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,0222)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686265 dicom:dicom_00686265 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Notification From Manufacturer Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26887,11 +26420,12 @@ dicom:dicom_00686265 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660015 dicom:dicom_00660015 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Number Of Surface Points"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26903,11 +26437,12 @@ dicom:dicom_00660015 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00820006 dicom:dicom_00820006 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Number of Assessment Observations"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -26919,8 +26454,6 @@ dicom:dicom_00820006 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00180083 dicom:dicom_00180083 rdf:type owl:DatatypeProperty ; @@ -26933,13 +26466,11 @@ dicom:dicom_00180083 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0083)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0080 dicom:dicom_300A0080 rdf:type owl:DatatypeProperty ; @@ -26952,13 +26483,11 @@ dicom:dicom_300A0080 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0080)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00F0 dicom:dicom_300A00F0 rdf:type owl:DatatypeProperty ; @@ -26971,14 +26500,11 @@ dicom:dicom_300A00F0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00F0)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_300A00ED dicom:dicom_300A00ED rdf:type owl:DatatypeProperty ; @@ -26991,13 +26517,11 @@ dicom:dicom_300A00ED rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00ED)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00A0 dicom:dicom_300A00A0 rdf:type owl:DatatypeProperty ; @@ -27010,13 +26534,11 @@ dicom:dicom_300A00A0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00A0)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00E0 dicom:dicom_300A00E0 rdf:type owl:DatatypeProperty ; @@ -27029,13 +26551,11 @@ dicom:dicom_300A00E0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00E0)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060046 dicom:dicom_30060046 rdf:type owl:DatatypeProperty ; @@ -27048,13 +26568,11 @@ dicom:dicom_30060046 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0046)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0110 dicom:dicom_300A0110 rdf:type owl:DatatypeProperty ; @@ -27067,14 +26585,11 @@ dicom:dicom_300A0110 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0110)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00540021 dicom:dicom_00540021 rdf:type owl:DatatypeProperty ; @@ -27087,13 +26602,11 @@ dicom:dicom_00540021 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0021)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540011 dicom:dicom_00540011 rdf:type owl:DatatypeProperty ; @@ -27106,13 +26619,11 @@ dicom:dicom_00540011 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0011)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00082129 dicom:dicom_00082129 rdf:type owl:DatatypeProperty ; @@ -27125,17 +26636,17 @@ dicom:dicom_00082129 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,2129)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480013 dicom:dicom_00480013 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Number of Focal Planes"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -27147,7 +26658,6 @@ dicom:dicom_00480013 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0079 dicom:dicom_300A0079 rdf:type owl:DatatypeProperty ; @@ -27160,13 +26670,11 @@ dicom:dicom_300A0079 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0079)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_3008005A dicom:dicom_3008005A rdf:type owl:DatatypeProperty ; @@ -27179,13 +26687,11 @@ dicom:dicom_3008005A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,005A)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0078 dicom:dicom_300A0078 rdf:type owl:DatatypeProperty ; @@ -27198,13 +26704,11 @@ dicom:dicom_300A0078 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0078)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_60xx0015 dicom:dicom_60xx0015 rdf:type owl:DatatypeProperty ; @@ -27217,13 +26721,11 @@ dicom:dicom_60xx0015 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(60xx,0015)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540033 dicom:dicom_00540033 rdf:type owl:DatatypeProperty ; @@ -27236,13 +26738,11 @@ dicom:dicom_00540033 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0033)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540053 dicom:dicom_00540053 rdf:type owl:DatatypeProperty ; @@ -27255,13 +26755,11 @@ dicom:dicom_00540053 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0053)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280008 dicom:dicom_00280008 rdf:type owl:DatatypeProperty ; @@ -27274,14 +26772,11 @@ dicom:dicom_00280008 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,0008)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00700021 dicom:dicom_00700021 rdf:type owl:DatatypeProperty ; @@ -27294,17 +26789,17 @@ dicom:dicom_00700021 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0021)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720106 dicom:dicom_00720106 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Number of Horizontal Pixels"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -27316,11 +26811,12 @@ dicom:dicom_00720106 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189739 dicom:dicom_00189739 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Number of Iterations"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -27332,7 +26828,6 @@ dicom:dicom_00189739 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00BC dicom:dicom_300A00BC rdf:type owl:DatatypeProperty ; @@ -27345,17 +26840,17 @@ dicom:dicom_300A00BC rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00BC)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221530 dicom:dicom_00221530 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Number of Map Points"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -27367,11 +26862,12 @@ dicom:dicom_00221530 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00520038 dicom:dicom_00520038 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Number of Padded A-lines"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -27383,7 +26879,6 @@ dicom:dicom_00520038 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180089 dicom:dicom_00180089 rdf:type owl:DatatypeProperty ; @@ -27396,13 +26891,11 @@ dicom:dicom_00180089 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0089)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540031 dicom:dicom_00540031 rdf:type owl:DatatypeProperty ; @@ -27415,17 +26908,17 @@ dicom:dicom_00540031 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0031)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720014 dicom:dicom_00720014 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Number of Priors Referenced"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -27437,7 +26930,6 @@ dicom:dicom_00720014 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A028A dicom:dicom_300A028A rdf:type owl:DatatypeProperty ; @@ -27450,14 +26942,11 @@ dicom:dicom_300A028A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,028A)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00540061 dicom:dicom_00540061 rdf:type owl:DatatypeProperty ; @@ -27470,13 +26959,11 @@ dicom:dicom_00540061 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0061)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540051 dicom:dicom_00540051 rdf:type owl:DatatypeProperty ; @@ -27489,17 +26976,17 @@ dicom:dicom_00540051 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0051)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720100 dicom:dicom_00720100 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Number of Screens"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -27511,7 +26998,6 @@ dicom:dicom_00720100 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540081 dicom:dicom_00540081 rdf:type owl:DatatypeProperty ; @@ -27524,13 +27010,11 @@ dicom:dicom_00540081 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0081)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00082124 dicom:dicom_00082124 rdf:type owl:DatatypeProperty ; @@ -27543,17 +27027,17 @@ dicom:dicom_00082124 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,2124)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189740 dicom:dicom_00189740 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Number of Subsets"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -27565,11 +27049,12 @@ dicom:dicom_00189740 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660001 dicom:dicom_00660001 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Number of Surfaces"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -27581,7 +27066,6 @@ dicom:dicom_00660001 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186050 dicom:dicom_00186050 rdf:type owl:DatatypeProperty ; @@ -27594,13 +27078,11 @@ dicom:dicom_00186050 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6050)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186056 dicom:dicom_00186056 rdf:type owl:DatatypeProperty ; @@ -27613,13 +27095,11 @@ dicom:dicom_00186056 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6056)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00200105 dicom:dicom_00200105 rdf:type owl:DatatypeProperty ; @@ -27632,13 +27112,11 @@ dicom:dicom_00200105 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,0105)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540101 dicom:dicom_00540101 rdf:type owl:DatatypeProperty ; @@ -27651,15 +27129,11 @@ dicom:dicom_00540101 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0101)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - - - ### http://purl.org/nidash/dicom#dicom_00540071 dicom:dicom_00540071 rdf:type owl:DatatypeProperty ; @@ -27672,13 +27146,11 @@ dicom:dicom_00540071 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0071)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181495 dicom:dicom_00181495 rdf:type owl:DatatypeProperty ; @@ -27691,13 +27163,11 @@ dicom:dicom_00181495 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1495)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540211 dicom:dicom_00540211 rdf:type owl:DatatypeProperty ; @@ -27710,17 +27180,17 @@ dicom:dicom_00540211 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0211)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0066001E dicom:dicom_0066001E rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Number of Vectors"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -27732,11 +27202,12 @@ dicom:dicom_0066001E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720104 dicom:dicom_00720104 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Number of Vertical Pixels"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -27748,7 +27219,6 @@ dicom:dicom_00720104 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0008212A dicom:dicom_0008212A rdf:type owl:DatatypeProperty ; @@ -27761,17 +27231,17 @@ dicom:dicom_0008212A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,212A)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240038 dicom:dicom_00240038 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Number of Visual Stimuli"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -27783,11 +27253,12 @@ dicom:dicom_00240038 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0070150C dicom:dicom_0070150C rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Number of Volumetric Curve Points"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -27799,7 +27270,6 @@ dicom:dicom_0070150C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0005 dicom:dicom_003A0005 rdf:type owl:DatatypeProperty ; @@ -27812,13 +27282,11 @@ dicom:dicom_003A0005 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,0005)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0010 dicom:dicom_003A0010 rdf:type owl:DatatypeProperty ; @@ -27831,13 +27299,11 @@ dicom:dicom_003A0010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,0010)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00D0 dicom:dicom_300A00D0 rdf:type owl:DatatypeProperty ; @@ -27850,13 +27316,11 @@ dicom:dicom_300A00D0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00D0)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189066 dicom:dicom_00189066 rdf:type owl:DatatypeProperty ; @@ -27869,13 +27333,11 @@ dicom:dicom_00189066 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9066)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189093 dicom:dicom_00189093 rdf:type owl:DatatypeProperty ; @@ -27888,13 +27350,11 @@ dicom:dicom_00189093 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9093)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A301 dicom:dicom_0040A301 rdf:type owl:DatatypeProperty ; @@ -27907,17 +27367,17 @@ dicom:dicom_0040A301 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A301)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A30A dicom:dicom_0040A30A rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Numeric Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -27929,11 +27389,12 @@ dicom:dicom_0040A30A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00520006 dicom:dicom_00520006 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "OCT Acquisition Domain"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -27945,11 +27406,12 @@ dicom:dicom_00520006 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00520002 dicom:dicom_00520002 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "OCT Focal Distance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -27961,11 +27423,12 @@ dicom:dicom_00520002 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00520007 dicom:dicom_00520007 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "OCT Optical Center Wavelength"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -27977,11 +27440,12 @@ dicom:dicom_00520007 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00520026 dicom:dicom_00520026 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "OCT Z Offset Applied"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -27993,11 +27457,12 @@ dicom:dicom_00520026 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00520030 dicom:dicom_00520030 rdf:type owl:DatatypeProperty ; + dicom:VR "SS"^^xsd:string ; + rdfs:label "OCT Z Offset Correction"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28009,11 +27474,12 @@ dicom:dicom_00520030 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189404 dicom:dicom_00189404 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Object Pixel Spacing in Center of Beam"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28025,11 +27491,12 @@ dicom:dicom_00189404 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189456 dicom:dicom_00189456 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Object Thickness Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28041,11 +27508,12 @@ dicom:dicom_00189456 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480113 dicom:dicom_00480113 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Objective Lens Numerical Aperture"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28057,11 +27525,12 @@ dicom:dicom_00480113 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480112 dicom:dicom_00480112 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Objective Lens Power"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28073,11 +27542,12 @@ dicom:dicom_00480112 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701304 dicom:dicom_00701304 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Oblique Cropping Plane Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28089,11 +27559,12 @@ dicom:dicom_00701304 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00820022 dicom:dicom_00820022 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Observation Basis Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28105,7 +27576,6 @@ dicom:dicom_00820022 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A032 dicom:dicom_0040A032 rdf:type owl:DatatypeProperty ; @@ -28118,17 +27588,17 @@ dicom:dicom_0040A032 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A032)"^^xsd:string ; - dicom:VR "DT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0082000A dicom:dicom_0082000A rdf:type owl:DatatypeProperty ; + dicom:VR "UT"^^xsd:string ; + rdfs:label "Observation Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28140,8 +27610,6 @@ dicom:dicom_0082000A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_30060082 dicom:dicom_30060082 rdf:type owl:DatatypeProperty ; @@ -28154,17 +27622,17 @@ dicom:dicom_30060082 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0082)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00820008 dicom:dicom_00820008 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Observation Significance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28176,11 +27644,12 @@ dicom:dicom_00820008 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A171 dicom:dicom_0040A171 rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Observation UID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28192,11 +27661,12 @@ dicom:dicom_0040A171 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A084 dicom:dicom_0040A084 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Observer Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28208,7 +27678,6 @@ dicom:dicom_0040A084 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00102180 dicom:dicom_00102180 rdf:type owl:DatatypeProperty ; @@ -28221,17 +27690,17 @@ dicom:dicom_00102180 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0010,2180)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189905 dicom:dicom_00189905 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Offset Direction"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28243,11 +27712,12 @@ dicom:dicom_00189905 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189904 dicom:dicom_00189904 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Offset Distance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28259,11 +27729,12 @@ dicom:dicom_00189904 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00041420 dicom:dicom_00041420 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Offset of Referenced Lower-Level Directory Entity"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28275,11 +27746,12 @@ dicom:dicom_00041420 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00041200 dicom:dicom_00041200 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Offset of the First Directory Record of the Root Directory Entity"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28291,11 +27763,12 @@ dicom:dicom_00041200 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00041202 dicom:dicom_00041202 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Offset of the Last Directory Record of the Root Directory Entity"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28307,11 +27780,12 @@ dicom:dicom_00041202 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00041400 dicom:dicom_00041400 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Offset of the Next Directory Record"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28323,7 +27797,6 @@ dicom:dicom_00041400 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189176 dicom:dicom_00189176 rdf:type owl:DatatypeProperty ; @@ -28336,13 +27809,11 @@ dicom:dicom_00189176 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9176)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189177 dicom:dicom_00189177 rdf:type owl:DatatypeProperty ; @@ -28355,13 +27826,11 @@ dicom:dicom_00189177 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9177)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189178 dicom:dicom_00189178 rdf:type owl:DatatypeProperty ; @@ -28374,14 +27843,11 @@ dicom:dicom_00189178 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9178)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00081072 dicom:dicom_00081072 rdf:type owl:DatatypeProperty ; @@ -28394,14 +27860,11 @@ dicom:dicom_00081072 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1072)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00081070 dicom:dicom_00081070 rdf:type owl:DatatypeProperty ; @@ -28414,17 +27877,17 @@ dicom:dicom_00081070 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1070)"^^xsd:string ; - dicom:VR "PN"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221150 dicom:dicom_00221150 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Ophthalmic Axial Length Data Source Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28436,11 +27899,12 @@ dicom:dicom_00221150 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221159 dicom:dicom_00221159 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Ophthalmic Axial Length Data Source Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28452,11 +27916,12 @@ dicom:dicom_00221159 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221140 dicom:dicom_00221140 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Ophthalmic Axial Length Measurement Modified"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28468,11 +27933,12 @@ dicom:dicom_00221140 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221212 dicom:dicom_00221212 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Ophthalmic Axial Length Measurements Length Summation Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28484,11 +27950,12 @@ dicom:dicom_00221212 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221101 dicom:dicom_00221101 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Ophthalmic Axial Length Measurements Segment Name Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28500,11 +27967,12 @@ dicom:dicom_00221101 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221211 dicom:dicom_00221211 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Ophthalmic Axial Length Measurements Segmental Length Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28516,12 +27984,12 @@ dicom:dicom_00221211 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00221050 dicom:dicom_00221050 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Ophthalmic Axial Length Measurements Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28533,11 +28001,12 @@ dicom:dicom_00221050 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221210 dicom:dicom_00221210 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Ophthalmic Axial Length Measurements Total Length Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28549,11 +28018,12 @@ dicom:dicom_00221210 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221010 dicom:dicom_00221010 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Ophthalmic Axial Length Measurements Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28565,11 +28035,12 @@ dicom:dicom_00221010 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221515 dicom:dicom_00221515 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Ophthalmic Axial Length Method"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28581,11 +28052,12 @@ dicom:dicom_00221515 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221262 dicom:dicom_00221262 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Ophthalmic Axial Length Quality Metric Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28597,11 +28069,12 @@ dicom:dicom_00221262 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221250 dicom:dicom_00221250 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Ophthalmic Axial Length Selection Method Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28613,11 +28086,12 @@ dicom:dicom_00221250 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221012 dicom:dicom_00221012 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Ophthalmic Axial Length Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28629,11 +28103,12 @@ dicom:dicom_00221012 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221059 dicom:dicom_00221059 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Ophthalmic Axial Length Velocity"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28645,11 +28120,12 @@ dicom:dicom_00221059 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221019 dicom:dicom_00221019 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Ophthalmic Axial Length"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28661,11 +28137,12 @@ dicom:dicom_00221019 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221009 dicom:dicom_00221009 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Ophthalmic Axial Measurements Device Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28677,11 +28154,12 @@ dicom:dicom_00221009 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221008 dicom:dicom_00221008 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Ophthalmic Axial Measurements Left Eye Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28693,11 +28171,12 @@ dicom:dicom_00221008 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221007 dicom:dicom_00221007 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Ophthalmic Axial Measurements Right Eye Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28709,11 +28188,12 @@ dicom:dicom_00221007 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221517 dicom:dicom_00221517 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Ophthalmic FOV"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28725,11 +28205,12 @@ dicom:dicom_00221517 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220031 dicom:dicom_00220031 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Ophthalmic Frame Location Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28741,11 +28222,12 @@ dicom:dicom_00220031 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220039 dicom:dicom_00220039 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Ophthalmic Image Orientation"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28757,11 +28239,12 @@ dicom:dicom_00220039 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221415 dicom:dicom_00221415 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Ophthalmic Mapping Device Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28773,12 +28256,12 @@ dicom:dicom_00221415 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00240114 dicom:dicom_00240114 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Ophthalmic Patient Clinical Information Left Eye Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28790,11 +28273,12 @@ dicom:dicom_00240114 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240115 dicom:dicom_00240115 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Ophthalmic Patient Clinical Information Right Eye Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28806,11 +28290,12 @@ dicom:dicom_00240115 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221470 dicom:dicom_00221470 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Ophthalmic Thickness Map Quality Rating Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28822,11 +28307,12 @@ dicom:dicom_00221470 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221458 dicom:dicom_00221458 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Ophthalmic Thickness Map Quality Threshold Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28838,11 +28324,12 @@ dicom:dicom_00221458 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221460 dicom:dicom_00221460 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Ophthalmic Thickness Map Threshold Quality Rating"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28854,11 +28341,12 @@ dicom:dicom_00221460 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221436 dicom:dicom_00221436 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Ophthalmic Thickness Map Type Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28870,11 +28358,12 @@ dicom:dicom_00221436 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221443 dicom:dicom_00221443 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Ophthalmic Thickness Mapping Normals Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28886,11 +28375,12 @@ dicom:dicom_00221443 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221044 dicom:dicom_00221044 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Ophthalmic Ultrasound Method Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28902,11 +28392,12 @@ dicom:dicom_00221044 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221225 dicom:dicom_00221225 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Optical Ophthalmic Axial Length Measurements Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28918,11 +28409,12 @@ dicom:dicom_00221225 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480107 dicom:dicom_00480107 rdf:type owl:DatatypeProperty ; + dicom:VR "ST"^^xsd:string ; + rdfs:label "Optical Path Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28934,11 +28426,12 @@ dicom:dicom_00480107 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480207 dicom:dicom_00480207 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Optical Path Identification Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28950,11 +28443,12 @@ dicom:dicom_00480207 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480106 dicom:dicom_00480106 rdf:type owl:DatatypeProperty ; + dicom:VR "SH"^^xsd:string ; + rdfs:label "Optical Path Identifier"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28966,11 +28460,12 @@ dicom:dicom_00480106 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480105 dicom:dicom_00480105 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Optical Path Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28982,11 +28477,12 @@ dicom:dicom_00480105 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221255 dicom:dicom_00221255 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Optical Selected Ophthalmic Axial Length Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -28998,11 +28494,12 @@ dicom:dicom_00221255 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460040 dicom:dicom_00460040 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Optical Transmittance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -29014,11 +28511,12 @@ dicom:dicom_00460040 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460139 dicom:dicom_00460139 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Optotype Detailed Definition"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -29030,11 +28528,12 @@ dicom:dicom_00460139 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460095 dicom:dicom_00460095 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Optotype Presentation"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -29046,11 +28545,12 @@ dicom:dicom_00460095 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460094 dicom:dicom_00460094 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Optotype"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -29062,11 +28562,12 @@ dicom:dicom_00460094 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400027 dicom:dicom_00400027 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Order Filler Identifier Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -29078,11 +28579,12 @@ dicom:dicom_00400027 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400026 dicom:dicom_00400026 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Order Placer Identifier Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -29094,7 +28596,6 @@ dicom:dicom_00400026 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400316 dicom:dicom_00400316 rdf:type owl:DatatypeProperty ; @@ -29107,13 +28608,11 @@ dicom:dicom_00400316 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,0316)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400318 dicom:dicom_00400318 rdf:type owl:DatatypeProperty ; @@ -29126,14 +28625,11 @@ dicom:dicom_00400318 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,0318)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_300A002A dicom:dicom_300A002A rdf:type owl:DatatypeProperty ; @@ -29146,13 +28642,11 @@ dicom:dicom_300A002A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,002A)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A002B dicom:dicom_300A002B rdf:type owl:DatatypeProperty ; @@ -29165,7 +28659,6 @@ dicom:dicom_300A002B rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,002B)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . @@ -29183,14 +28676,11 @@ dicom:dicom_300A002C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,002C)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_300A002D dicom:dicom_300A002D rdf:type owl:DatatypeProperty ; @@ -29203,17 +28693,17 @@ dicom:dicom_300A002D rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,002D)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_04000561 dicom:dicom_04000561 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Original Attributes Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -29225,11 +28715,12 @@ dicom:dicom_04000561 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0076000C dicom:dicom_0076000C rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Original Implant Assembly Template Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -29241,11 +28732,12 @@ dicom:dicom_0076000C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686225 dicom:dicom_00686225 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Original Implant Template Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -29257,7 +28749,6 @@ dicom:dicom_00686225 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0008001B dicom:dicom_0008001B rdf:type owl:DatatypeProperty ; @@ -29270,17 +28761,17 @@ dicom:dicom_0008001B rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,001B)"^^xsd:string ; - dicom:VR "UI"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00101002 dicom:dicom_00101002 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Other Patient IDs Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -29292,7 +28783,6 @@ dicom:dicom_00101002 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00101000 dicom:dicom_00101000 rdf:type owl:DatatypeProperty ; @@ -29305,13 +28795,11 @@ dicom:dicom_00101000 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0010,1000)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00101001 dicom:dicom_00101001 rdf:type owl:DatatypeProperty ; @@ -29324,17 +28812,17 @@ dicom:dicom_00101001 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0010,1001)"^^xsd:string ; - dicom:VR "PN"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460064 dicom:dicom_00460064 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Other Pupillary Distance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -29346,7 +28834,6 @@ dicom:dicom_00460064 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00404033 dicom:dicom_00404033 rdf:type owl:DatatypeProperty ; @@ -29359,13 +28846,11 @@ dicom:dicom_00404033 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,4033)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00185000 dicom:dicom_00185000 rdf:type owl:DatatypeProperty ; @@ -29378,17 +28863,17 @@ dicom:dicom_00185000 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,5000)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006862A5 dicom:dicom_006862A5 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Overall Template Spatial Tolerance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -29400,7 +28885,6 @@ dicom:dicom_006862A5 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_60xx1001 dicom:dicom_60xx1001 rdf:type owl:DatatypeProperty ; @@ -29413,13 +28897,11 @@ dicom:dicom_60xx1001 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(60xx,1001)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_60xx0102 dicom:dicom_60xx0102 rdf:type owl:DatatypeProperty ; @@ -29432,13 +28914,11 @@ dicom:dicom_60xx0102 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(60xx,0102)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_60xx0100 dicom:dicom_60xx0100 rdf:type owl:DatatypeProperty ; @@ -29451,13 +28931,11 @@ dicom:dicom_60xx0100 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(60xx,0100)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_60xx0011 dicom:dicom_60xx0011 rdf:type owl:DatatypeProperty ; @@ -29470,13 +28948,11 @@ dicom:dicom_60xx0011 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(60xx,0011)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_60xx3000 dicom:dicom_60xx3000 rdf:type owl:DatatypeProperty ; @@ -29489,13 +28965,11 @@ dicom:dicom_60xx3000 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(60xx,3000)"^^xsd:string ; - dicom:VR "OB or OW"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_60xx0022 dicom:dicom_60xx0022 rdf:type owl:DatatypeProperty ; @@ -29508,13 +28982,11 @@ dicom:dicom_60xx0022 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(60xx,0022)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_60xx1500 dicom:dicom_60xx1500 rdf:type owl:DatatypeProperty ; @@ -29527,13 +28999,11 @@ dicom:dicom_60xx1500 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(60xx,1500)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_60xx0050 dicom:dicom_60xx0050 rdf:type owl:DatatypeProperty ; @@ -29546,13 +29016,11 @@ dicom:dicom_60xx0050 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(60xx,0050)"^^xsd:string ; - dicom:VR "SS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_60xx0010 dicom:dicom_60xx0010 rdf:type owl:DatatypeProperty ; @@ -29565,13 +29033,11 @@ dicom:dicom_60xx0010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(60xx,0010)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_60xx0045 dicom:dicom_60xx0045 rdf:type owl:DatatypeProperty ; @@ -29584,14 +29050,11 @@ dicom:dicom_60xx0045 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(60xx,0045)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_60xx0040 dicom:dicom_60xx0040 rdf:type owl:DatatypeProperty ; @@ -29604,14 +29067,11 @@ dicom:dicom_60xx0040 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(60xx,0040)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_30080062 dicom:dicom_30080062 rdf:type owl:DatatypeProperty ; @@ -29624,13 +29084,11 @@ dicom:dicom_30080062 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0062)"^^xsd:string ; - dicom:VR "AT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080066 dicom:dicom_30080066 rdf:type owl:DatatypeProperty ; @@ -29643,14 +29101,11 @@ dicom:dicom_30080066 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0066)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_30080060 dicom:dicom_30080060 rdf:type owl:DatatypeProperty ; @@ -29663,13 +29118,11 @@ dicom:dicom_30080060 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0060)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189029 dicom:dicom_00189029 rdf:type owl:DatatypeProperty ; @@ -29682,17 +29135,17 @@ dicom:dicom_00189029 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9029)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189733 dicom:dicom_00189733 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "PET Detector Motion Details Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -29704,11 +29157,12 @@ dicom:dicom_00189733 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189732 dicom:dicom_00189732 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "PET Frame Acquisition Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -29720,11 +29174,12 @@ dicom:dicom_00189732 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189736 dicom:dicom_00189736 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "PET Frame Correction Factors Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -29736,11 +29191,12 @@ dicom:dicom_00189736 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189751 dicom:dicom_00189751 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "PET Frame Type Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -29752,11 +29208,12 @@ dicom:dicom_00189751 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189735 dicom:dicom_00189735 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "PET Position Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -29768,11 +29225,12 @@ dicom:dicom_00189735 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189749 dicom:dicom_00189749 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "PET Reconstruction Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -29784,11 +29242,12 @@ dicom:dicom_00189749 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189734 dicom:dicom_00189734 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "PET Table Dynamics Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -29800,8 +29259,6 @@ dicom:dicom_00189734 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00181085 dicom:dicom_00181085 rdf:type owl:DatatypeProperty ; @@ -29814,17 +29271,17 @@ dicom:dicom_00181085 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1085)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_001811A4 dicom:dicom_001811A4 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Paddle Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -29836,7 +29293,6 @@ dicom:dicom_001811A4 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00182001 dicom:dicom_00182001 rdf:type owl:DatatypeProperty ; @@ -29849,17 +29305,17 @@ dicom:dicom_00182001 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,2001)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480120 dicom:dicom_00480120 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Palette Color Lookup Table Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -29871,7 +29327,6 @@ dicom:dicom_00480120 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281199 dicom:dicom_00281199 rdf:type owl:DatatypeProperty ; @@ -29884,14 +29339,11 @@ dicom:dicom_00281199 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,1199)"^^xsd:string ; - dicom:VR "UI"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00189078 dicom:dicom_00189078 rdf:type owl:DatatypeProperty ; @@ -29904,13 +29356,11 @@ dicom:dicom_00189078 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9078)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189077 dicom:dicom_00189077 rdf:type owl:DatatypeProperty ; @@ -29923,13 +29373,11 @@ dicom:dicom_00189077 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9077)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189069 dicom:dicom_00189069 rdf:type owl:DatatypeProperty ; @@ -29942,13 +29390,11 @@ dicom:dicom_00189069 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9069)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189168 dicom:dicom_00189168 rdf:type owl:DatatypeProperty ; @@ -29961,13 +29407,11 @@ dicom:dicom_00189168 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9168)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189155 dicom:dicom_00189155 rdf:type owl:DatatypeProperty ; @@ -29980,17 +29424,17 @@ dicom:dicom_00189155 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9155)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080063 dicom:dicom_30080063 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Parameter Item Index"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30002,11 +29446,12 @@ dicom:dicom_30080063 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080063 dicom:dicom_30080063 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Parameter Item Index"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30018,11 +29463,12 @@ dicom:dicom_30080063 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080065 dicom:dicom_30080065 rdf:type owl:DatatypeProperty ; + dicom:VR "AT"^^xsd:string ; + rdfs:label "Parameter Pointer"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30034,11 +29480,12 @@ dicom:dicom_30080065 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080061 dicom:dicom_30080061 rdf:type owl:DatatypeProperty ; + dicom:VR "AT"^^xsd:string ; + rdfs:label "Parameter Sequence Pointer"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30050,11 +29497,12 @@ dicom:dicom_30080061 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080061 dicom:dicom_30080061 rdf:type owl:DatatypeProperty ; + dicom:VR "AT"^^xsd:string ; + rdfs:label "Parameter Sequence Pointer"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30066,11 +29514,12 @@ dicom:dicom_30080061 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080067 dicom:dicom_30080067 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Parameter Value Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30082,11 +29531,12 @@ dicom:dicom_30080067 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189913 dicom:dicom_00189913 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Parameters Specification Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30098,12 +29548,12 @@ dicom:dicom_00189913 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00409092 dicom:dicom_00409092 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Parametric Map Frame Type Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30115,11 +29565,12 @@ dicom:dicom_00409092 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720208 dicom:dicom_00720208 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Partial Data Display Handling"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30131,7 +29582,6 @@ dicom:dicom_00720208 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189036 dicom:dicom_00189036 rdf:type owl:DatatypeProperty ; @@ -30144,13 +29594,11 @@ dicom:dicom_00189036 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9036)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189081 dicom:dicom_00189081 rdf:type owl:DatatypeProperty ; @@ -30163,17 +29611,17 @@ dicom:dicom_00189081 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9081)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281352 dicom:dicom_00281352 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Partial View Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30185,7 +29633,6 @@ dicom:dicom_00281352 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281351 dicom:dicom_00281351 rdf:type owl:DatatypeProperty ; @@ -30198,13 +29645,11 @@ dicom:dicom_00281351 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,1351)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281350 dicom:dicom_00281350 rdf:type owl:DatatypeProperty ; @@ -30217,17 +29662,17 @@ dicom:dicom_00281350 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,1350)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A07A dicom:dicom_0040A07A rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Participant Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30239,11 +29684,12 @@ dicom:dicom_0040A07A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A082 dicom:dicom_0040A082 rdf:type owl:DatatypeProperty ; + dicom:VR "DT"^^xsd:string ; + rdfs:label "Participation DateTime"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30255,11 +29701,12 @@ dicom:dicom_0040A082 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A080 dicom:dicom_0040A080 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Participation Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30271,7 +29718,6 @@ dicom:dicom_0040A080 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0184 dicom:dicom_300A0184 rdf:type owl:DatatypeProperty ; @@ -30284,17 +29730,17 @@ dicom:dicom_300A0184 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0184)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00102293 dicom:dicom_00102293 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Patient Breed Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30306,11 +29752,12 @@ dicom:dicom_00102293 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00102292 dicom:dicom_00102292 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Patient Breed Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30322,7 +29769,6 @@ dicom:dicom_00102292 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00104000 dicom:dicom_00104000 rdf:type owl:DatatypeProperty ; @@ -30335,13 +29781,11 @@ dicom:dicom_00104000 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0010,4000)"^^xsd:string ; - dicom:VR "LT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220006 dicom:dicom_00220006 rdf:type owl:DatatypeProperty ; @@ -30354,13 +29798,11 @@ dicom:dicom_00220006 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0006)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220005 dicom:dicom_00220005 rdf:type owl:DatatypeProperty ; @@ -30373,14 +29815,11 @@ dicom:dicom_00220005 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0005)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00540414 dicom:dicom_00540414 rdf:type owl:DatatypeProperty ; @@ -30393,13 +29832,11 @@ dicom:dicom_00540414 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0414)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100020 dicom:dicom_00100020 rdf:type owl:DatatypeProperty ; @@ -30412,17 +29849,17 @@ dicom:dicom_00100020 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0010,0020)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00120062 dicom:dicom_00120062 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Patient Identity Removed"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30434,11 +29871,12 @@ dicom:dicom_00120062 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189763 dicom:dicom_00189763 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Patient Motion Corrected"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30450,11 +29888,12 @@ dicom:dicom_00189763 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240036 dicom:dicom_00240036 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Patient Not Properly Fixated Quantity"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30466,7 +29905,6 @@ dicom:dicom_00240036 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540410 dicom:dicom_00540410 rdf:type owl:DatatypeProperty ; @@ -30479,13 +29917,11 @@ dicom:dicom_00540410 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0410)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540412 dicom:dicom_00540412 rdf:type owl:DatatypeProperty ; @@ -30498,17 +29934,17 @@ dicom:dicom_00540412 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0412)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209450 dicom:dicom_00209450 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Patient Orientation in Frame Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30520,7 +29956,6 @@ dicom:dicom_00209450 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00200020 dicom:dicom_00200020 rdf:type owl:DatatypeProperty ; @@ -30533,17 +29968,17 @@ dicom:dicom_00200020 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,0020)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189772 dicom:dicom_00189772 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Patient Physiological State Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30555,11 +29990,12 @@ dicom:dicom_00189772 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189771 dicom:dicom_00189771 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Patient Physiological State Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30571,7 +30007,6 @@ dicom:dicom_00189771 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00185100 dicom:dicom_00185100 rdf:type owl:DatatypeProperty ; @@ -30584,17 +30019,17 @@ dicom:dicom_00185100 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,5100)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018991B dicom:dicom_0018991B rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Patient Positioning Instruction Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30606,11 +30041,12 @@ dicom:dicom_0018991B rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240069 dicom:dicom_00240069 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Patient Reliability Indicator"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30622,11 +30058,12 @@ dicom:dicom_00240069 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0183 dicom:dicom_300A0183 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Patient Setup Label"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30638,7 +30075,6 @@ dicom:dicom_300A0183 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0182 dicom:dicom_300A0182 rdf:type owl:DatatypeProperty ; @@ -30651,13 +30087,11 @@ dicom:dicom_300A0182 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0182)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0180 dicom:dicom_300A0180 rdf:type owl:DatatypeProperty ; @@ -30670,17 +30104,17 @@ dicom:dicom_300A0180 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0180)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00102202 dicom:dicom_00102202 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Patient Species Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30692,11 +30126,12 @@ dicom:dicom_00102202 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00102201 dicom:dicom_00102201 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Patient Species Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30708,11 +30143,12 @@ dicom:dicom_00102201 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189911 dicom:dicom_00189911 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Patient Specification Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30724,7 +30160,6 @@ dicom:dicom_00189911 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00380500 dicom:dicom_00380500 rdf:type owl:DatatypeProperty ; @@ -30737,13 +30172,11 @@ dicom:dicom_00380500 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0038,0500)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A004C dicom:dicom_300A004C rdf:type owl:DatatypeProperty ; @@ -30756,13 +30189,11 @@ dicom:dicom_300A004C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,004C)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0122 dicom:dicom_300A0122 rdf:type owl:DatatypeProperty ; @@ -30775,13 +30206,11 @@ dicom:dicom_300A0122 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0122)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0123 dicom:dicom_300A0123 rdf:type owl:DatatypeProperty ; @@ -30794,13 +30223,11 @@ dicom:dicom_300A0123 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0123)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00101010 dicom:dicom_00101010 rdf:type owl:DatatypeProperty ; @@ -30813,17 +30240,17 @@ dicom:dicom_00101010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0010,1010)"^^xsd:string ; - dicom:VR "AS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100035 dicom:dicom_00100035 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Patient's Alternative Calendar"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30835,11 +30262,12 @@ dicom:dicom_00100035 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100033 dicom:dicom_00100033 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Patient's Birth Date in Alternative Calendar"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30851,7 +30279,6 @@ dicom:dicom_00100033 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100030 dicom:dicom_00100030 rdf:type owl:DatatypeProperty ; @@ -30864,13 +30291,11 @@ dicom:dicom_00100030 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0010,0030)"^^xsd:string ; - dicom:VR "DA"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100032 dicom:dicom_00100032 rdf:type owl:DatatypeProperty ; @@ -30883,17 +30308,17 @@ dicom:dicom_00100032 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0010,0032)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00101022 dicom:dicom_00101022 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Patient's Body Mass Index"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30905,11 +30330,12 @@ dicom:dicom_00101022 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100034 dicom:dicom_00100034 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Patient's Death Date in Alternative Calendar"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30921,7 +30347,6 @@ dicom:dicom_00100034 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100010 dicom:dicom_00100010 rdf:type owl:DatatypeProperty ; @@ -30934,17 +30359,17 @@ dicom:dicom_00100010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0010,0010)"^^xsd:string ; - dicom:VR "PN"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00102203 dicom:dicom_00102203 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Patient's Sex Neutered"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30956,7 +30381,6 @@ dicom:dicom_00102203 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100040 dicom:dicom_00100040 rdf:type owl:DatatypeProperty ; @@ -30969,17 +30393,17 @@ dicom:dicom_00100040 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0010,0040)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00101021 dicom:dicom_00101021 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Patient's Size Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -30991,7 +30415,6 @@ dicom:dicom_00101021 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00101020 dicom:dicom_00101020 rdf:type owl:DatatypeProperty ; @@ -31004,13 +30427,11 @@ dicom:dicom_00101020 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0010,1020)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00101030 dicom:dicom_00101030 rdf:type owl:DatatypeProperty ; @@ -31023,17 +30444,17 @@ dicom:dicom_00101030 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0010,1030)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700252 dicom:dicom_00700252 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Pattern Off Color CIELab Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -31045,11 +30466,12 @@ dicom:dicom_00700252 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700285 dicom:dicom_00700285 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Pattern Off Opacity"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -31061,11 +30483,12 @@ dicom:dicom_00700285 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700251 dicom:dicom_00700251 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Pattern On Color CIELab Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -31077,12 +30500,12 @@ dicom:dicom_00700251 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00700284 dicom:dicom_00700284 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Pattern On Opacity"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -31094,7 +30517,6 @@ dicom:dicom_00700284 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540038 dicom:dicom_00540038 rdf:type owl:DatatypeProperty ; @@ -31107,17 +30529,17 @@ dicom:dicom_00540038 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0038)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189538 dicom:dicom_00189538 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Per Projection Acquisition Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -31141,13 +30563,11 @@ dicom:dicom_52009230 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(5200,9230)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180094 dicom:dicom_00180094 rdf:type owl:DatatypeProperty ; @@ -31160,13 +30580,11 @@ dicom:dicom_00180094 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0094)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180093 dicom:dicom_00180093 rdf:type owl:DatatypeProperty ; @@ -31179,13 +30597,11 @@ dicom:dicom_00180093 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0093)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A372 dicom:dicom_0040A372 rdf:type owl:DatatypeProperty ; @@ -31198,13 +30614,11 @@ dicom:dicom_0040A372 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A372)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400254 dicom:dicom_00400254 rdf:type owl:DatatypeProperty ; @@ -31217,13 +30631,11 @@ dicom:dicom_00400254 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,0254)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400250 dicom:dicom_00400250 rdf:type owl:DatatypeProperty ; @@ -31236,13 +30648,11 @@ dicom:dicom_00400250 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,0250)"^^xsd:string ; - dicom:VR "DA"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400251 dicom:dicom_00400251 rdf:type owl:DatatypeProperty ; @@ -31255,13 +30665,11 @@ dicom:dicom_00400251 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,0251)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400253 dicom:dicom_00400253 rdf:type owl:DatatypeProperty ; @@ -31274,13 +30682,11 @@ dicom:dicom_00400253 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,0253)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400244 dicom:dicom_00400244 rdf:type owl:DatatypeProperty ; @@ -31293,13 +30699,11 @@ dicom:dicom_00400244 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,0244)"^^xsd:string ; - dicom:VR "DA"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400245 dicom:dicom_00400245 rdf:type owl:DatatypeProperty ; @@ -31312,18 +30716,17 @@ dicom:dicom_00400245 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,0245)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00400260 dicom:dicom_00400260 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Performed Protocol Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -31335,11 +30738,12 @@ dicom:dicom_00400260 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400261 dicom:dicom_00400261 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Performed Protocol Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -31351,7 +30755,6 @@ dicom:dicom_00400261 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081052 dicom:dicom_00081052 rdf:type owl:DatatypeProperty ; @@ -31364,13 +30767,11 @@ dicom:dicom_00081052 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1052)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081050 dicom:dicom_00081050 rdf:type owl:DatatypeProperty ; @@ -31383,14 +30784,11 @@ dicom:dicom_00081050 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1050)"^^xsd:string ; - dicom:VR "PN"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00401101 dicom:dicom_00401101 rdf:type owl:DatatypeProperty ; @@ -31403,17 +30801,17 @@ dicom:dicom_00401101 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,1101)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A123 dicom:dicom_0040A123 rdf:type owl:DatatypeProperty ; + dicom:VR "PN"^^xsd:string ; + rdfs:label "Person Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -31425,11 +30823,12 @@ dicom:dicom_0040A123 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A123 dicom:dicom_0040A123 rdf:type owl:DatatypeProperty ; + dicom:VR "PN"^^xsd:string ; + rdfs:label "Person Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -31441,11 +30840,12 @@ dicom:dicom_0040A123 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A123 dicom:dicom_0040A123 rdf:type owl:DatatypeProperty ; + dicom:VR "PN"^^xsd:string ; + rdfs:label "Person Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -31457,8 +30857,6 @@ dicom:dicom_0040A123 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00401102 dicom:dicom_00401102 rdf:type owl:DatatypeProperty ; @@ -31471,17 +30869,17 @@ dicom:dicom_00401102 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,1102)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00401104 dicom:dicom_00401104 rdf:type owl:DatatypeProperty ; + dicom:VR "LT"^^xsd:string ; + rdfs:label "Person's Telecom Information"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -31493,7 +30891,6 @@ dicom:dicom_00401104 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00401103 dicom:dicom_00401103 rdf:type owl:DatatypeProperty ; @@ -31506,13 +30903,11 @@ dicom:dicom_00401103 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,1103)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A385 dicom:dicom_0040A385 rdf:type owl:DatatypeProperty ; @@ -31525,17 +30920,17 @@ dicom:dicom_0040A385 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A385)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00380101 dicom:dicom_00380101 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Pertinent Resources Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -31547,7 +30942,6 @@ dicom:dicom_00380101 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189014 dicom:dicom_00189014 rdf:type owl:DatatypeProperty ; @@ -31560,13 +30954,11 @@ dicom:dicom_00189014 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9014)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540036 dicom:dicom_00540036 rdf:type owl:DatatypeProperty ; @@ -31579,13 +30971,11 @@ dicom:dicom_00540036 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0036)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540039 dicom:dicom_00540039 rdf:type owl:DatatypeProperty ; @@ -31598,13 +30988,11 @@ dicom:dicom_00540039 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0039)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540032 dicom:dicom_00540032 rdf:type owl:DatatypeProperty ; @@ -31617,13 +31005,11 @@ dicom:dicom_00540032 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0032)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540030 dicom:dicom_00540030 rdf:type owl:DatatypeProperty ; @@ -31636,17 +31022,17 @@ dicom:dicom_00540030 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0030)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181261 dicom:dicom_00181261 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Phosphor Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -31658,7 +31044,6 @@ dicom:dicom_00181261 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280004 dicom:dicom_00280004 rdf:type owl:DatatypeProperty ; @@ -31671,14 +31056,11 @@ dicom:dicom_00280004 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,0004)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00187065 dicom:dicom_00187065 rdf:type owl:DatatypeProperty ; @@ -31691,13 +31073,11 @@ dicom:dicom_00187065 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,7065)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018602C dicom:dicom_0018602C rdf:type owl:DatatypeProperty ; @@ -31710,13 +31090,11 @@ dicom:dicom_0018602C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,602C)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018602E dicom:dicom_0018602E rdf:type owl:DatatypeProperty ; @@ -31729,17 +31107,17 @@ dicom:dicom_0018602E rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,602E)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189429 dicom:dicom_00189429 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Physical Detector Size"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -31751,7 +31129,6 @@ dicom:dicom_00189429 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186024 dicom:dicom_00186024 rdf:type owl:DatatypeProperty ; @@ -31764,13 +31141,11 @@ dicom:dicom_00186024 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6024)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186026 dicom:dicom_00186026 rdf:type owl:DatatypeProperty ; @@ -31783,13 +31158,11 @@ dicom:dicom_00186026 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6026)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081062 dicom:dicom_00081062 rdf:type owl:DatatypeProperty ; @@ -31802,13 +31175,11 @@ dicom:dicom_00081062 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1062)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081049 dicom:dicom_00081049 rdf:type owl:DatatypeProperty ; @@ -31821,13 +31192,11 @@ dicom:dicom_00081049 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1049)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081048 dicom:dicom_00081048 rdf:type owl:DatatypeProperty ; @@ -31840,13 +31209,11 @@ dicom:dicom_00081048 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1048)"^^xsd:string ; - dicom:VR "PN"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280034 dicom:dicom_00280034 rdf:type owl:DatatypeProperty ; @@ -31859,13 +31226,11 @@ dicom:dicom_00280034 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,0034)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180095 dicom:dicom_00180095 rdf:type owl:DatatypeProperty ; @@ -31878,13 +31243,11 @@ dicom:dicom_00180095 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0095)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018604E dicom:dicom_0018604E rdf:type owl:DatatypeProperty ; @@ -31897,13 +31260,11 @@ dicom:dicom_0018604E rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,604E)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186046 dicom:dicom_00186046 rdf:type owl:DatatypeProperty ; @@ -31916,13 +31277,11 @@ dicom:dicom_00186046 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6046)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186044 dicom:dicom_00186044 rdf:type owl:DatatypeProperty ; @@ -31935,13 +31294,11 @@ dicom:dicom_00186044 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6044)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018604C dicom:dicom_0018604C rdf:type owl:DatatypeProperty ; @@ -31954,13 +31311,11 @@ dicom:dicom_0018604C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,604C)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186048 dicom:dicom_00186048 rdf:type owl:DatatypeProperty ; @@ -31973,13 +31328,11 @@ dicom:dicom_00186048 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6048)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018604A dicom:dicom_0018604A rdf:type owl:DatatypeProperty ; @@ -31992,17 +31345,17 @@ dicom:dicom_0018604A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,604A)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187036 dicom:dicom_00187036 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Pixel Data Area Origin Relative To FOV"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32014,11 +31367,12 @@ dicom:dicom_00187036 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00187038 dicom:dicom_00187038 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Pixel Data Area Rotation Angle Relative To FOV"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32030,11 +31384,12 @@ dicom:dicom_00187038 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00287FE0 dicom:dicom_00287FE0 rdf:type owl:DatatypeProperty ; + dicom:VR "UR"^^xsd:string ; + rdfs:label "Pixel Data Provider URL"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32046,7 +31401,6 @@ dicom:dicom_00287FE0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_7FE00010 dicom:dicom_7FE00010 rdf:type owl:DatatypeProperty ; @@ -32059,17 +31413,17 @@ dicom:dicom_7FE00010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(7FE0,0010)"^^xsd:string ; - dicom:VR "OB or OW"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00289422 dicom:dicom_00289422 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Pixel Intensity Relationship LUT Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32081,8 +31435,6 @@ dicom:dicom_00289422 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00281041 dicom:dicom_00281041 rdf:type owl:DatatypeProperty ; @@ -32095,13 +31447,11 @@ dicom:dicom_00281041 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,1041)"^^xsd:string ; - dicom:VR "SS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281040 dicom:dicom_00281040 rdf:type owl:DatatypeProperty ; @@ -32114,14 +31464,11 @@ dicom:dicom_00281040 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,1040)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00289110 dicom:dicom_00289110 rdf:type owl:DatatypeProperty ; @@ -32134,17 +31481,17 @@ dicom:dicom_00289110 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,9110)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480301 dicom:dicom_00480301 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Pixel Origin Interpretation"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32156,11 +31503,12 @@ dicom:dicom_00480301 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280121 dicom:dicom_00280121 rdf:type owl:DatatypeProperty ; + dicom:VR "US or SS"^^xsd:string ; + rdfs:label "Pixel Padding Range Limit"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32172,7 +31520,6 @@ dicom:dicom_00280121 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280120 dicom:dicom_00280120 rdf:type owl:DatatypeProperty ; @@ -32185,18 +31532,17 @@ dicom:dicom_00280120 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,0120)"^^xsd:string ; - dicom:VR "US or SS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00089205 dicom:dicom_00089205 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Pixel Presentation"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32208,12 +31554,12 @@ dicom:dicom_00089205 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00289506 dicom:dicom_00289506 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Pixel Shift Frame Range"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32225,11 +31571,12 @@ dicom:dicom_00289506 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00289501 dicom:dicom_00289501 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Pixel Shift Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32241,11 +31588,12 @@ dicom:dicom_00289501 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280A04 dicom:dicom_00280A04 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Pixel Spacing Calibration Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32257,11 +31605,12 @@ dicom:dicom_00280A04 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280A02 dicom:dicom_00280A02 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Pixel Spacing Calibration Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32273,7 +31622,6 @@ dicom:dicom_00280A02 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280030 dicom:dicom_00280030 rdf:type owl:DatatypeProperty ; @@ -32286,17 +31634,17 @@ dicom:dicom_00280030 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,0030)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00409098 dicom:dicom_00409098 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Pixel Value Mapping Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32308,11 +31656,12 @@ dicom:dicom_00409098 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221454 dicom:dicom_00221454 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Pixel Value Mapping Explanation"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32324,11 +31673,12 @@ dicom:dicom_00221454 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221450 dicom:dicom_00221450 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Pixel Value Mapping to Coded Concept Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32340,7 +31690,6 @@ dicom:dicom_00221450 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00289145 dicom:dicom_00289145 rdf:type owl:DatatypeProperty ; @@ -32353,13 +31702,11 @@ dicom:dicom_00289145 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,9145)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00402016 dicom:dicom_00402016 rdf:type owl:DatatypeProperty ; @@ -32372,13 +31719,11 @@ dicom:dicom_00402016 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,2016)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A000A dicom:dicom_300A000A rdf:type owl:DatatypeProperty ; @@ -32391,13 +31736,11 @@ dicom:dicom_300A000A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,000A)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280006 dicom:dicom_00280006 rdf:type owl:DatatypeProperty ; @@ -32410,17 +31753,17 @@ dicom:dicom_00280006 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,0006)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189457 dicom:dicom_00189457 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Plane Identification"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32432,11 +31775,12 @@ dicom:dicom_00189457 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701306 dicom:dicom_00701306 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Plane Normal"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32448,11 +31792,12 @@ dicom:dicom_00701306 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0020930F dicom:dicom_0020930F rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Plane Orientation (Volume) Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32464,11 +31809,12 @@ dicom:dicom_0020930F rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0048021A dicom:dicom_0048021A rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Plane Position (Slide) Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32480,11 +31826,12 @@ dicom:dicom_0048021A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0020930E dicom:dicom_0020930E rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Plane Position (Volume) Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32496,7 +31843,6 @@ dicom:dicom_0020930E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209113 dicom:dicom_00209113 rdf:type owl:DatatypeProperty ; @@ -32509,17 +31855,17 @@ dicom:dicom_00209113 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,9113)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701305 dicom:dicom_00701305 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Plane"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32531,7 +31877,6 @@ dicom:dicom_00701305 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00CA dicom:dicom_300A00CA rdf:type owl:DatatypeProperty ; @@ -32544,17 +31889,17 @@ dicom:dicom_300A00CA rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00CA)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686540 dicom:dicom_00686540 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Planning Landmark Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32566,11 +31911,12 @@ dicom:dicom_00686540 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686530 dicom:dicom_00686530 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Planning Landmark ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32582,11 +31928,12 @@ dicom:dicom_00686530 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686545 dicom:dicom_00686545 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Planning Landmark Identification Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32598,12 +31945,12 @@ dicom:dicom_00686545 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00686510 dicom:dicom_00686510 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Planning Landmark Line Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32615,11 +31962,12 @@ dicom:dicom_00686510 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686520 dicom:dicom_00686520 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Planning Landmark Plane Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32631,11 +31979,12 @@ dicom:dicom_00686520 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686500 dicom:dicom_00686500 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Planning Landmark Point Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32651,6 +32000,8 @@ dicom:dicom_00686500 rdf:type owl:DatatypeProperty ; dicom:dicom_00181004 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Plate ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32662,11 +32013,12 @@ dicom:dicom_00181004 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181260 dicom:dicom_00181260 rdf:type owl:DatatypeProperty ; + dicom:VR "SH"^^xsd:string ; + rdfs:label "Plate Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32678,11 +32030,12 @@ dicom:dicom_00181260 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660016 dicom:dicom_00660016 rdf:type owl:DatatypeProperty ; + dicom:VR "OF"^^xsd:string ; + rdfs:label "Point Coordinates Data"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32694,12 +32047,12 @@ dicom:dicom_00660016 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00660017 dicom:dicom_00660017 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Point Position Accuracy"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32711,11 +32064,12 @@ dicom:dicom_00660017 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0066001A dicom:dicom_0066001A rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Points Bounding Box Coordinates"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32727,11 +32081,12 @@ dicom:dicom_0066001A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018980C dicom:dicom_0018980C rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Position Measuring Device Used"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32743,7 +32098,6 @@ dicom:dicom_0018980C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00201040 dicom:dicom_00201040 rdf:type owl:DatatypeProperty ; @@ -32756,17 +32110,17 @@ dicom:dicom_00201040 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,1040)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189430 dicom:dicom_00189430 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Position of Isocenter Projection"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32778,11 +32132,12 @@ dicom:dicom_00189430 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189465 dicom:dicom_00189465 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Positioner Isocenter Detector Rotation Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32794,11 +32149,12 @@ dicom:dicom_00189465 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189463 dicom:dicom_00189463 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Positioner Isocenter Primary Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32810,12 +32166,12 @@ dicom:dicom_00189463 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00189464 dicom:dicom_00189464 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Positioner Isocenter Secondary Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32827,8 +32183,6 @@ dicom:dicom_00189464 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00181500 dicom:dicom_00181500 rdf:type owl:DatatypeProperty ; @@ -32841,17 +32195,17 @@ dicom:dicom_00181500 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1500)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189405 dicom:dicom_00189405 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Positioner Position Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32863,11 +32217,12 @@ dicom:dicom_00189405 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189559 dicom:dicom_00189559 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Positioner Primary Angle Direction"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -32879,7 +32234,6 @@ dicom:dicom_00189559 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181520 dicom:dicom_00181520 rdf:type owl:DatatypeProperty ; @@ -32892,13 +32246,11 @@ dicom:dicom_00181520 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1520)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181510 dicom:dicom_00181510 rdf:type owl:DatatypeProperty ; @@ -32911,13 +32263,11 @@ dicom:dicom_00181510 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1510)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181521 dicom:dicom_00181521 rdf:type owl:DatatypeProperty ; @@ -32930,13 +32280,11 @@ dicom:dicom_00181521 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1521)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181511 dicom:dicom_00181511 rdf:type owl:DatatypeProperty ; @@ -32949,13 +32297,11 @@ dicom:dicom_00181511 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1511)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181508 dicom:dicom_00181508 rdf:type owl:DatatypeProperty ; @@ -32968,13 +32314,11 @@ dicom:dicom_00181508 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1508)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181508 dicom:dicom_00181508 rdf:type owl:DatatypeProperty ; @@ -32987,18 +32331,17 @@ dicom:dicom_00181508 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1508)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_0018991D dicom:dicom_0018991D rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Positioning Landmark Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33010,11 +32353,12 @@ dicom:dicom_0018991D rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018991C dicom:dicom_0018991C rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Positioning Method Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33026,11 +32370,12 @@ dicom:dicom_0018991C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240056 dicom:dicom_00240056 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Positive Catch Trials Quantity"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33042,11 +32387,12 @@ dicom:dicom_00240056 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00640010 dicom:dicom_00640010 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Post Deformation Matrix Registration Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33058,11 +32404,12 @@ dicom:dicom_00640010 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018990A dicom:dicom_0018990A rdf:type owl:DatatypeProperty ; + dicom:VR "UC"^^xsd:string ; + rdfs:label "Potential Diagnostic Tasks"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33074,11 +32421,12 @@ dicom:dicom_0018990A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189909 dicom:dicom_00189909 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Potential Reasons for Procedure Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33090,11 +32438,12 @@ dicom:dicom_00189909 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189908 dicom:dicom_00189908 rdf:type owl:DatatypeProperty ; + dicom:VR "UC"^^xsd:string ; + rdfs:label "Potential Reasons for Procedure"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33106,11 +32455,12 @@ dicom:dicom_00189908 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189907 dicom:dicom_00189907 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Potential Requested Procedure Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33122,11 +32472,12 @@ dicom:dicom_00189907 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189906 dicom:dicom_00189906 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Potential Scheduled Protocol Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33138,11 +32489,12 @@ dicom:dicom_00189906 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0064000F dicom:dicom_0064000F rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Pre Deformation Matrix Registration Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33154,7 +32506,6 @@ dicom:dicom_0064000F rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A360 dicom:dicom_0040A360 rdf:type owl:DatatypeProperty ; @@ -33167,17 +32518,17 @@ dicom:dicom_0040A360 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A360)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018990E dicom:dicom_0018990E rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Predecessor Protocol Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33189,11 +32540,12 @@ dicom:dicom_0018990E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060018 dicom:dicom_30060018 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Predecessor Structure Set Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33205,11 +32557,12 @@ dicom:dicom_30060018 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221054 dicom:dicom_00221054 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Predicted Refractive Error"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33221,11 +32574,12 @@ dicom:dicom_00221054 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181244 dicom:dicom_00181244 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Preferred Playback Sequencing"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33237,7 +32591,6 @@ dicom:dicom_00181244 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_001021C0 dicom:dicom_001021C0 rdf:type owl:DatatypeProperty ; @@ -33250,17 +32603,17 @@ dicom:dicom_001021C0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0010,21C0)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A496 dicom:dicom_0040A496 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Preliminary Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33272,7 +32625,6 @@ dicom:dicom_0040A496 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A000E dicom:dicom_300A000E rdf:type owl:DatatypeProperty ; @@ -33285,17 +32637,17 @@ dicom:dicom_300A000E rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,000E)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701A01 dicom:dicom_00701A01 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Presentation Animation Style"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33307,7 +32659,6 @@ dicom:dicom_00701A01 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700082 dicom:dicom_00700082 rdf:type owl:DatatypeProperty ; @@ -33320,14 +32671,11 @@ dicom:dicom_00700082 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0082)"^^xsd:string ; - dicom:VR "DA"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00700083 dicom:dicom_00700083 rdf:type owl:DatatypeProperty ; @@ -33340,17 +32688,17 @@ dicom:dicom_00700083 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0083)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701101 dicom:dicom_00701101 rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Presentation Display Collection UID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33362,11 +32710,12 @@ dicom:dicom_00701101 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0241 dicom:dicom_003A0241 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Presentation Group Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33378,11 +32727,12 @@ dicom:dicom_003A0241 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701202 dicom:dicom_00701202 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Presentation Input Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33394,7 +32744,6 @@ dicom:dicom_00701202 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080068 dicom:dicom_00080068 rdf:type owl:DatatypeProperty ; @@ -33407,14 +32756,11 @@ dicom:dicom_00080068 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0068)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_20500020 dicom:dicom_20500020 rdf:type owl:DatatypeProperty ; @@ -33427,14 +32773,11 @@ dicom:dicom_20500020 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(2050,0020)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00700102 dicom:dicom_00700102 rdf:type owl:DatatypeProperty ; @@ -33447,13 +32790,11 @@ dicom:dicom_00700102 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0102)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700103 dicom:dicom_00700103 rdf:type owl:DatatypeProperty ; @@ -33466,13 +32807,11 @@ dicom:dicom_00700103 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0103)"^^xsd:string ; - dicom:VR "FL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700101 dicom:dicom_00700101 rdf:type owl:DatatypeProperty ; @@ -33485,17 +32824,17 @@ dicom:dicom_00700101 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0101)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701102 dicom:dicom_00701102 rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Presentation Sequence Collection UID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33507,11 +32846,12 @@ dicom:dicom_00701102 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701103 dicom:dicom_00701103 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Presentation Sequence Position Index"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33523,7 +32863,6 @@ dicom:dicom_00701103 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700100 dicom:dicom_00700100 rdf:type owl:DatatypeProperty ; @@ -33536,17 +32875,17 @@ dicom:dicom_00700100 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0100)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701801 dicom:dicom_00701801 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Presentation State Classification Component Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33558,11 +32897,12 @@ dicom:dicom_00701801 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701805 dicom:dicom_00701805 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Presentation State Compositor Component Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33574,11 +32914,12 @@ dicom:dicom_00701805 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240037 dicom:dicom_00240037 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Presented Visual Stimuli Data Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33590,7 +32931,6 @@ dicom:dicom_00240037 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541310 dicom:dicom_00541310 rdf:type owl:DatatypeProperty ; @@ -33603,14 +32943,11 @@ dicom:dicom_00541310 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1310)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00082230 dicom:dicom_00082230 rdf:type owl:DatatypeProperty ; @@ -33623,13 +32960,11 @@ dicom:dicom_00082230 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,2230)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00082228 dicom:dicom_00082228 rdf:type owl:DatatypeProperty ; @@ -33642,14 +32977,11 @@ dicom:dicom_00082228 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,2228)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_300A00B3 dicom:dicom_300A00B3 rdf:type owl:DatatypeProperty ; @@ -33662,17 +32994,17 @@ dicom:dicom_300A00B3 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00B3)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30020050 dicom:dicom_30020050 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Primary Fluence Mode Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33684,12 +33016,12 @@ dicom:dicom_30020050 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00189518 dicom:dicom_00189518 rdf:type owl:DatatypeProperty ; + dicom:VR "SS"^^xsd:string ; + rdfs:label "Primary Positioner Increment Sign"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33701,11 +33033,12 @@ dicom:dicom_00189518 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189514 dicom:dicom_00189514 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Primary Positioner Increment"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33717,11 +33050,12 @@ dicom:dicom_00189514 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189508 dicom:dicom_00189508 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Primary Positioner Scan Arc"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33733,11 +33067,12 @@ dicom:dicom_00189508 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189510 dicom:dicom_00189510 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Primary Positioner Scan Start Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33749,11 +33084,12 @@ dicom:dicom_00189510 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460028 dicom:dicom_00460028 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Prism Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33765,11 +33101,12 @@ dicom:dicom_00460028 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080302 dicom:dicom_00080302 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Private Creator Reference"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33781,11 +33118,12 @@ dicom:dicom_00080302 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080300 dicom:dicom_00080300 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Private Data Element Characteristics Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33797,11 +33135,12 @@ dicom:dicom_00080300 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080310 dicom:dicom_00080310 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Private Data Element Definition Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33813,11 +33152,12 @@ dicom:dicom_00080310 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0008030E dicom:dicom_0008030E rdf:type owl:DatatypeProperty ; + dicom:VR "UT"^^xsd:string ; + rdfs:label "Private Data Element Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33829,11 +33169,12 @@ dicom:dicom_0008030E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0008030F dicom:dicom_0008030F rdf:type owl:DatatypeProperty ; + dicom:VR "UT"^^xsd:string ; + rdfs:label "Private Data Element Encoding"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33845,11 +33186,12 @@ dicom:dicom_0008030F rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0008030D dicom:dicom_0008030D rdf:type owl:DatatypeProperty ; + dicom:VR "UC"^^xsd:string ; + rdfs:label "Private Data Element Keyword"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33861,11 +33203,12 @@ dicom:dicom_0008030D rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0008030C dicom:dicom_0008030C rdf:type owl:DatatypeProperty ; + dicom:VR "UC"^^xsd:string ; + rdfs:label "Private Data Element Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33877,11 +33220,12 @@ dicom:dicom_0008030C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0008030B dicom:dicom_0008030B rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Private Data Element Number of Items"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33893,11 +33237,12 @@ dicom:dicom_0008030B rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080309 dicom:dicom_00080309 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Private Data Element Value Multiplicity"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33909,11 +33254,12 @@ dicom:dicom_00080309 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0008030A dicom:dicom_0008030A rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Private Data Element Value Representation"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33925,11 +33271,12 @@ dicom:dicom_0008030A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080308 dicom:dicom_00080308 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Private Data Element"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33941,11 +33288,12 @@ dicom:dicom_00080308 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080301 dicom:dicom_00080301 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Private Group Reference"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33957,11 +33305,12 @@ dicom:dicom_00080301 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00041432 dicom:dicom_00041432 rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Private Record UID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -33973,7 +33322,6 @@ dicom:dicom_00041432 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081032 dicom:dicom_00081032 rdf:type owl:DatatypeProperty ; @@ -33986,17 +33334,17 @@ dicom:dicom_00081032 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1032)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00760020 dicom:dicom_00760020 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Procedure Type Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34008,7 +33356,6 @@ dicom:dicom_00760020 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00185020 dicom:dicom_00185020 rdf:type owl:DatatypeProperty ; @@ -34021,14 +33368,11 @@ dicom:dicom_00185020 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,5020)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00185104 dicom:dicom_00185104 rdf:type owl:DatatypeProperty ; @@ -34041,17 +33385,17 @@ dicom:dicom_00185104 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,5104)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189401 dicom:dicom_00189401 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Projection Pixel Calibration Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34063,7 +33407,6 @@ dicom:dicom_00189401 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400440 dicom:dicom_00400440 rdf:type owl:DatatypeProperty ; @@ -34076,18 +33419,17 @@ dicom:dicom_00400440 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,0440)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00189947 dicom:dicom_00189947 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Protocol Defined Patient Position"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34099,11 +33441,12 @@ dicom:dicom_00189947 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189910 dicom:dicom_00189910 rdf:type owl:DatatypeProperty ; + dicom:VR "UT"^^xsd:string ; + rdfs:label "Protocol Design Rationale"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34115,11 +33458,12 @@ dicom:dicom_00189910 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189923 dicom:dicom_00189923 rdf:type owl:DatatypeProperty ; + dicom:VR "UT"^^xsd:string ; + rdfs:label "Protocol Element Characteristics Summary"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34131,11 +33475,12 @@ dicom:dicom_00189923 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189922 dicom:dicom_00189922 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Protocol Element Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34147,11 +33492,12 @@ dicom:dicom_00189922 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189921 dicom:dicom_00189921 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Protocol Element Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34163,11 +33509,12 @@ dicom:dicom_00189921 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189924 dicom:dicom_00189924 rdf:type owl:DatatypeProperty ; + dicom:VR "UT"^^xsd:string ; + rdfs:label "Protocol Element Purpose"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34179,7 +33526,6 @@ dicom:dicom_00189924 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181030 dicom:dicom_00181030 rdf:type owl:DatatypeProperty ; @@ -34192,17 +33538,17 @@ dicom:dicom_00181030 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1030)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018990F dicom:dicom_0018990F rdf:type owl:DatatypeProperty ; + dicom:VR "UT"^^xsd:string ; + rdfs:label "Protocol Planning Information"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34214,11 +33560,12 @@ dicom:dicom_0018990F rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720705 dicom:dicom_00720705 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Pseudo-Color Palette Instance Reference Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34230,11 +33577,12 @@ dicom:dicom_00720705 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720704 dicom:dicom_00720704 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Pseudo-Color Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34246,11 +33594,12 @@ dicom:dicom_00720704 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080172 dicom:dicom_30080172 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Pulse Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34262,7 +33611,6 @@ dicom:dicom_30080172 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186032 dicom:dicom_00186032 rdf:type owl:DatatypeProperty ; @@ -34275,13 +33623,11 @@ dicom:dicom_00186032 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6032)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A028C dicom:dicom_300A028C rdf:type owl:DatatypeProperty ; @@ -34294,13 +33640,11 @@ dicom:dicom_300A028C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,028C)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189005 dicom:dicom_00189005 rdf:type owl:DatatypeProperty ; @@ -34313,17 +33657,17 @@ dicom:dicom_00189005 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9005)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080171 dicom:dicom_30080171 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Pulse Specific Brachy Control Point Delivered Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34335,12 +33679,12 @@ dicom:dicom_30080171 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00460203 dicom:dicom_00460203 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Pupil Centroid X-Coordinate"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34352,11 +33696,12 @@ dicom:dicom_00460203 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460204 dicom:dicom_00460204 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Pupil Centroid Y-Coordinate"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34368,7 +33713,6 @@ dicom:dicom_00460204 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0022000D dicom:dicom_0022000D rdf:type owl:DatatypeProperty ; @@ -34381,18 +33725,17 @@ dicom:dicom_0022000D rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,000D)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00460044 dicom:dicom_00460044 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Pupil Size"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34404,7 +33747,6 @@ dicom:dicom_00460044 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A170 dicom:dicom_0040A170 rdf:type owl:DatatypeProperty ; @@ -34417,14 +33759,11 @@ dicom:dicom_0040A170 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A170)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00189044 dicom:dicom_00189044 rdf:type owl:DatatypeProperty ; @@ -34437,13 +33776,11 @@ dicom:dicom_00189044 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9044)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280300 dicom:dicom_00280300 rdf:type owl:DatatypeProperty ; @@ -34456,17 +33793,17 @@ dicom:dicom_00280300 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,0300)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100200 dicom:dicom_00100200 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Quality Control Subject"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34478,12 +33815,12 @@ dicom:dicom_00100200 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00240098 dicom:dicom_00240098 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Quantified Defect"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34495,11 +33832,12 @@ dicom:dicom_00240098 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00409220 dicom:dicom_00409220 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Quantity Definition Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34511,11 +33849,12 @@ dicom:dicom_00409220 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080053 dicom:dicom_00080053 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Query/Retrieve View"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34527,7 +33866,6 @@ dicom:dicom_00080053 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00286040 dicom:dicom_00286040 rdf:type owl:DatatypeProperty ; @@ -34540,13 +33878,11 @@ dicom:dicom_00286040 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,6040)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186060 dicom:dicom_00186060 rdf:type owl:DatatypeProperty ; @@ -34559,17 +33895,17 @@ dicom:dicom_00186060 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6060)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209251 dicom:dicom_00209251 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "R-R Interval Time Nominal"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34581,7 +33917,6 @@ dicom:dicom_00209251 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540060 dicom:dicom_00540060 rdf:type owl:DatatypeProperty ; @@ -34594,17 +33929,17 @@ dicom:dicom_00540060 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0060)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189240 dicom:dicom_00189240 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "RF Echo Train Length"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34616,11 +33951,12 @@ dicom:dicom_00189240 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0028140F dicom:dicom_0028140F rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "RGB LUT Transfer Function"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34632,8 +33968,6 @@ dicom:dicom_0028140F rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_60xx1301 dicom:dicom_60xx1301 rdf:type owl:DatatypeProperty ; @@ -34646,13 +33980,11 @@ dicom:dicom_60xx1301 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(60xx,1301)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060039 dicom:dicom_30060039 rdf:type owl:DatatypeProperty ; @@ -34665,13 +33997,11 @@ dicom:dicom_30060039 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0039)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060028 dicom:dicom_30060028 rdf:type owl:DatatypeProperty ; @@ -34684,13 +34014,11 @@ dicom:dicom_30060028 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0028)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_3006002A dicom:dicom_3006002A rdf:type owl:DatatypeProperty ; @@ -34703,17 +34031,17 @@ dicom:dicom_3006002A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,002A)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300600B8 dicom:dicom_300600B8 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "ROI Elemental Composition Atomic Mass Fraction"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34725,11 +34053,12 @@ dicom:dicom_300600B8 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300600B7 dicom:dicom_300600B7 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "ROI Elemental Composition Atomic Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34741,11 +34070,12 @@ dicom:dicom_300600B7 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300600B6 dicom:dicom_300600B6 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "ROI Elemental Composition Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34757,7 +34087,6 @@ dicom:dicom_300600B6 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060036 dicom:dicom_30060036 rdf:type owl:DatatypeProperty ; @@ -34770,13 +34099,11 @@ dicom:dicom_30060036 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0036)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060038 dicom:dicom_30060038 rdf:type owl:DatatypeProperty ; @@ -34789,13 +34116,11 @@ dicom:dicom_30060038 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0038)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300600A6 dicom:dicom_300600A6 rdf:type owl:DatatypeProperty ; @@ -34808,13 +34133,11 @@ dicom:dicom_300600A6 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,00A6)"^^xsd:string ; - dicom:VR "PN"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_60xx1302 dicom:dicom_60xx1302 rdf:type owl:DatatypeProperty ; @@ -34827,13 +34150,11 @@ dicom:dicom_60xx1302 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(60xx,1302)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060026 dicom:dicom_30060026 rdf:type owl:DatatypeProperty ; @@ -34846,17 +34167,17 @@ dicom:dicom_30060026 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0026)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060022 dicom:dicom_30060022 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "ROI Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -34868,7 +34189,6 @@ dicom:dicom_30060022 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060088 dicom:dicom_30060088 rdf:type owl:DatatypeProperty ; @@ -34881,13 +34201,11 @@ dicom:dicom_30060088 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0088)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060085 dicom:dicom_30060085 rdf:type owl:DatatypeProperty ; @@ -34900,13 +34218,11 @@ dicom:dicom_30060085 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0085)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300600B0 dicom:dicom_300600B0 rdf:type owl:DatatypeProperty ; @@ -34919,13 +34235,11 @@ dicom:dicom_300600B0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,00B0)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300600B4 dicom:dicom_300600B4 rdf:type owl:DatatypeProperty ; @@ -34938,13 +34252,11 @@ dicom:dicom_300600B4 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,00B4)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300600B2 dicom:dicom_300600B2 rdf:type owl:DatatypeProperty ; @@ -34957,13 +34269,11 @@ dicom:dicom_300600B2 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,00B2)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_60xx1303 dicom:dicom_60xx1303 rdf:type owl:DatatypeProperty ; @@ -34976,13 +34286,11 @@ dicom:dicom_60xx1303 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(60xx,1303)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_3006002C dicom:dicom_3006002C rdf:type owl:DatatypeProperty ; @@ -34995,13 +34303,11 @@ dicom:dicom_3006002C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,002C)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00B8 dicom:dicom_300A00B8 rdf:type owl:DatatypeProperty ; @@ -35014,13 +34320,11 @@ dicom:dicom_300A00B8 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00B8)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30040010 dicom:dicom_30040010 rdf:type owl:DatatypeProperty ; @@ -35033,13 +34337,11 @@ dicom:dicom_30040010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3004,0010)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30020004 dicom:dicom_30020004 rdf:type owl:DatatypeProperty ; @@ -35052,13 +34354,11 @@ dicom:dicom_30020004 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3002,0004)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30020002 dicom:dicom_30020002 rdf:type owl:DatatypeProperty ; @@ -35071,13 +34371,11 @@ dicom:dicom_30020002 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3002,0002)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30020003 dicom:dicom_30020003 rdf:type owl:DatatypeProperty ; @@ -35090,13 +34388,11 @@ dicom:dicom_30020003 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3002,0003)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30020010 dicom:dicom_30020010 rdf:type owl:DatatypeProperty ; @@ -35109,14 +34405,11 @@ dicom:dicom_30020010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3002,0010)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_3002000C dicom:dicom_3002000C rdf:type owl:DatatypeProperty ; @@ -35129,13 +34422,11 @@ dicom:dicom_3002000C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3002,000C)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30020012 dicom:dicom_30020012 rdf:type owl:DatatypeProperty ; @@ -35144,17 +34435,15 @@ dicom:dicom_30020012 rdf:type owl:DatatypeProperty ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "The x and y coordinates (in mm) of the upper left hand corner of the image, in the IEC X-RAY IMAGE RECEPTOR coordinate system. This is the center of the first pixel transmitted. See ."^^xsd:string ; + obo:IAO_0000115 "The x and y coordinates (in mm) of the upper left hand corner of the image, in the IEC X-RAY IMAGE RECEPTOR coordinate system. This is the center of the first pixel transmitted. "^^xsd:string ; dicom:dicom_xxxx0065 "(3002,0012)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30020026 dicom:dicom_30020026 rdf:type owl:DatatypeProperty ; @@ -35167,13 +34456,11 @@ dicom:dicom_30020026 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3002,0026)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0006 dicom:dicom_300A0006 rdf:type owl:DatatypeProperty ; @@ -35186,13 +34473,11 @@ dicom:dicom_300A0006 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0006)"^^xsd:string ; - dicom:VR "DA"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0004 dicom:dicom_300A0004 rdf:type owl:DatatypeProperty ; @@ -35205,13 +34490,11 @@ dicom:dicom_300A0004 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0004)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A000C dicom:dicom_300A000C rdf:type owl:DatatypeProperty ; @@ -35224,13 +34507,11 @@ dicom:dicom_300A000C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,000C)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0002 dicom:dicom_300A0002 rdf:type owl:DatatypeProperty ; @@ -35243,13 +34524,11 @@ dicom:dicom_300A0002 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0002)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0003 dicom:dicom_300A0003 rdf:type owl:DatatypeProperty ; @@ -35262,13 +34541,11 @@ dicom:dicom_300A0003 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0003)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0055 dicom:dicom_300A0055 rdf:type owl:DatatypeProperty ; @@ -35281,13 +34558,11 @@ dicom:dicom_300A0055 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0055)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0007 dicom:dicom_300A0007 rdf:type owl:DatatypeProperty ; @@ -35300,13 +34575,11 @@ dicom:dicom_300A0007 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0007)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060086 dicom:dicom_30060086 rdf:type owl:DatatypeProperty ; @@ -35319,13 +34592,11 @@ dicom:dicom_30060086 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0086)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300600A4 dicom:dicom_300600A4 rdf:type owl:DatatypeProperty ; @@ -35338,13 +34609,11 @@ dicom:dicom_300600A4 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,00A4)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060080 dicom:dicom_30060080 rdf:type owl:DatatypeProperty ; @@ -35357,13 +34626,11 @@ dicom:dicom_30060080 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0080)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060033 dicom:dicom_30060033 rdf:type owl:DatatypeProperty ; @@ -35376,13 +34643,11 @@ dicom:dicom_30060033 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0033)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060014 dicom:dicom_30060014 rdf:type owl:DatatypeProperty ; @@ -35395,14 +34660,11 @@ dicom:dicom_30060014 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0014)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_30060030 dicom:dicom_30060030 rdf:type owl:DatatypeProperty ; @@ -35415,13 +34677,11 @@ dicom:dicom_30060030 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0030)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181142 dicom:dicom_00181142 rdf:type owl:DatatypeProperty ; @@ -35434,13 +34694,11 @@ dicom:dicom_00181142 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1142)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30020020 dicom:dicom_30020020 rdf:type owl:DatatypeProperty ; @@ -35453,13 +34711,11 @@ dicom:dicom_30020020 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3002,0020)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30020022 dicom:dicom_30020022 rdf:type owl:DatatypeProperty ; @@ -35472,13 +34728,11 @@ dicom:dicom_30020022 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3002,0022)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30020024 dicom:dicom_30020024 rdf:type owl:DatatypeProperty ; @@ -35491,13 +34745,11 @@ dicom:dicom_30020024 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3002,0024)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018115A dicom:dicom_0018115A rdf:type owl:DatatypeProperty ; @@ -35510,13 +34762,11 @@ dicom:dicom_0018115A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,115A)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181155 dicom:dicom_00181155 rdf:type owl:DatatypeProperty ; @@ -35529,13 +34779,11 @@ dicom:dicom_00181155 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1155)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00C6 dicom:dicom_300A00C6 rdf:type owl:DatatypeProperty ; @@ -35548,14 +34796,11 @@ dicom:dicom_300A00C6 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00C6)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00540300 dicom:dicom_00540300 rdf:type owl:DatatypeProperty ; @@ -35568,14 +34813,11 @@ dicom:dicom_00540300 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0300)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00181075 dicom:dicom_00181075 rdf:type owl:DatatypeProperty ; @@ -35588,13 +34830,11 @@ dicom:dicom_00181075 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1075)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181076 dicom:dicom_00181076 rdf:type owl:DatatypeProperty ; @@ -35607,13 +34847,11 @@ dicom:dicom_00181076 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1076)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181074 dicom:dicom_00181074 rdf:type owl:DatatypeProperty ; @@ -35626,17 +34864,17 @@ dicom:dicom_00181074 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1074)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00083012 dicom:dicom_00083012 rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Radiopharmaceutical Administration Event UID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -35648,12 +34886,12 @@ dicom:dicom_00083012 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00189729 dicom:dicom_00189729 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Radiopharmaceutical Agent Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -35665,7 +34903,6 @@ dicom:dicom_00189729 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540304 dicom:dicom_00540304 rdf:type owl:DatatypeProperty ; @@ -35678,13 +34915,11 @@ dicom:dicom_00540304 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0304)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540016 dicom:dicom_00540016 rdf:type owl:DatatypeProperty ; @@ -35697,14 +34932,11 @@ dicom:dicom_00540016 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0016)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00181070 dicom:dicom_00181070 rdf:type owl:DatatypeProperty ; @@ -35717,14 +34949,11 @@ dicom:dicom_00181070 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1070)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00181077 dicom:dicom_00181077 rdf:type owl:DatatypeProperty ; @@ -35737,14 +34966,11 @@ dicom:dicom_00181077 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1077)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00181072 dicom:dicom_00181072 rdf:type owl:DatatypeProperty ; @@ -35757,17 +34983,17 @@ dicom:dicom_00181072 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1072)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181079 dicom:dicom_00181079 rdf:type owl:DatatypeProperty ; + dicom:VR "DT"^^xsd:string ; + rdfs:label "Radiopharmaceutical Stop DateTime"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -35779,8 +35005,6 @@ dicom:dicom_00181079 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00181073 dicom:dicom_00181073 rdf:type owl:DatatypeProperty ; @@ -35793,18 +35017,17 @@ dicom:dicom_00181073 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1073)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00189737 dicom:dicom_00189737 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Radiopharmaceutical Usage Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -35816,7 +35039,6 @@ dicom:dicom_00189737 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181071 dicom:dicom_00181071 rdf:type owl:DatatypeProperty ; @@ -35829,14 +35051,11 @@ dicom:dicom_00181071 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1071)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00180031 dicom:dicom_00180031 rdf:type owl:DatatypeProperty ; @@ -35849,13 +35068,11 @@ dicom:dicom_00180031 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0031)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181712 dicom:dicom_00181712 rdf:type owl:DatatypeProperty ; @@ -35868,17 +35085,17 @@ dicom:dicom_00181712 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1712)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189441 dicom:dicom_00189441 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Radius of Circular Exposure Control Sensing Region"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -35890,11 +35107,12 @@ dicom:dicom_00189441 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181612 dicom:dicom_00181612 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Radius of Circular Shutter"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -35906,11 +35124,12 @@ dicom:dicom_00181612 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460075 dicom:dicom_00460075 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Radius of Curvature"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -35922,11 +35141,12 @@ dicom:dicom_00460075 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189765 dicom:dicom_00189765 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Randoms Corrected"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -35938,7 +35158,6 @@ dicom:dicom_00189765 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541100 dicom:dicom_00541100 rdf:type owl:DatatypeProperty ; @@ -35951,33 +35170,34 @@ dicom:dicom_00541100 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1100)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006864A0 dicom:dicom_006864A0 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Range of Freedom"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "Interval of freedom for this degree of freedom. See ."^^xsd:string ; + obo:IAO_0000115 "Interval of freedom for this degree of freedom. "^^xsd:string ; dicom:dicom_xxxx0065 "(0068,64A0)"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006864A0 dicom:dicom_006864A0 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Range of Freedom"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -35989,11 +35209,12 @@ dicom:dicom_006864A0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00520009 dicom:dicom_00520009 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Ranging Depth"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36005,11 +35226,12 @@ dicom:dicom_00520009 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A163 dicom:dicom_0040A163 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Rational Denominator Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36021,11 +35243,12 @@ dicom:dicom_0040A163 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A162 dicom:dicom_0040A162 rdf:type owl:DatatypeProperty ; + dicom:VR "SL"^^xsd:string ; + rdfs:label "Rational Numerator Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36037,7 +35260,6 @@ dicom:dicom_0040A162 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00409216 dicom:dicom_00409216 rdf:type owl:DatatypeProperty ; @@ -36050,13 +35272,11 @@ dicom:dicom_00409216 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,9216)"^^xsd:string ; - dicom:VR "US or SS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00409224 dicom:dicom_00409224 rdf:type owl:DatatypeProperty ; @@ -36069,13 +35289,11 @@ dicom:dicom_00409224 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,9224)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00409212 dicom:dicom_00409212 rdf:type owl:DatatypeProperty ; @@ -36088,13 +35306,11 @@ dicom:dicom_00409212 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,9212)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00409211 dicom:dicom_00409211 rdf:type owl:DatatypeProperty ; @@ -36107,13 +35323,11 @@ dicom:dicom_00409211 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,9211)"^^xsd:string ; - dicom:VR "US or SS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00409096 dicom:dicom_00409096 rdf:type owl:DatatypeProperty ; @@ -36126,13 +35340,11 @@ dicom:dicom_00409096 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,9096)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00409225 dicom:dicom_00409225 rdf:type owl:DatatypeProperty ; @@ -36145,17 +35357,17 @@ dicom:dicom_00409225 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,9225)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00401012 dicom:dicom_00401012 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Reason For Performed Procedure Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36167,7 +35379,6 @@ dicom:dicom_00401012 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040100A dicom:dicom_0040100A rdf:type owl:DatatypeProperty ; @@ -36180,17 +35391,17 @@ dicom:dicom_0040100A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,100A)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_04000565 dicom:dicom_04000565 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Reason for the Attribute Modification"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36202,7 +35413,6 @@ dicom:dicom_04000565 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00401002 dicom:dicom_00401002 rdf:type owl:DatatypeProperty ; @@ -36215,13 +35425,11 @@ dicom:dicom_00401002 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,1002)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189041 dicom:dicom_00189041 rdf:type owl:DatatypeProperty ; @@ -36234,13 +35442,11 @@ dicom:dicom_00189041 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9041)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181250 dicom:dicom_00181250 rdf:type owl:DatatypeProperty ; @@ -36253,17 +35459,17 @@ dicom:dicom_00181250 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1250)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189043 dicom:dicom_00189043 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Receive Coil Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36275,11 +35481,12 @@ dicom:dicom_00189043 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280302 dicom:dicom_00280302 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Recognizable Visual Features"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36291,12 +35498,12 @@ dicom:dicom_00280302 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00480015 dicom:dicom_00480015 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Recommended Absent Pixel CIELab Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36308,11 +35515,12 @@ dicom:dicom_00480015 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701A03 dicom:dicom_00701A03 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Recommended Animation Rate"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36324,11 +35532,12 @@ dicom:dicom_00701A03 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00820035 dicom:dicom_00820035 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Recommended Default Value Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36340,11 +35549,12 @@ dicom:dicom_00820035 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660103 dicom:dicom_00660103 rdf:type owl:DatatypeProperty ; + dicom:VR "OW"^^xsd:string ; + rdfs:label "Recommended Display CIELab Value List"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36356,11 +35566,12 @@ dicom:dicom_00660103 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0062000D dicom:dicom_0062000D rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Recommended Display CIELab Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36372,12 +35583,12 @@ dicom:dicom_0062000D rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00089459 dicom:dicom_00089459 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Recommended Display Frame Rate in Float"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36389,12 +35600,12 @@ dicom:dicom_00089459 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_0062000C dicom:dicom_0062000C rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Recommended Display Grayscale Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36406,11 +35617,12 @@ dicom:dicom_0062000C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660038 dicom:dicom_00660038 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Recommended Line Thickness"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36422,11 +35634,12 @@ dicom:dicom_00660038 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660037 dicom:dicom_00660037 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Recommended Point Radius"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36438,11 +35651,12 @@ dicom:dicom_00660037 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0066000C dicom:dicom_0066000C rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Recommended Presentation Opacity"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36454,11 +35668,12 @@ dicom:dicom_0066000C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0066000D dicom:dicom_0066000D rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Recommended Presentation Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36470,11 +35685,12 @@ dicom:dicom_0066000D rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686346 dicom:dicom_00686346 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Recommended Rotation Point"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36486,7 +35702,6 @@ dicom:dicom_00686346 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281090 dicom:dicom_00281090 rdf:type owl:DatatypeProperty ; @@ -36499,17 +35714,17 @@ dicom:dicom_00281090 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,1090)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018993D dicom:dicom_0018993D rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Reconstruction Algorithm Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36521,11 +35736,12 @@ dicom:dicom_0018993D rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189315 dicom:dicom_00189315 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Reconstruction Algorithm"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36537,11 +35753,12 @@ dicom:dicom_00189315 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189319 dicom:dicom_00189319 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Reconstruction Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36553,11 +35770,12 @@ dicom:dicom_00189319 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189531 dicom:dicom_00189531 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Reconstruction Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36569,7 +35787,6 @@ dicom:dicom_00189531 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181100 dicom:dicom_00181100 rdf:type owl:DatatypeProperty ; @@ -36582,17 +35799,17 @@ dicom:dicom_00181100 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1100)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018993C dicom:dicom_0018993C rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Reconstruction End Location Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36604,11 +35821,12 @@ dicom:dicom_0018993C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189317 dicom:dicom_00189317 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Reconstruction Field of View"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36620,11 +35838,12 @@ dicom:dicom_00189317 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209536 dicom:dicom_00209536 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Reconstruction Index"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36636,11 +35855,12 @@ dicom:dicom_00209536 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541103 dicom:dicom_00541103 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Reconstruction Method"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36652,11 +35872,12 @@ dicom:dicom_00541103 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189322 dicom:dicom_00189322 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Reconstruction Pixel Spacing"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36668,11 +35889,12 @@ dicom:dicom_00189322 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189934 dicom:dicom_00189934 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Reconstruction Protocol Element Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36684,11 +35906,12 @@ dicom:dicom_00189934 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189933 dicom:dicom_00189933 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Reconstruction Protocol Element Specification Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36700,11 +35923,12 @@ dicom:dicom_00189933 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018993B dicom:dicom_0018993B rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Reconstruction Start Location Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36716,11 +35940,12 @@ dicom:dicom_0018993B rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189318 dicom:dicom_00189318 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Reconstruction Target Center (Patient)"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36732,11 +35957,12 @@ dicom:dicom_00189318 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018993E dicom:dicom_0018993E rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Reconstruction Target Center Location Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36748,11 +35974,12 @@ dicom:dicom_0018993E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189756 dicom:dicom_00189756 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Reconstruction Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36764,11 +35991,12 @@ dicom:dicom_00189756 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00041410 dicom:dicom_00041410 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Record In-use Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -36780,7 +36008,6 @@ dicom:dicom_00041410 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300800D0 dicom:dicom_300800D0 rdf:type owl:DatatypeProperty ; @@ -36793,13 +36020,11 @@ dicom:dicom_300800D0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,00D0)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080120 dicom:dicom_30080120 rdf:type owl:DatatypeProperty ; @@ -36812,13 +36037,11 @@ dicom:dicom_30080120 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0120)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080130 dicom:dicom_30080130 rdf:type owl:DatatypeProperty ; @@ -36831,13 +36054,11 @@ dicom:dicom_30080130 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0130)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080150 dicom:dicom_30080150 rdf:type owl:DatatypeProperty ; @@ -36850,13 +36071,11 @@ dicom:dicom_30080150 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0150)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300800C0 dicom:dicom_300800C0 rdf:type owl:DatatypeProperty ; @@ -36869,13 +36088,11 @@ dicom:dicom_300800C0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,00C0)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080140 dicom:dicom_30080140 rdf:type owl:DatatypeProperty ; @@ -36888,13 +36105,11 @@ dicom:dicom_30080140 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0140)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080100 dicom:dicom_30080100 rdf:type owl:DatatypeProperty ; @@ -36907,13 +36122,11 @@ dicom:dicom_30080100 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0100)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300800B0 dicom:dicom_300800B0 rdf:type owl:DatatypeProperty ; @@ -36926,13 +36139,11 @@ dicom:dicom_300800B0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,00B0)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181156 dicom:dicom_00181156 rdf:type owl:DatatypeProperty ; @@ -36945,13 +36156,11 @@ dicom:dicom_00181156 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1156)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189034 dicom:dicom_00189034 rdf:type owl:DatatypeProperty ; @@ -36964,13 +36173,11 @@ dicom:dicom_00189034 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9034)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281201 dicom:dicom_00281201 rdf:type owl:DatatypeProperty ; @@ -36983,14 +36190,11 @@ dicom:dicom_00281201 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,1201)"^^xsd:string ; - dicom:VR "OW"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00281101 dicom:dicom_00281101 rdf:type owl:DatatypeProperty ; @@ -37003,13 +36207,11 @@ dicom:dicom_00281101 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,1101)"^^xsd:string ; - dicom:VR "US or SS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A022A dicom:dicom_300A022A rdf:type owl:DatatypeProperty ; @@ -37022,17 +36224,17 @@ dicom:dicom_300A022A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,022A)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189902 dicom:dicom_00189902 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Reference Basis Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -37044,11 +36246,12 @@ dicom:dicom_00189902 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220032 dicom:dicom_00220032 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Reference Coordinates"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -37060,11 +36263,12 @@ dicom:dicom_00220032 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720218 dicom:dicom_00720218 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Reference Display Sets"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -37076,11 +36280,12 @@ dicom:dicom_00720218 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189903 dicom:dicom_00189903 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Reference Geometry Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -37092,7 +36297,6 @@ dicom:dicom_00189903 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00C8 dicom:dicom_300A00C8 rdf:type owl:DatatypeProperty ; @@ -37105,17 +36309,17 @@ dicom:dicom_300A00C8 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00C8)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189901 dicom:dicom_00189901 rdf:type owl:DatatypeProperty ; + dicom:VR "UT"^^xsd:string ; + rdfs:label "Reference Location Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -37127,11 +36331,12 @@ dicom:dicom_00189901 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189900 dicom:dicom_00189900 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Reference Location Label"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -37143,7 +36348,6 @@ dicom:dicom_00189900 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186028 dicom:dicom_00186028 rdf:type owl:DatatypeProperty ; @@ -37156,13 +36360,11 @@ dicom:dicom_00186028 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6028)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018602A dicom:dicom_0018602A rdf:type owl:DatatypeProperty ; @@ -37175,13 +36377,11 @@ dicom:dicom_0018602A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,602A)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186020 dicom:dicom_00186020 rdf:type owl:DatatypeProperty ; @@ -37194,13 +36394,11 @@ dicom:dicom_00186020 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6020)"^^xsd:string ; - dicom:VR "SL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186022 dicom:dicom_00186022 rdf:type owl:DatatypeProperty ; @@ -37213,13 +36411,11 @@ dicom:dicom_00186022 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6022)"^^xsd:string ; - dicom:VR "SL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300C0006 dicom:dicom_300C0006 rdf:type owl:DatatypeProperty ; @@ -37232,14 +36428,11 @@ dicom:dicom_300C0006 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,0006)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_300C0004 dicom:dicom_300C0004 rdf:type owl:DatatypeProperty ; @@ -37252,14 +36445,11 @@ dicom:dicom_300C0004 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,0004)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_300C00E0 dicom:dicom_300C00E0 rdf:type owl:DatatypeProperty ; @@ -37272,13 +36462,11 @@ dicom:dicom_300C00E0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,00E0)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300C00B0 dicom:dicom_300C00B0 rdf:type owl:DatatypeProperty ; @@ -37291,13 +36479,11 @@ dicom:dicom_300C00B0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,00B0)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080122 dicom:dicom_30080122 rdf:type owl:DatatypeProperty ; @@ -37310,14 +36496,11 @@ dicom:dicom_30080122 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0122)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_300C000C dicom:dicom_300C000C rdf:type owl:DatatypeProperty ; @@ -37330,13 +36513,11 @@ dicom:dicom_300C000C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,000C)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300C000A dicom:dicom_300C000A rdf:type owl:DatatypeProperty ; @@ -37349,13 +36530,11 @@ dicom:dicom_300C000A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,000A)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080092 dicom:dicom_30080092 rdf:type owl:DatatypeProperty ; @@ -37368,13 +36547,11 @@ dicom:dicom_30080092 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0092)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080090 dicom:dicom_30080090 rdf:type owl:DatatypeProperty ; @@ -37387,17 +36564,17 @@ dicom:dicom_30080090 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0090)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080152 dicom:dicom_30080152 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Referenced Channel Shield Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -37409,11 +36586,12 @@ dicom:dicom_30080152 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280304 dicom:dicom_00280304 rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Referenced Color Palette Instance UID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -37425,11 +36603,12 @@ dicom:dicom_00280304 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00820005 dicom:dicom_00820005 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Referenced Comparison SOP Instance Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -37441,7 +36620,6 @@ dicom:dicom_00820005 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300C00D0 dicom:dicom_300C00D0 rdf:type owl:DatatypeProperty ; @@ -37454,13 +36632,11 @@ dicom:dicom_300C00D0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,00D0)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040DB73 dicom:dicom_0040DB73 rdf:type owl:DatatypeProperty ; @@ -37473,17 +36649,17 @@ dicom:dicom_0040DB73 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,DB73)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701904 dicom:dicom_00701904 rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Referenced Content Item"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -37495,8 +36671,6 @@ dicom:dicom_00701904 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_300C00F0 dicom:dicom_300C00F0 rdf:type owl:DatatypeProperty ; @@ -37509,17 +36683,17 @@ dicom:dicom_300C00F0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,00F0)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300C00F2 dicom:dicom_300C00F2 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Referenced Control Point Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -37531,7 +36705,6 @@ dicom:dicom_300C00F2 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A13A dicom:dicom_0040A13A rdf:type owl:DatatypeProperty ; @@ -37544,17 +36717,17 @@ dicom:dicom_0040A13A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A13A)"^^xsd:string ; - dicom:VR "DT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018990C dicom:dicom_0018990C rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Referenced Defined Protocol Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -37566,11 +36739,12 @@ dicom:dicom_0018990C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_04000402 dicom:dicom_04000402 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Referenced Digital Signature Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -37582,7 +36756,6 @@ dicom:dicom_04000402 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300C0051 dicom:dicom_300C0051 rdf:type owl:DatatypeProperty ; @@ -37595,13 +36768,11 @@ dicom:dicom_300C0051 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,0051)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300C0050 dicom:dicom_300C0050 rdf:type owl:DatatypeProperty ; @@ -37614,13 +36785,11 @@ dicom:dicom_300C0050 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,0050)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300C0080 dicom:dicom_300C0080 rdf:type owl:DatatypeProperty ; @@ -37633,17 +36802,17 @@ dicom:dicom_300C0080 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,0080)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00041500 dicom:dicom_00041500 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Referenced File ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -37655,11 +36824,12 @@ dicom:dicom_00041500 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720427 dicom:dicom_00720427 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Referenced First Frame Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -37671,7 +36841,6 @@ dicom:dicom_00720427 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300C0022 dicom:dicom_300C0022 rdf:type owl:DatatypeProperty ; @@ -37684,13 +36853,11 @@ dicom:dicom_300C0022 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,0022)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300C0020 dicom:dicom_300C0020 rdf:type owl:DatatypeProperty ; @@ -37703,17 +36870,17 @@ dicom:dicom_300C0020 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,0020)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080223 dicom:dicom_30080223 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Referenced Fraction Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -37725,7 +36892,6 @@ dicom:dicom_30080223 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081160 dicom:dicom_00081160 rdf:type owl:DatatypeProperty ; @@ -37738,17 +36904,17 @@ dicom:dicom_00081160 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1160)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A136 dicom:dicom_0040A136 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Referenced Frame Numbers"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -37760,7 +36926,6 @@ dicom:dicom_0040A136 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060010 dicom:dicom_30060010 rdf:type owl:DatatypeProperty ; @@ -37773,13 +36938,11 @@ dicom:dicom_30060010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0010)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060024 dicom:dicom_30060024 rdf:type owl:DatatypeProperty ; @@ -37792,17 +36955,17 @@ dicom:dicom_30060024 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0024)"^^xsd:string ; - dicom:VR "UI"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686440 dicom:dicom_00686440 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Referenced HPGL Document ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -37814,7 +36977,6 @@ dicom:dicom_00686440 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00089092 dicom:dicom_00089092 rdf:type owl:DatatypeProperty ; @@ -37827,17 +36989,17 @@ dicom:dicom_00089092 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,9092)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480200 dicom:dicom_00480200 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Referenced Image Navigation Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -37849,11 +37011,12 @@ dicom:dicom_00480200 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00409094 dicom:dicom_00409094 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Referenced Image Real World Value Mapping Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -37865,7 +37028,6 @@ dicom:dicom_00409094 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081140 dicom:dicom_00081140 rdf:type owl:DatatypeProperty ; @@ -37878,18 +37040,17 @@ dicom:dicom_00081140 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1140)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_007800B6 dicom:dicom_007800B6 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Referenced Implant Template Group Member ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -37901,7 +37062,6 @@ dicom:dicom_007800B6 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0008114A dicom:dicom_0008114A rdf:type owl:DatatypeProperty ; @@ -37914,15 +37074,11 @@ dicom:dicom_0008114A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,114A)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - - - ### http://purl.org/nidash/dicom#dicom_30080082 dicom:dicom_30080082 rdf:type owl:DatatypeProperty ; @@ -37935,13 +37091,11 @@ dicom:dicom_30080082 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0082)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080080 dicom:dicom_30080080 rdf:type owl:DatatypeProperty ; @@ -37954,15 +37108,17 @@ dicom:dicom_30080080 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0080)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . + ### http://purl.org/nidash/dicom#dicom_00221330 dicom:dicom_00221330 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Referenced Ophthalmic Axial Length Measurement QC Image Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -37974,11 +37130,12 @@ dicom:dicom_00221330 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00101100 dicom:dicom_00101100 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Referenced Patient Photo Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -37990,7 +37147,6 @@ dicom:dicom_00101100 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081120 dicom:dicom_00081120 rdf:type owl:DatatypeProperty ; @@ -38003,14 +37159,11 @@ dicom:dicom_00081120 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1120)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_300C006A dicom:dicom_300C006A rdf:type owl:DatatypeProperty ; @@ -38023,13 +37176,11 @@ dicom:dicom_300C006A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,006A)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081111 dicom:dicom_00081111 rdf:type owl:DatatypeProperty ; @@ -38042,17 +37193,17 @@ dicom:dicom_00081111 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1111)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018990D dicom:dicom_0018990D rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Referenced Performed Protocol Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38064,7 +37215,6 @@ dicom:dicom_0018990D rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00089237 dicom:dicom_00089237 rdf:type owl:DatatypeProperty ; @@ -38077,14 +37227,11 @@ dicom:dicom_00089237 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,9237)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_30060084 dicom:dicom_30060084 rdf:type owl:DatatypeProperty ; @@ -38097,13 +37244,11 @@ dicom:dicom_30060084 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0084)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300C0002 dicom:dicom_300C0002 rdf:type owl:DatatypeProperty ; @@ -38116,13 +37261,11 @@ dicom:dicom_300C0002 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,0002)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00089121 dicom:dicom_00089121 rdf:type owl:DatatypeProperty ; @@ -38135,17 +37278,17 @@ dicom:dicom_00089121 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,9121)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0008114B dicom:dicom_0008114B rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Referenced Real World Value Mapping Instance Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38157,7 +37300,6 @@ dicom:dicom_0008114B rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300C0007 dicom:dicom_300C0007 rdf:type owl:DatatypeProperty ; @@ -38170,13 +37312,11 @@ dicom:dicom_300C0007 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,0007)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300C0042 dicom:dicom_300C0042 rdf:type owl:DatatypeProperty ; @@ -38189,17 +37329,17 @@ dicom:dicom_300C0042 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,0042)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460145 dicom:dicom_00460145 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Referenced Refractive Measurements Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38211,11 +37351,12 @@ dicom:dicom_00460145 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0004151A dicom:dicom_0004151A rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Referenced Related General SOP Class UID in File"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38227,7 +37368,6 @@ dicom:dicom_0004151A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A370 dicom:dicom_0040A370 rdf:type owl:DatatypeProperty ; @@ -38240,7 +37380,6 @@ dicom:dicom_0040A370 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A370)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . @@ -38258,17 +37397,17 @@ dicom:dicom_00081150 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1150)"^^xsd:string ; - dicom:VR "UI"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_04000403 dicom:dicom_04000403 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Referenced SOP Instance MAC Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38280,11 +37419,12 @@ dicom:dicom_04000403 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00041511 dicom:dicom_00041511 rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Referenced SOP Instance UID in File"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38296,7 +37436,6 @@ dicom:dicom_00041511 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081155 dicom:dicom_00081155 rdf:type owl:DatatypeProperty ; @@ -38309,14 +37448,11 @@ dicom:dicom_00081155 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1155)"^^xsd:string ; - dicom:VR "UI"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00081199 dicom:dicom_00081199 rdf:type owl:DatatypeProperty ; @@ -38329,13 +37465,11 @@ dicom:dicom_00081199 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1199)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A132 dicom:dicom_0040A132 rdf:type owl:DatatypeProperty ; @@ -38348,18 +37482,17 @@ dicom:dicom_0040A132 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A132)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_0062000B dicom:dicom_0062000B rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Referenced Segment Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38371,8 +37504,6 @@ dicom:dicom_0062000B rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00081115 dicom:dicom_00081115 rdf:type owl:DatatypeProperty ; @@ -38385,17 +37516,17 @@ dicom:dicom_00081115 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1115)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0401 dicom:dicom_300A0401 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Referenced Setup Image Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38407,7 +37538,6 @@ dicom:dicom_300A0401 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080142 dicom:dicom_30080142 rdf:type owl:DatatypeProperty ; @@ -38420,13 +37550,11 @@ dicom:dicom_30080142 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0142)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300C000E dicom:dicom_300C000E rdf:type owl:DatatypeProperty ; @@ -38439,18 +37567,17 @@ dicom:dicom_300C000E rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,000E)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00700404 dicom:dicom_00700404 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Referenced Spatial Registration Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38462,11 +37589,12 @@ dicom:dicom_00700404 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300C00F4 dicom:dicom_300C00F4 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Referenced Start Control Point Index"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38478,11 +37606,12 @@ dicom:dicom_300C00F4 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081134 dicom:dicom_00081134 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Referenced Stereometric Instance Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38494,11 +37623,12 @@ dicom:dicom_00081134 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300C00F6 dicom:dicom_300C00F6 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Referenced Stop Control Point Index"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38510,7 +37640,6 @@ dicom:dicom_300C00F6 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300C0060 dicom:dicom_300C0060 rdf:type owl:DatatypeProperty ; @@ -38523,13 +37652,11 @@ dicom:dicom_300C0060 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,0060)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300C0060 dicom:dicom_300C0060 rdf:type owl:DatatypeProperty ; @@ -38542,17 +37669,17 @@ dicom:dicom_300C0060 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,0060)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701903 dicom:dicom_00701903 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Referenced Structured Context Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38564,7 +37691,6 @@ dicom:dicom_00701903 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081110 dicom:dicom_00081110 rdf:type owl:DatatypeProperty ; @@ -38577,17 +37703,17 @@ dicom:dicom_00081110 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1110)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00800013 dicom:dicom_00800013 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Referenced Surface Data Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38599,11 +37725,12 @@ dicom:dicom_00800013 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0066002C dicom:dicom_0066002C rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Referenced Surface Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38615,11 +37742,12 @@ dicom:dicom_0066002C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0066002B dicom:dicom_0066002B rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Referenced Surface Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38631,11 +37759,12 @@ dicom:dicom_0066002B rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00800012 dicom:dicom_00800012 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Referenced Texture Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38647,7 +37776,6 @@ dicom:dicom_00800012 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A138 dicom:dicom_0040A138 rdf:type owl:DatatypeProperty ; @@ -38660,13 +37788,11 @@ dicom:dicom_0040A138 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A138)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300C00A0 dicom:dicom_300C00A0 rdf:type owl:DatatypeProperty ; @@ -38679,17 +37805,17 @@ dicom:dicom_300C00A0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,00A0)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00041512 dicom:dicom_00041512 rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Referenced Transfer Syntax UID in File"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38701,7 +37827,6 @@ dicom:dicom_00041512 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080030 dicom:dicom_30080030 rdf:type owl:DatatypeProperty ; @@ -38714,13 +37839,11 @@ dicom:dicom_30080030 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0030)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300C0040 dicom:dicom_300C0040 rdf:type owl:DatatypeProperty ; @@ -38733,14 +37856,11 @@ dicom:dicom_300C0040 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,0040)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_0040A0B0 dicom:dicom_0040A0B0 rdf:type owl:DatatypeProperty ; @@ -38753,13 +37873,11 @@ dicom:dicom_0040A0B0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A0B0)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0008113A dicom:dicom_0008113A rdf:type owl:DatatypeProperty ; @@ -38772,13 +37890,11 @@ dicom:dicom_0008113A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,113A)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300C00C0 dicom:dicom_300C00C0 rdf:type owl:DatatypeProperty ; @@ -38791,14 +37907,11 @@ dicom:dicom_300C00C0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,00C0)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00080096 dicom:dicom_00080096 rdf:type owl:DatatypeProperty ; @@ -38811,13 +37924,11 @@ dicom:dicom_00080096 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0096)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080090 dicom:dicom_00080090 rdf:type owl:DatatypeProperty ; @@ -38830,13 +37941,11 @@ dicom:dicom_00080090 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0090)"^^xsd:string ; - dicom:VR "PN"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_20100160 dicom:dicom_20100160 rdf:type owl:DatatypeProperty ; @@ -38849,17 +37958,17 @@ dicom:dicom_20100160 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(2010,0160)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720514 dicom:dicom_00720514 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Reformatting Interval"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38871,11 +37980,12 @@ dicom:dicom_00720514 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720516 dicom:dicom_00720516 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Reformatting Operation Initial View Direction"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38887,11 +37997,12 @@ dicom:dicom_00720516 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720510 dicom:dicom_00720510 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Reformatting Operation Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38903,11 +38014,12 @@ dicom:dicom_00720510 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720512 dicom:dicom_00720512 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Reformatting Thickness"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38919,11 +38031,12 @@ dicom:dicom_00720512 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221103 dicom:dicom_00221103 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Refractive Error Before Refractive Surgery Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38935,11 +38048,12 @@ dicom:dicom_00221103 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0052003A dicom:dicom_0052003A rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Refractive Index Applied"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38951,11 +38065,12 @@ dicom:dicom_0052003A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240112 dicom:dicom_00240112 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Refractive Parameters Used on Patient Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38967,11 +38082,12 @@ dicom:dicom_00240112 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460251 dicom:dicom_00460251 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Refractive Power"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38983,11 +38099,12 @@ dicom:dicom_00460251 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221039 dicom:dicom_00221039 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Refractive Procedure Occurred"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -38999,7 +38116,6 @@ dicom:dicom_00221039 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0022001B dicom:dicom_0022001B rdf:type owl:DatatypeProperty ; @@ -39012,13 +38128,11 @@ dicom:dicom_0022001B rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,001B)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0022001B dicom:dicom_0022001B rdf:type owl:DatatypeProperty ; @@ -39031,17 +38145,17 @@ dicom:dicom_0022001B rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,001B)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221040 dicom:dicom_00221040 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Refractive Surgery Type Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -39053,7 +38167,6 @@ dicom:dicom_00221040 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186014 dicom:dicom_00186014 rdf:type owl:DatatypeProperty ; @@ -39066,13 +38179,11 @@ dicom:dicom_00186014 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6014)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186016 dicom:dicom_00186016 rdf:type owl:DatatypeProperty ; @@ -39085,13 +38196,11 @@ dicom:dicom_00186016 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6016)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018601C dicom:dicom_0018601C rdf:type owl:DatatypeProperty ; @@ -39104,13 +38213,11 @@ dicom:dicom_0018601C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,601C)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018601E dicom:dicom_0018601E rdf:type owl:DatatypeProperty ; @@ -39123,13 +38230,11 @@ dicom:dicom_0018601E rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,601E)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186018 dicom:dicom_00186018 rdf:type owl:DatatypeProperty ; @@ -39142,13 +38247,11 @@ dicom:dicom_00186018 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6018)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018601A dicom:dicom_0018601A rdf:type owl:DatatypeProperty ; @@ -39161,17 +38264,17 @@ dicom:dicom_0018601A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,601A)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00289502 dicom:dicom_00289502 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Region Pixel Shift Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -39183,7 +38286,6 @@ dicom:dicom_00289502 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186012 dicom:dicom_00186012 rdf:type owl:DatatypeProperty ; @@ -39196,17 +38298,17 @@ dicom:dicom_00186012 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6012)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221468 dicom:dicom_00221468 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Registered Localizer Bottom Right Hand Corner"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -39218,11 +38320,12 @@ dicom:dicom_00221468 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221467 dicom:dicom_00221467 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Registered Localizer Top Left Hand Corner"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -39234,11 +38337,12 @@ dicom:dicom_00221467 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221466 dicom:dicom_00221466 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Registered Localizer Units"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -39250,11 +38354,12 @@ dicom:dicom_00221466 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00800003 dicom:dicom_00800003 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Registration Method Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -39266,7 +38371,6 @@ dicom:dicom_00800003 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700308 dicom:dicom_00700308 rdf:type owl:DatatypeProperty ; @@ -39279,13 +38383,11 @@ dicom:dicom_00700308 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0308)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0070030D dicom:dicom_0070030D rdf:type owl:DatatypeProperty ; @@ -39298,17 +38400,17 @@ dicom:dicom_0070030D rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,030D)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221465 dicom:dicom_00221465 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Registration to Localizer Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -39320,7 +38422,6 @@ dicom:dicom_00221465 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0008001A dicom:dicom_0008001A rdf:type owl:DatatypeProperty ; @@ -39333,13 +38434,11 @@ dicom:dicom_0008001A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,001A)"^^xsd:string ; - dicom:VR "UI"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300600A0 dicom:dicom_300600A0 rdf:type owl:DatatypeProperty ; @@ -39352,13 +38451,11 @@ dicom:dicom_300600A0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,00A0)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081250 dicom:dicom_00081250 rdf:type owl:DatatypeProperty ; @@ -39371,13 +38468,11 @@ dicom:dicom_00081250 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1250)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A010 dicom:dicom_0040A010 rdf:type owl:DatatypeProperty ; @@ -39390,17 +38485,17 @@ dicom:dicom_0040A010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A010)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460252 dicom:dicom_00460252 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Relative Elevation"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -39412,7 +38507,6 @@ dicom:dicom_00460252 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0022001D dicom:dicom_0022001D rdf:type owl:DatatypeProperty ; @@ -39425,17 +38519,17 @@ dicom:dicom_0022001D rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,001D)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700403 dicom:dicom_00700403 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Relative Opacity"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -39447,11 +38541,12 @@ dicom:dicom_00700403 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0072003A dicom:dicom_0072003A rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Relative Time Units"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -39463,11 +38558,12 @@ dicom:dicom_0072003A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720038 dicom:dicom_00720038 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Relative Time"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -39479,11 +38575,12 @@ dicom:dicom_00720038 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181405 dicom:dicom_00181405 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Relative X-Ray Exposure"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -39495,11 +38592,12 @@ dicom:dicom_00181405 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221472 dicom:dicom_00221472 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Relevant OPT Attributes Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -39511,11 +38609,12 @@ dicom:dicom_00221472 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701104 dicom:dicom_00701104 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Rendered Image Reference Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -39527,7 +38626,6 @@ dicom:dicom_00701104 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A007A dicom:dicom_300A007A rdf:type owl:DatatypeProperty ; @@ -39540,13 +38638,11 @@ dicom:dicom_300A007A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,007A)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180080 dicom:dicom_00180080 rdf:type owl:DatatypeProperty ; @@ -39559,17 +38655,17 @@ dicom:dicom_00180080 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0080)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00760008 dicom:dicom_00760008 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Replaced Implant Assembly Template Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -39581,11 +38677,12 @@ dicom:dicom_00760008 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00780026 dicom:dicom_00780026 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Replaced Implant Template Group Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -39597,11 +38694,12 @@ dicom:dicom_00780026 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686222 dicom:dicom_00686222 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Replaced Implant Template Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -39613,7 +38711,6 @@ dicom:dicom_00686222 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_3002000A dicom:dicom_3002000A rdf:type owl:DatatypeProperty ; @@ -39626,17 +38723,17 @@ dicom:dicom_3002000A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3002,000A)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040E030 dicom:dicom_0040E030 rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Repository Unique ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -39648,7 +38745,6 @@ dicom:dicom_0040E030 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00286010 dicom:dicom_00286010 rdf:type owl:DatatypeProperty ; @@ -39661,13 +38757,11 @@ dicom:dicom_00286010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,6010)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541004 dicom:dicom_00541004 rdf:type owl:DatatypeProperty ; @@ -39680,13 +38774,11 @@ dicom:dicom_00541004 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1004)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400275 dicom:dicom_00400275 rdf:type owl:DatatypeProperty ; @@ -39699,13 +38791,11 @@ dicom:dicom_00400275 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,0275)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00321064 dicom:dicom_00321064 rdf:type owl:DatatypeProperty ; @@ -39718,13 +38808,11 @@ dicom:dicom_00321064 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0032,1064)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00321060 dicom:dicom_00321060 rdf:type owl:DatatypeProperty ; @@ -39737,13 +38825,11 @@ dicom:dicom_00321060 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0032,1060)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00401001 dicom:dicom_00401001 rdf:type owl:DatatypeProperty ; @@ -39756,17 +38842,17 @@ dicom:dicom_00401001 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,1001)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189937 dicom:dicom_00189937 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Requested Series Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -39778,12 +38864,12 @@ dicom:dicom_00189937 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00321034 dicom:dicom_00321034 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Requesting Service Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -39795,7 +38881,6 @@ dicom:dicom_00321034 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281052 dicom:dicom_00281052 rdf:type owl:DatatypeProperty ; @@ -39808,13 +38893,11 @@ dicom:dicom_00281052 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,1052)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281053 dicom:dicom_00281053 rdf:type owl:DatatypeProperty ; @@ -39827,15 +38910,11 @@ dicom:dicom_00281053 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,1053)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - - ### http://purl.org/nidash/dicom#dicom_00281054 dicom:dicom_00281054 rdf:type owl:DatatypeProperty ; @@ -39848,14 +38927,11 @@ dicom:dicom_00281054 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,1054)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00540017 dicom:dicom_00540017 rdf:type owl:DatatypeProperty ; @@ -39868,13 +38944,11 @@ dicom:dicom_00540017 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0017)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189100 dicom:dicom_00189100 rdf:type owl:DatatypeProperty ; @@ -39887,17 +38961,17 @@ dicom:dicom_00189100 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9100)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00380102 dicom:dicom_00380102 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Resource Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -39909,7 +38983,6 @@ dicom:dicom_00380102 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189214 dicom:dicom_00189214 rdf:type owl:DatatypeProperty ; @@ -39922,17 +38995,17 @@ dicom:dicom_00189214 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9214)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209254 dicom:dicom_00209254 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Respiratory Interval Time"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -39944,11 +39017,12 @@ dicom:dicom_00209254 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189185 dicom:dicom_00189185 rdf:type owl:DatatypeProperty ; + dicom:VR "ST"^^xsd:string ; + rdfs:label "Respiratory Motion Compensation Technique Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -39960,7 +39034,6 @@ dicom:dicom_00189185 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189170 dicom:dicom_00189170 rdf:type owl:DatatypeProperty ; @@ -39973,17 +39046,17 @@ dicom:dicom_00189170 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9170)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189186 dicom:dicom_00189186 rdf:type owl:DatatypeProperty ; + dicom:VR "SH"^^xsd:string ; + rdfs:label "Respiratory Signal Source ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -39995,7 +39068,6 @@ dicom:dicom_00189186 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189171 dicom:dicom_00189171 rdf:type owl:DatatypeProperty ; @@ -40008,17 +39080,17 @@ dicom:dicom_00189171 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9171)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209253 dicom:dicom_00209253 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Respiratory Synchronization Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40030,11 +39102,12 @@ dicom:dicom_00209253 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209256 dicom:dicom_00209256 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Respiratory Trigger Delay Threshold"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40046,11 +39119,12 @@ dicom:dicom_00209256 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209250 dicom:dicom_00209250 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Respiratory Trigger Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40062,11 +39136,12 @@ dicom:dicom_00209250 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080220 dicom:dicom_00080220 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Responsible Group Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40078,11 +39153,12 @@ dicom:dicom_00080220 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00102299 dicom:dicom_00102299 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Responsible Organization"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40094,11 +39170,12 @@ dicom:dicom_00102299 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00102298 dicom:dicom_00102298 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Responsible Person Role"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40110,11 +39187,12 @@ dicom:dicom_00102298 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00102297 dicom:dicom_00102297 rdf:type owl:DatatypeProperty ; + dicom:VR "PN"^^xsd:string ; + rdfs:label "Responsible Person"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40126,11 +39204,12 @@ dicom:dicom_00102297 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240064 dicom:dicom_00240064 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Results Normals Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40142,11 +39221,12 @@ dicom:dicom_00240064 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240096 dicom:dicom_00240096 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Retest Sensitivity Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40158,11 +39238,12 @@ dicom:dicom_00240096 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240095 dicom:dicom_00240095 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Retest Stimulus Seen"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40174,11 +39255,12 @@ dicom:dicom_00240095 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221445 dicom:dicom_00221445 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Retinal Thickness Definition Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40190,7 +39272,6 @@ dicom:dicom_00221445 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080054 dicom:dicom_00080054 rdf:type owl:DatatypeProperty ; @@ -40203,17 +39284,17 @@ dicom:dicom_00080054 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0054)"^^xsd:string ; - dicom:VR "AE"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040E011 dicom:dicom_0040E011 rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Retrieve Location UID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40225,11 +39306,12 @@ dicom:dicom_0040E011 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040E010 dicom:dicom_0040E010 rdf:type owl:DatatypeProperty ; + dicom:VR "UR"^^xsd:string ; + rdfs:label "Retrieve URI"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40241,11 +39323,12 @@ dicom:dicom_0040E010 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300E0004 dicom:dicom_300E0004 rdf:type owl:DatatypeProperty ; + dicom:VR "DA"^^xsd:string ; + rdfs:label "Review Date"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40257,11 +39340,12 @@ dicom:dicom_300E0004 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300E0005 dicom:dicom_300E0005 rdf:type owl:DatatypeProperty ; + dicom:VR "TM"^^xsd:string ; + rdfs:label "Review Time"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40273,11 +39357,12 @@ dicom:dicom_300E0005 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300E0008 dicom:dicom_300E0008 rdf:type owl:DatatypeProperty ; + dicom:VR "PN"^^xsd:string ; + rdfs:label "Reviewer Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40289,11 +39374,12 @@ dicom:dicom_300E0008 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189305 dicom:dicom_00189305 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Revolution Time"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40305,7 +39391,6 @@ dicom:dicom_00189305 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220022 dicom:dicom_00220022 rdf:type owl:DatatypeProperty ; @@ -40318,17 +39403,17 @@ dicom:dicom_00220022 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0022)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460014 dicom:dicom_00460014 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Right Lens Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40340,11 +39425,12 @@ dicom:dicom_00460014 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700230 dicom:dicom_00700230 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Rotation Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40356,11 +39442,12 @@ dicom:dicom_00700230 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181140 dicom:dicom_00181140 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Rotation Direction"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40372,7 +39459,6 @@ dicom:dicom_00181140 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540052 dicom:dicom_00540052 rdf:type owl:DatatypeProperty ; @@ -40385,17 +39471,17 @@ dicom:dicom_00540052 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0052)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700273 dicom:dicom_00700273 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Rotation Point"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40407,7 +39493,6 @@ dicom:dicom_00700273 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540050 dicom:dicom_00540050 rdf:type owl:DatatypeProperty ; @@ -40420,13 +39505,11 @@ dicom:dicom_00540050 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0050)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00182030 dicom:dicom_00182030 rdf:type owl:DatatypeProperty ; @@ -40439,17 +39522,17 @@ dicom:dicom_00182030 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,2030)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0048021F dicom:dicom_0048021F rdf:type owl:DatatypeProperty ; + dicom:VR "SL"^^xsd:string ; + rdfs:label "Row Position In Total Image Pixel Matrix"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40461,7 +39544,6 @@ dicom:dicom_0048021F rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280010 dicom:dicom_00280010 rdf:type owl:DatatypeProperty ; @@ -40474,13 +39556,11 @@ dicom:dicom_00280010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,0010)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181316 dicom:dicom_00181316 rdf:type owl:DatatypeProperty ; @@ -40493,13 +39573,11 @@ dicom:dicom_00181316 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1316)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_01000424 dicom:dicom_01000424 rdf:type owl:DatatypeProperty ; @@ -40512,13 +39590,11 @@ dicom:dicom_01000424 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0100,0424)"^^xsd:string ; - dicom:VR "LT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_01000420 dicom:dicom_01000420 rdf:type owl:DatatypeProperty ; @@ -40531,13 +39607,11 @@ dicom:dicom_01000420 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0100,0420)"^^xsd:string ; - dicom:VR "DT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080016 dicom:dicom_00080016 rdf:type owl:DatatypeProperty ; @@ -40550,13 +39624,11 @@ dicom:dicom_00080016 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0016)"^^xsd:string ; - dicom:VR "UI"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_01000410 dicom:dicom_01000410 rdf:type owl:DatatypeProperty ; @@ -40569,17 +39641,17 @@ dicom:dicom_01000410 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0100,0410)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00200242 dicom:dicom_00200242 rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "SOP Instance UID of Concatenation Source"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40591,7 +39663,6 @@ dicom:dicom_00200242 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080018 dicom:dicom_00080018 rdf:type owl:DatatypeProperty ; @@ -40604,17 +39675,17 @@ dicom:dicom_00080018 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0018)"^^xsd:string ; - dicom:VR "UI"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00404072 dicom:dicom_00404072 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "STOW-RS Storage Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40626,11 +39697,12 @@ dicom:dicom_00404072 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541006 dicom:dicom_00541006 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "SUV Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40642,7 +39714,6 @@ dicom:dicom_00541006 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080162 dicom:dicom_30080162 rdf:type owl:DatatypeProperty ; @@ -40655,14 +39726,11 @@ dicom:dicom_30080162 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0162)"^^xsd:string ; - dicom:VR "DA"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_30080164 dicom:dicom_30080164 rdf:type owl:DatatypeProperty ; @@ -40675,13 +39743,11 @@ dicom:dicom_30080164 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0164)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080166 dicom:dicom_30080166 rdf:type owl:DatatypeProperty ; @@ -40694,14 +39760,11 @@ dicom:dicom_30080166 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0166)"^^xsd:string ; - dicom:VR "DA"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_30080168 dicom:dicom_30080168 rdf:type owl:DatatypeProperty ; @@ -40714,14 +39777,11 @@ dicom:dicom_30080168 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0168)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00280002 dicom:dicom_00280002 rdf:type owl:DatatypeProperty ; @@ -40734,18 +39794,17 @@ dicom:dicom_00280002 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,0002)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00280003 dicom:dicom_00280003 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Samples per Pixel Used"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40757,8 +39816,6 @@ dicom:dicom_00280003 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_003A001A dicom:dicom_003A001A rdf:type owl:DatatypeProperty ; @@ -40771,13 +39828,11 @@ dicom:dicom_003A001A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,001A)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189024 dicom:dicom_00189024 rdf:type owl:DatatypeProperty ; @@ -40790,13 +39845,11 @@ dicom:dicom_00189024 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9024)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181143 dicom:dicom_00181143 rdf:type owl:DatatypeProperty ; @@ -40809,13 +39862,11 @@ dicom:dicom_00181143 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1143)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181302 dicom:dicom_00181302 rdf:type owl:DatatypeProperty ; @@ -40828,17 +39879,17 @@ dicom:dicom_00181302 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1302)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180022 dicom:dicom_00180022 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Scan Options"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40850,11 +39901,12 @@ dicom:dicom_00180022 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540501 dicom:dicom_00540501 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Scan Progression Direction"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40866,7 +39918,6 @@ dicom:dicom_00540501 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181300 dicom:dicom_00181300 rdf:type owl:DatatypeProperty ; @@ -40879,13 +39930,11 @@ dicom:dicom_00181300 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1300)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180020 dicom:dicom_00180020 rdf:type owl:DatatypeProperty ; @@ -40898,17 +39947,17 @@ dicom:dicom_00180020 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0020)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189760 dicom:dicom_00189760 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Scatter Corrected"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -40920,7 +39969,6 @@ dicom:dicom_00189760 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541105 dicom:dicom_00541105 rdf:type owl:DatatypeProperty ; @@ -40933,13 +39981,11 @@ dicom:dicom_00541105 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1105)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541323 dicom:dicom_00541323 rdf:type owl:DatatypeProperty ; @@ -40952,13 +39998,11 @@ dicom:dicom_00541323 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1323)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400007 dicom:dicom_00400007 rdf:type owl:DatatypeProperty ; @@ -40971,13 +40015,11 @@ dicom:dicom_00400007 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,0007)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400009 dicom:dicom_00400009 rdf:type owl:DatatypeProperty ; @@ -40990,13 +40032,11 @@ dicom:dicom_00400009 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,0009)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400008 dicom:dicom_00400008 rdf:type owl:DatatypeProperty ; @@ -41009,17 +40049,17 @@ dicom:dicom_00400008 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,0008)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0072010C dicom:dicom_0072010C rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Screen Minimum Color Bit Depth"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41031,11 +40071,12 @@ dicom:dicom_0072010C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0072010A dicom:dicom_0072010A rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Screen Minimum Grayscale Bit Depth"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41047,11 +40088,12 @@ dicom:dicom_0072010A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240122 dicom:dicom_00240122 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Screening Baseline Measured Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41063,11 +40105,12 @@ dicom:dicom_00240122 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240120 dicom:dicom_00240120 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Screening Baseline Measured"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41079,11 +40122,12 @@ dicom:dicom_00240120 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240124 dicom:dicom_00240124 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Screening Baseline Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41095,11 +40139,12 @@ dicom:dicom_00240124 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240126 dicom:dicom_00240126 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Screening Baseline Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41111,11 +40156,12 @@ dicom:dicom_00240126 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240016 dicom:dicom_00240016 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Screening Test Mode Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41127,11 +40173,12 @@ dicom:dicom_00240016 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00520036 dicom:dicom_00520036 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Seam Line Index"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41143,11 +40190,12 @@ dicom:dicom_00520036 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00520033 dicom:dicom_00520033 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Seam Line Location"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41159,7 +40207,6 @@ dicom:dicom_00520033 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181010 dicom:dicom_00181010 rdf:type owl:DatatypeProperty ; @@ -41172,13 +40219,11 @@ dicom:dicom_00181010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1010)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181016 dicom:dicom_00181016 rdf:type owl:DatatypeProperty ; @@ -41191,13 +40236,11 @@ dicom:dicom_00181016 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1016)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181018 dicom:dicom_00181018 rdf:type owl:DatatypeProperty ; @@ -41210,13 +40253,11 @@ dicom:dicom_00181018 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1018)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181019 dicom:dicom_00181019 rdf:type owl:DatatypeProperty ; @@ -41229,13 +40270,11 @@ dicom:dicom_00181019 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1019)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541311 dicom:dicom_00541311 rdf:type owl:DatatypeProperty ; @@ -41248,13 +40287,11 @@ dicom:dicom_00541311 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1311)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541220 dicom:dicom_00541220 rdf:type owl:DatatypeProperty ; @@ -41267,17 +40304,17 @@ dicom:dicom_00541220 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1220)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189519 dicom:dicom_00189519 rdf:type owl:DatatypeProperty ; + dicom:VR "SS"^^xsd:string ; + rdfs:label "Secondary Positioner Increment Sign"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41289,11 +40326,12 @@ dicom:dicom_00189519 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189515 dicom:dicom_00189515 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Secondary Positioner Increment"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41305,11 +40343,12 @@ dicom:dicom_00189515 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189509 dicom:dicom_00189509 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Secondary Positioner Scan Arc"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41321,11 +40360,12 @@ dicom:dicom_00189509 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189511 dicom:dicom_00189511 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Secondary Positioner Scan Start Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41337,11 +40377,12 @@ dicom:dicom_00189511 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00620009 dicom:dicom_00620009 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Segment Algorithm Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41353,11 +40394,12 @@ dicom:dicom_00620009 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00620008 dicom:dicom_00620008 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Segment Algorithm Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41369,11 +40411,12 @@ dicom:dicom_00620008 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00620006 dicom:dicom_00620006 rdf:type owl:DatatypeProperty ; + dicom:VR "ST"^^xsd:string ; + rdfs:label "Segment Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41385,11 +40428,12 @@ dicom:dicom_00620006 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0062000A dicom:dicom_0062000A rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Segment Identification Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41401,11 +40445,12 @@ dicom:dicom_0062000A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00620005 dicom:dicom_00620005 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Segment Label"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41417,11 +40462,12 @@ dicom:dicom_00620005 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00620004 dicom:dicom_00620004 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Segment Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41433,11 +40479,12 @@ dicom:dicom_00620004 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00620002 dicom:dicom_00620002 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Segment Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41449,11 +40496,12 @@ dicom:dicom_00620002 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0066002D dicom:dicom_0066002D rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Segment Surface Generation Algorithm Identification Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41465,11 +40513,12 @@ dicom:dicom_0066002D rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0066002E dicom:dicom_0066002E rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Segment Surface Source Instance Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41481,11 +40530,12 @@ dicom:dicom_0066002E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00620007 dicom:dicom_00620007 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Segmentation Algorithm Identification Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41497,11 +40547,12 @@ dicom:dicom_00620007 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00620010 dicom:dicom_00620010 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Segmentation Fractional Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41513,11 +40564,12 @@ dicom:dicom_00620010 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00620001 dicom:dicom_00620001 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Segmentation Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41529,11 +40581,12 @@ dicom:dicom_00620001 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281224 dicom:dicom_00281224 rdf:type owl:DatatypeProperty ; + dicom:VR "OW"^^xsd:string ; + rdfs:label "Segmented Alpha Palette Color Lookup Table Data"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41545,7 +40598,6 @@ dicom:dicom_00281224 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281223 dicom:dicom_00281223 rdf:type owl:DatatypeProperty ; @@ -41558,14 +40610,11 @@ dicom:dicom_00281223 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,1223)"^^xsd:string ; - dicom:VR "OW"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00281222 dicom:dicom_00281222 rdf:type owl:DatatypeProperty ; @@ -41578,18 +40627,17 @@ dicom:dicom_00281222 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,1222)"^^xsd:string ; - dicom:VR "OW"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00620003 dicom:dicom_00620003 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Segmented Property Category Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41601,11 +40649,12 @@ dicom:dicom_00620003 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0062000F dicom:dicom_0062000F rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Segmented Property Type Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41617,11 +40666,12 @@ dicom:dicom_0062000F rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00620011 dicom:dicom_00620011 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Segmented Property Type Modifier Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41633,7 +40683,6 @@ dicom:dicom_00620011 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281221 dicom:dicom_00281221 rdf:type owl:DatatypeProperty ; @@ -41646,13 +40695,11 @@ dicom:dicom_00281221 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,1221)"^^xsd:string ; - dicom:VR "OW"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189033 dicom:dicom_00189033 rdf:type owl:DatatypeProperty ; @@ -41665,18 +40712,17 @@ dicom:dicom_00189033 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9033)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00221257 dicom:dicom_00221257 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Selected Segmental Ophthalmic Axial Length Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41688,11 +40734,12 @@ dicom:dicom_00221257 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0072005E dicom:dicom_0072005E rdf:type owl:DatatypeProperty ; + dicom:VR "AE"^^xsd:string ; + rdfs:label "Selector AE Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41704,11 +40751,12 @@ dicom:dicom_0072005E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0072005F dicom:dicom_0072005F rdf:type owl:DatatypeProperty ; + dicom:VR "AS"^^xsd:string ; + rdfs:label "Selector AS Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41720,11 +40768,12 @@ dicom:dicom_0072005F rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720060 dicom:dicom_00720060 rdf:type owl:DatatypeProperty ; + dicom:VR "AT"^^xsd:string ; + rdfs:label "Selector AT Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41736,11 +40785,12 @@ dicom:dicom_00720060 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00820019 dicom:dicom_00820019 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Selector Attribute Keyword"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41752,11 +40802,12 @@ dicom:dicom_00820019 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00820018 dicom:dicom_00820018 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Selector Attribute Name"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41768,11 +40819,12 @@ dicom:dicom_00820018 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720056 dicom:dicom_00720056 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Selector Attribute Private Creator"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41784,11 +40836,12 @@ dicom:dicom_00720056 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720050 dicom:dicom_00720050 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Selector Attribute VR"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41800,12 +40853,12 @@ dicom:dicom_00720050 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00720026 dicom:dicom_00720026 rdf:type owl:DatatypeProperty ; + dicom:VR "AT"^^xsd:string ; + rdfs:label "Selector Attribute"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41817,11 +40870,12 @@ dicom:dicom_00720026 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720062 dicom:dicom_00720062 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Selector CS Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41833,11 +40887,12 @@ dicom:dicom_00720062 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720080 dicom:dicom_00720080 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Selector Code Sequence Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41849,11 +40904,12 @@ dicom:dicom_00720080 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720061 dicom:dicom_00720061 rdf:type owl:DatatypeProperty ; + dicom:VR "DA"^^xsd:string ; + rdfs:label "Selector DA Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41865,11 +40921,12 @@ dicom:dicom_00720061 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720072 dicom:dicom_00720072 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Selector DS Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41881,11 +40938,12 @@ dicom:dicom_00720072 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720072 dicom:dicom_00720072 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Selector DS Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41897,11 +40955,12 @@ dicom:dicom_00720072 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720063 dicom:dicom_00720063 rdf:type owl:DatatypeProperty ; + dicom:VR "DT"^^xsd:string ; + rdfs:label "Selector DT Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41913,11 +40972,12 @@ dicom:dicom_00720063 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720074 dicom:dicom_00720074 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Selector FD Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41929,12 +40989,12 @@ dicom:dicom_00720074 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00720076 dicom:dicom_00720076 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Selector FL Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41946,12 +41006,12 @@ dicom:dicom_00720076 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00720064 dicom:dicom_00720064 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Selector IS Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41963,11 +41023,12 @@ dicom:dicom_00720064 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720066 dicom:dicom_00720066 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Selector LO Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41979,11 +41040,12 @@ dicom:dicom_00720066 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720068 dicom:dicom_00720068 rdf:type owl:DatatypeProperty ; + dicom:VR "LT"^^xsd:string ; + rdfs:label "Selector LT Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -41995,11 +41057,12 @@ dicom:dicom_00720068 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720065 dicom:dicom_00720065 rdf:type owl:DatatypeProperty ; + dicom:VR "OB"^^xsd:string ; + rdfs:label "Selector OB Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42011,11 +41074,12 @@ dicom:dicom_00720065 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720073 dicom:dicom_00720073 rdf:type owl:DatatypeProperty ; + dicom:VR "OD"^^xsd:string ; + rdfs:label "Selector OD Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42027,11 +41091,12 @@ dicom:dicom_00720073 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720067 dicom:dicom_00720067 rdf:type owl:DatatypeProperty ; + dicom:VR "OF"^^xsd:string ; + rdfs:label "Selector OF Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42043,11 +41108,12 @@ dicom:dicom_00720067 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720075 dicom:dicom_00720075 rdf:type owl:DatatypeProperty ; + dicom:VR "OL"^^xsd:string ; + rdfs:label "Selector OL Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42059,11 +41125,12 @@ dicom:dicom_00720075 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720069 dicom:dicom_00720069 rdf:type owl:DatatypeProperty ; + dicom:VR "OW"^^xsd:string ; + rdfs:label "Selector OW Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42075,11 +41142,12 @@ dicom:dicom_00720069 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0072006A dicom:dicom_0072006A rdf:type owl:DatatypeProperty ; + dicom:VR "PN"^^xsd:string ; + rdfs:label "Selector PN Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42091,11 +41159,12 @@ dicom:dicom_0072006A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0072006C dicom:dicom_0072006C rdf:type owl:DatatypeProperty ; + dicom:VR "SH"^^xsd:string ; + rdfs:label "Selector SH Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42107,11 +41176,12 @@ dicom:dicom_0072006C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0072007C dicom:dicom_0072007C rdf:type owl:DatatypeProperty ; + dicom:VR "SL"^^xsd:string ; + rdfs:label "Selector SL Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42123,11 +41193,12 @@ dicom:dicom_0072007C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0072007E dicom:dicom_0072007E rdf:type owl:DatatypeProperty ; + dicom:VR "SS"^^xsd:string ; + rdfs:label "Selector SS Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42139,11 +41210,12 @@ dicom:dicom_0072007E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0072006E dicom:dicom_0072006E rdf:type owl:DatatypeProperty ; + dicom:VR "ST"^^xsd:string ; + rdfs:label "Selector ST Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42155,11 +41227,12 @@ dicom:dicom_0072006E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00741057 dicom:dicom_00741057 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Selector Sequence Pointer Items"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42171,11 +41244,12 @@ dicom:dicom_00741057 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720054 dicom:dicom_00720054 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Selector Sequence Pointer Private Creator"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42187,11 +41261,12 @@ dicom:dicom_00720054 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720052 dicom:dicom_00720052 rdf:type owl:DatatypeProperty ; + dicom:VR "AT"^^xsd:string ; + rdfs:label "Selector Sequence Pointer"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42203,11 +41278,12 @@ dicom:dicom_00720052 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0072006B dicom:dicom_0072006B rdf:type owl:DatatypeProperty ; + dicom:VR "TM"^^xsd:string ; + rdfs:label "Selector TM Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42219,11 +41295,12 @@ dicom:dicom_0072006B rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0072006F dicom:dicom_0072006F rdf:type owl:DatatypeProperty ; + dicom:VR "UC"^^xsd:string ; + rdfs:label "Selector UC Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42235,11 +41312,12 @@ dicom:dicom_0072006F rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0072007F dicom:dicom_0072007F rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Selector UI Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42251,12 +41329,12 @@ dicom:dicom_0072007F rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00720078 dicom:dicom_00720078 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Selector UL Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42268,11 +41346,12 @@ dicom:dicom_00720078 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0072006D dicom:dicom_0072006D rdf:type owl:DatatypeProperty ; + dicom:VR "UN"^^xsd:string ; + rdfs:label "Selector UN Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42284,11 +41363,12 @@ dicom:dicom_0072006D rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720071 dicom:dicom_00720071 rdf:type owl:DatatypeProperty ; + dicom:VR "UR"^^xsd:string ; + rdfs:label "Selector UR Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42300,11 +41380,12 @@ dicom:dicom_00720071 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0072007A dicom:dicom_0072007A rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Selector US Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42316,11 +41397,12 @@ dicom:dicom_0072007A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720070 dicom:dicom_00720070 rdf:type owl:DatatypeProperty ; + dicom:VR "UT"^^xsd:string ; + rdfs:label "Selector UT Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42332,11 +41414,12 @@ dicom:dicom_00720070 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720028 dicom:dicom_00720028 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Selector Value Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42348,11 +41431,12 @@ dicom:dicom_00720028 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189767 dicom:dicom_00189767 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Sensitivity Calibrated"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42364,11 +41448,12 @@ dicom:dicom_00189767 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240094 dicom:dicom_00240094 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Sensitivity Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42380,11 +41465,12 @@ dicom:dicom_00240094 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186000 dicom:dicom_00186000 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Sensitivity"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42396,7 +41482,6 @@ dicom:dicom_00186000 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180024 dicom:dicom_00180024 rdf:type owl:DatatypeProperty ; @@ -42409,13 +41494,11 @@ dicom:dicom_00180024 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0024)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180021 dicom:dicom_00180021 rdf:type owl:DatatypeProperty ; @@ -42428,13 +41511,11 @@ dicom:dicom_00180021 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0021)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186011 dicom:dicom_00186011 rdf:type owl:DatatypeProperty ; @@ -42447,13 +41528,11 @@ dicom:dicom_00186011 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6011)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080021 dicom:dicom_00080021 rdf:type owl:DatatypeProperty ; @@ -42466,7 +41545,6 @@ dicom:dicom_00080021 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0021)"^^xsd:string ; - dicom:VR "DA"^^xsd:string ; rdfs:subClassOf dc:identifier . @@ -42476,6 +41554,8 @@ dicom:dicom_00080021 rdf:type owl:DatatypeProperty ; dicom:dicom_0008103F rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Series Description Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42487,7 +41567,6 @@ dicom:dicom_0008103F rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0008103E dicom:dicom_0008103E rdf:type owl:DatatypeProperty ; @@ -42500,13 +41579,11 @@ dicom:dicom_0008103E rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,103E)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0020000E dicom:dicom_0020000E rdf:type owl:DatatypeProperty ; @@ -42519,13 +41596,11 @@ dicom:dicom_0020000E rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,000E)"^^xsd:string ; - dicom:VR "UI"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00200011 dicom:dicom_00200011 rdf:type owl:DatatypeProperty ; @@ -42538,13 +41613,11 @@ dicom:dicom_00200011 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,0011)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080031 dicom:dicom_00080031 rdf:type owl:DatatypeProperty ; @@ -42557,13 +41630,11 @@ dicom:dicom_00080031 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0031)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541000 dicom:dicom_00541000 rdf:type owl:DatatypeProperty ; @@ -42576,17 +41647,17 @@ dicom:dicom_00541000 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1000)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00380062 dicom:dicom_00380062 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Service Episode Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42598,11 +41669,12 @@ dicom:dicom_00380062 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00380060 dicom:dicom_00380060 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Service Episode ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42614,11 +41686,12 @@ dicom:dicom_00380060 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189624 dicom:dicom_00189624 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Settling Phase Frame"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42630,7 +41703,6 @@ dicom:dicom_00189624 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A01BA dicom:dicom_300A01BA rdf:type owl:DatatypeProperty ; @@ -42643,13 +41715,11 @@ dicom:dicom_300A01BA rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,01BA)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A01B8 dicom:dicom_300A01B8 rdf:type owl:DatatypeProperty ; @@ -42662,13 +41732,11 @@ dicom:dicom_300A01B8 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,01B8)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A01BC dicom:dicom_300A01BC rdf:type owl:DatatypeProperty ; @@ -42681,13 +41749,11 @@ dicom:dicom_300A01BC rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,01BC)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A01B4 dicom:dicom_300A01B4 rdf:type owl:DatatypeProperty ; @@ -42700,13 +41766,11 @@ dicom:dicom_300A01B4 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,01B4)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A01B6 dicom:dicom_300A01B6 rdf:type owl:DatatypeProperty ; @@ -42719,17 +41783,17 @@ dicom:dicom_300A01B6 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,01B6)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0402 dicom:dicom_300A0402 rdf:type owl:DatatypeProperty ; + dicom:VR "ST"^^xsd:string ; + rdfs:label "Setup Image Comment"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42741,7 +41805,6 @@ dicom:dicom_300A0402 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A01D0 dicom:dicom_300A01D0 rdf:type owl:DatatypeProperty ; @@ -42754,13 +41817,11 @@ dicom:dicom_300A01D0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,01D0)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A01B2 dicom:dicom_300A01B2 rdf:type owl:DatatypeProperty ; @@ -42773,13 +41834,11 @@ dicom:dicom_300A01B2 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,01B2)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A01B0 dicom:dicom_300A01B0 rdf:type owl:DatatypeProperty ; @@ -42792,17 +41851,17 @@ dicom:dicom_300A01B0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,01B0)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700247 dicom:dicom_00700247 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Shadow Color CIELab Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42814,11 +41873,12 @@ dicom:dicom_00700247 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700245 dicom:dicom_00700245 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Shadow Offset X"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42830,11 +41890,12 @@ dicom:dicom_00700245 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700246 dicom:dicom_00700246 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Shadow Offset Y"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42846,11 +41907,12 @@ dicom:dicom_00700246 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700258 dicom:dicom_00700258 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Shadow Opacity"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42862,11 +41924,12 @@ dicom:dicom_00700258 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700244 dicom:dicom_00700244 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Shadow Style"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -42886,17 +41949,15 @@ dicom:dicom_00700306 rdf:type owl:DatatypeProperty ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "See for Defined Terms."^^xsd:string ; + obo:IAO_0000115 " For convenient registration, correlated Fiducials exist in each image set of the Registration Sequence. Correlated Fiducials are identified with either Fiducial Identifier (0070,0310) or Fiducial Identifier Code Sequence (0070,0311). Shape Type (0070,0306) defines the geometric interpretation of Contour Data (3006,0050) and Graphic Data (0070,0022). A point is defined as a triplet (x,y,z) in the case of spatial data or a pair (x,y) in the case of graphic data."^^xsd:string ; dicom:dicom_xxxx0065 "(0070,0306)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_52009229 dicom:dicom_52009229 rdf:type owl:DatatypeProperty ; @@ -42909,13 +41970,11 @@ dicom:dicom_52009229 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(5200,9229)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A01A6 dicom:dicom_300A01A6 rdf:type owl:DatatypeProperty ; @@ -42928,13 +41987,11 @@ dicom:dicom_300A01A6 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,01A6)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A01A4 dicom:dicom_300A01A4 rdf:type owl:DatatypeProperty ; @@ -42947,13 +42004,11 @@ dicom:dicom_300A01A4 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,01A4)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A01A8 dicom:dicom_300A01A8 rdf:type owl:DatatypeProperty ; @@ -42966,13 +42021,11 @@ dicom:dicom_300A01A8 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,01A8)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A01A0 dicom:dicom_300A01A0 rdf:type owl:DatatypeProperty ; @@ -42985,13 +42038,11 @@ dicom:dicom_300A01A0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,01A0)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A01A2 dicom:dicom_300A01A2 rdf:type owl:DatatypeProperty ; @@ -43004,17 +42055,17 @@ dicom:dicom_300A01A2 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,01A2)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240074 dicom:dicom_00240074 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Short Term Fluctuation Calculated"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43026,11 +42077,12 @@ dicom:dicom_00240074 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240076 dicom:dicom_00240076 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Short Term Fluctuation Probability Calculated"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43042,11 +42094,12 @@ dicom:dicom_00240076 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240077 dicom:dicom_00240077 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Short Term Fluctuation Probability"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43058,11 +42111,12 @@ dicom:dicom_00240077 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240075 dicom:dicom_00240075 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Short Term Fluctuation"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43074,11 +42128,12 @@ dicom:dicom_00240075 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00800004 dicom:dicom_00800004 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Shot Duration Time"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43090,11 +42145,12 @@ dicom:dicom_00800004 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00800005 dicom:dicom_00800005 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Shot Offset Time"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43106,11 +42162,12 @@ dicom:dicom_00800005 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720716 dicom:dicom_00720716 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Show Acquisition Techniques Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43122,11 +42179,12 @@ dicom:dicom_00720716 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720712 dicom:dicom_00720712 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Show Graphic Annotation Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43138,11 +42196,12 @@ dicom:dicom_00720712 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720706 dicom:dicom_00720706 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Show Grayscale Inverted"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43154,11 +42213,12 @@ dicom:dicom_00720706 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720710 dicom:dicom_00720710 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Show Image True Size Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43170,11 +42230,12 @@ dicom:dicom_00720710 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720714 dicom:dicom_00720714 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Show Patient Demographics Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43186,11 +42247,12 @@ dicom:dicom_00720714 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700278 dicom:dicom_00700278 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Show Tick Label"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43202,11 +42264,12 @@ dicom:dicom_00700278 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181602 dicom:dicom_00181602 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Shutter Left Vertical Edge"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43218,11 +42281,12 @@ dicom:dicom_00181602 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181608 dicom:dicom_00181608 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Shutter Lower Horizontal Edge"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43234,11 +42298,12 @@ dicom:dicom_00181608 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181623 dicom:dicom_00181623 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Shutter Overlay Group"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43250,11 +42315,12 @@ dicom:dicom_00181623 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181624 dicom:dicom_00181624 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Shutter Presentation Color CIELab Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43266,11 +42332,12 @@ dicom:dicom_00181624 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181622 dicom:dicom_00181622 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Shutter Presentation Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43282,11 +42349,12 @@ dicom:dicom_00181622 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181604 dicom:dicom_00181604 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Shutter Right Vertical Edge"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43298,11 +42366,12 @@ dicom:dicom_00181604 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181600 dicom:dicom_00181600 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Shutter Shape"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43314,12 +42383,12 @@ dicom:dicom_00181600 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00181606 dicom:dicom_00181606 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Shutter Upper Horizontal Edge"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43331,11 +42400,12 @@ dicom:dicom_00181606 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00289003 dicom:dicom_00289003 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Signal Domain Columns"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43347,7 +42417,6 @@ dicom:dicom_00289003 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00289235 dicom:dicom_00289235 rdf:type owl:DatatypeProperty ; @@ -43360,17 +42429,17 @@ dicom:dicom_00289235 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,9235)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221155 dicom:dicom_00221155 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Signal to Noise Ratio"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43382,12 +42451,12 @@ dicom:dicom_00221155 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_04000120 dicom:dicom_04000120 rdf:type owl:DatatypeProperty ; + dicom:VR "OB"^^xsd:string ; + rdfs:label "Signature"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43399,11 +42468,12 @@ dicom:dicom_04000120 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081161 dicom:dicom_00081161 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Simple Frame List"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43415,11 +42485,12 @@ dicom:dicom_00081161 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460218 dicom:dicom_00460218 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Simulated Keratometric Cylinder Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43431,11 +42502,12 @@ dicom:dicom_00460218 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189306 dicom:dicom_00189306 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Single Collimation Width"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43447,7 +42519,6 @@ dicom:dicom_00189306 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181086 dicom:dicom_00181086 rdf:type owl:DatatypeProperty ; @@ -43460,17 +42531,17 @@ dicom:dicom_00181086 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1086)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00089460 dicom:dicom_00089460 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Skip Frame Range Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43482,7 +42553,6 @@ dicom:dicom_00089460 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189105 dicom:dicom_00189105 rdf:type owl:DatatypeProperty ; @@ -43495,13 +42565,11 @@ dicom:dicom_00189105 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9105)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189104 dicom:dicom_00189104 rdf:type owl:DatatypeProperty ; @@ -43514,13 +42582,11 @@ dicom:dicom_00189104 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9104)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00182005 dicom:dicom_00182005 rdf:type owl:DatatypeProperty ; @@ -43533,13 +42599,11 @@ dicom:dicom_00182005 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,2005)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00201041 dicom:dicom_00201041 rdf:type owl:DatatypeProperty ; @@ -43552,13 +42616,11 @@ dicom:dicom_00201041 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,1041)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540500 dicom:dicom_00540500 rdf:type owl:DatatypeProperty ; @@ -43571,13 +42633,11 @@ dicom:dicom_00540500 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0500)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541320 dicom:dicom_00541320 rdf:type owl:DatatypeProperty ; @@ -43590,13 +42650,11 @@ dicom:dicom_00541320 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1320)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00180050 dicom:dicom_00180050 rdf:type owl:DatatypeProperty ; @@ -43609,13 +42667,11 @@ dicom:dicom_00180050 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0050)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540080 dicom:dicom_00540080 rdf:type owl:DatatypeProperty ; @@ -43628,13 +42684,11 @@ dicom:dicom_00540080 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0080)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280106 dicom:dicom_00280106 rdf:type owl:DatatypeProperty ; @@ -43647,13 +42701,11 @@ dicom:dicom_00280106 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,0106)"^^xsd:string ; - dicom:VR "US or SS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280108 dicom:dicom_00280108 rdf:type owl:DatatypeProperty ; @@ -43666,13 +42718,11 @@ dicom:dicom_00280108 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,0108)"^^xsd:string ; - dicom:VR "US or SS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_001021A0 dicom:dicom_001021A0 rdf:type owl:DatatypeProperty ; @@ -43685,13 +42735,11 @@ dicom:dicom_001021A0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0010,21A0)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00185027 dicom:dicom_00185027 rdf:type owl:DatatypeProperty ; @@ -43700,17 +42748,15 @@ dicom:dicom_00185027 rdf:type owl:DatatypeProperty ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "See for Description."^^xsd:string ; + obo:IAO_0000115 "The thermal and/or mechanical indices, when made available by a manufacturer, are defined according to the Standard for Real-Time Display of Thermal and Mechanical Acoustic Output Indices on Diagnostic Ultrasound Equipment, a voluntary performance standard jointly published by AIUM and NEMA."^^xsd:string ; dicom:dicom_xxxx0065 "(0018,5027)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00185028 dicom:dicom_00185028 rdf:type owl:DatatypeProperty ; @@ -43719,33 +42765,32 @@ dicom:dicom_00185028 rdf:type owl:DatatypeProperty ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "See for Description."^^xsd:string ; + obo:IAO_0000115 "The thermal and/or mechanical indices, when made available by a manufacturer, are defined according to the Standard for Real-Time Display of Thermal and Mechanical Acoustic Output Indices on Diagnostic Ultrasound Equipment, a voluntary performance standard jointly published by AIUM and NEMA."^^xsd:string ; dicom:dicom_xxxx0065 "(0018,5028)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00185029 dicom:dicom_00185029 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Soft Tissue-surface Thermal Index"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "See for Description."^^xsd:string ; + obo:IAO_0000115 "The thermal and/or mechanical indices, when made available by a manufacturer, are defined according to the Standard for Real-Time Display of Thermal and Mechanical Acoustic Output Indices on Diagnostic Ultrasound Equipment, a voluntary performance standard jointly published by AIUM and NEMA."^^xsd:string ; dicom:dicom_xxxx0065 "(0018,5029)"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00283110 dicom:dicom_00283110 rdf:type owl:DatatypeProperty ; @@ -43758,14 +42803,11 @@ dicom:dicom_00283110 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,3110)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00181020 dicom:dicom_00181020 rdf:type owl:DatatypeProperty ; @@ -43778,17 +42820,17 @@ dicom:dicom_00181020 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1020)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720602 dicom:dicom_00720602 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Sort-by Category"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43800,11 +42842,12 @@ dicom:dicom_00720602 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720604 dicom:dicom_00720604 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Sorting Direction"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43816,11 +42859,12 @@ dicom:dicom_00720604 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720600 dicom:dicom_00720600 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Sorting Operations Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43832,11 +42876,12 @@ dicom:dicom_00720600 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189939 dicom:dicom_00189939 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Source Acquisition Beam Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43848,11 +42893,12 @@ dicom:dicom_00189939 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189938 dicom:dicom_00189938 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Source Acquisition Protocol Element Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -43864,7 +42910,6 @@ dicom:dicom_00189938 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0291 dicom:dicom_300A0291 rdf:type owl:DatatypeProperty ; @@ -43877,13 +42922,11 @@ dicom:dicom_300A0291 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0291)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0296 dicom:dicom_300A0296 rdf:type owl:DatatypeProperty ; @@ -43896,14 +42939,11 @@ dicom:dicom_300A0296 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0296)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_300A0298 dicom:dicom_300A0298 rdf:type owl:DatatypeProperty ; @@ -43916,13 +42956,11 @@ dicom:dicom_300A0298 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0298)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0294 dicom:dicom_300A0294 rdf:type owl:DatatypeProperty ; @@ -43935,13 +42973,11 @@ dicom:dicom_300A0294 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0294)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0290 dicom:dicom_300A0290 rdf:type owl:DatatypeProperty ; @@ -43954,13 +42990,11 @@ dicom:dicom_300A0290 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0290)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A02A0 dicom:dicom_300A02A0 rdf:type owl:DatatypeProperty ; @@ -43973,13 +43007,11 @@ dicom:dicom_300A02A0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,02A0)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0292 dicom:dicom_300A0292 rdf:type owl:DatatypeProperty ; @@ -43992,13 +43024,11 @@ dicom:dicom_300A0292 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0292)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A029C dicom:dicom_300A029C rdf:type owl:DatatypeProperty ; @@ -44011,13 +43041,11 @@ dicom:dicom_300A029C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,029C)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A029E dicom:dicom_300A029E rdf:type owl:DatatypeProperty ; @@ -44030,17 +43058,17 @@ dicom:dicom_300A029E rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,029E)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A021C dicom:dicom_300A021C rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Source Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -44052,7 +43080,6 @@ dicom:dicom_300A021C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0222 dicom:dicom_300A0222 rdf:type owl:DatatypeProperty ; @@ -44065,13 +43092,11 @@ dicom:dicom_300A0222 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0222)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0224 dicom:dicom_300A0224 rdf:type owl:DatatypeProperty ; @@ -44084,17 +43109,17 @@ dicom:dicom_300A0224 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0224)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00640003 dicom:dicom_00640003 rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Source Frame of Reference UID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -44106,11 +43131,12 @@ dicom:dicom_00640003 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720012 dicom:dicom_00720012 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Source Hanging Protocol Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -44122,11 +43148,12 @@ dicom:dicom_00720012 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460244 dicom:dicom_00460244 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Source Image Corneal Processed Data Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -44138,7 +43165,6 @@ dicom:dicom_00460244 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00089154 dicom:dicom_00089154 rdf:type owl:DatatypeProperty ; @@ -44151,13 +43177,11 @@ dicom:dicom_00089154 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,9154)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00082112 dicom:dicom_00082112 rdf:type owl:DatatypeProperty ; @@ -44170,17 +43194,17 @@ dicom:dicom_00082112 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,2112)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00420013 dicom:dicom_00420013 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Source Instance Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -44192,11 +43216,12 @@ dicom:dicom_00420013 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00083011 dicom:dicom_00083011 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Source Irradiation Event Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -44208,7 +43233,6 @@ dicom:dicom_00083011 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0228 dicom:dicom_300A0228 rdf:type owl:DatatypeProperty ; @@ -44221,14 +43245,11 @@ dicom:dicom_300A0228 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0228)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_300A0226 dicom:dicom_300A0226 rdf:type owl:DatatypeProperty ; @@ -44241,13 +43262,11 @@ dicom:dicom_300A0226 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0226)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0216 dicom:dicom_300A0216 rdf:type owl:DatatypeProperty ; @@ -44260,18 +43279,17 @@ dicom:dicom_300A0216 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0216)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_300A021B dicom:dicom_300A021B rdf:type owl:DatatypeProperty ; + dicom:VR "SH"^^xsd:string ; + rdfs:label "Source Model ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -44283,7 +43301,6 @@ dicom:dicom_300A021B rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0288 dicom:dicom_300A0288 rdf:type owl:DatatypeProperty ; @@ -44296,13 +43313,11 @@ dicom:dicom_300A0288 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0288)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0212 dicom:dicom_300A0212 rdf:type owl:DatatypeProperty ; @@ -44315,17 +43330,17 @@ dicom:dicom_300A0212 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0212)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100026 dicom:dicom_00100026 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Source Patient Group Identification Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -44337,11 +43352,12 @@ dicom:dicom_00100026 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018993A dicom:dicom_0018993A rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Source Reconstruction Protocol Element Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -44353,7 +43369,6 @@ dicom:dicom_0018993A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0210 dicom:dicom_300A0210 rdf:type owl:DatatypeProperty ; @@ -44366,13 +43381,11 @@ dicom:dicom_300A0210 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0210)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080105 dicom:dicom_30080105 rdf:type owl:DatatypeProperty ; @@ -44385,13 +43398,11 @@ dicom:dicom_30080105 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0105)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A022C dicom:dicom_300A022C rdf:type owl:DatatypeProperty ; @@ -44404,13 +43415,11 @@ dicom:dicom_300A022C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,022C)"^^xsd:string ; - dicom:VR "DA"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A022E dicom:dicom_300A022E rdf:type owl:DatatypeProperty ; @@ -44423,17 +43432,17 @@ dicom:dicom_300A022E rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,022E)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0229 dicom:dicom_300A0229 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Source Strength Units"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -44445,11 +43454,12 @@ dicom:dicom_300A0229 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A022B dicom:dicom_300A022B rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Source Strength"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -44461,7 +43471,6 @@ dicom:dicom_300A022B rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0214 dicom:dicom_300A0214 rdf:type owl:DatatypeProperty ; @@ -44474,13 +43483,11 @@ dicom:dicom_300A0214 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0214)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A020A dicom:dicom_003A020A rdf:type owl:DatatypeProperty ; @@ -44493,17 +43500,17 @@ dicom:dicom_003A020A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,020A)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221133 dicom:dicom_00221133 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Source of Anterior Chamber Depth Data Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -44515,11 +43522,12 @@ dicom:dicom_00221133 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221132 dicom:dicom_00221132 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Source of Lens Thickness Data Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -44531,11 +43539,12 @@ dicom:dicom_00221132 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221035 dicom:dicom_00221035 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Source of Ophthalmic Axial Length Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -44547,11 +43556,12 @@ dicom:dicom_00221035 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_04000564 dicom:dicom_04000564 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Source of Previous Values"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -44563,11 +43573,12 @@ dicom:dicom_04000564 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221135 dicom:dicom_00221135 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Source of Refractive Measurements Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -44579,11 +43590,12 @@ dicom:dicom_00221135 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221134 dicom:dicom_00221134 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Source of Refractive Measurements Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -44595,11 +43607,12 @@ dicom:dicom_00221134 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0436 dicom:dicom_300A0436 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Source to Applicator Mounting Position Distance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -44611,7 +43624,6 @@ dicom:dicom_300A0436 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00BA dicom:dicom_300A00BA rdf:type owl:DatatypeProperty ; @@ -44624,13 +43636,11 @@ dicom:dicom_300A00BA rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00BA)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00F6 dicom:dicom_300A00F6 rdf:type owl:DatatypeProperty ; @@ -44643,13 +43653,11 @@ dicom:dicom_300A00F6 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00F6)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A02E2 dicom:dicom_300A02E2 rdf:type owl:DatatypeProperty ; @@ -44662,13 +43670,11 @@ dicom:dicom_300A02E2 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,02E2)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00E6 dicom:dicom_300A00E6 rdf:type owl:DatatypeProperty ; @@ -44681,17 +43687,17 @@ dicom:dicom_300A00E6 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00E6)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0132 dicom:dicom_300A0132 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Source to External Contour Distance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -44703,11 +43709,12 @@ dicom:dicom_300A0132 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0425 dicom:dicom_300A0425 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Source to General Accessory Distance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -44719,7 +43726,6 @@ dicom:dicom_300A0425 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30020028 dicom:dicom_30020028 rdf:type owl:DatatypeProperty ; @@ -44732,13 +43738,11 @@ dicom:dicom_30020028 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3002,0028)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0130 dicom:dicom_300A0130 rdf:type owl:DatatypeProperty ; @@ -44751,13 +43755,11 @@ dicom:dicom_300A0130 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0130)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00DA dicom:dicom_300A00DA rdf:type owl:DatatypeProperty ; @@ -44770,13 +43772,11 @@ dicom:dicom_300A00DA rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00DA)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00B4 dicom:dicom_300A00B4 rdf:type owl:DatatypeProperty ; @@ -44789,14 +43789,11 @@ dicom:dicom_300A00B4 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00B4)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00180088 dicom:dicom_00180088 rdf:type owl:DatatypeProperty ; @@ -44809,17 +43806,17 @@ dicom:dicom_00180088 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,0088)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0028135A dicom:dicom_0028135A rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Spatial Locations Preserved"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -44831,8 +43828,6 @@ dicom:dicom_0028135A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00189027 dicom:dicom_00189027 rdf:type owl:DatatypeProperty ; @@ -44845,13 +43840,11 @@ dicom:dicom_00189027 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9027)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181050 dicom:dicom_00181050 rdf:type owl:DatatypeProperty ; @@ -44864,17 +43857,17 @@ dicom:dicom_00181050 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1050)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30040005 dicom:dicom_30040005 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Spatial Transform of Dose"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -44886,7 +43879,6 @@ dicom:dicom_30040005 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189179 dicom:dicom_00189179 rdf:type owl:DatatypeProperty ; @@ -44899,13 +43891,11 @@ dicom:dicom_00189179 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9179)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189239 dicom:dicom_00189239 rdf:type owl:DatatypeProperty ; @@ -44918,13 +43908,11 @@ dicom:dicom_00189239 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9239)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189181 dicom:dicom_00189181 rdf:type owl:DatatypeProperty ; @@ -44937,17 +43925,17 @@ dicom:dicom_00189181 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9181)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00041142 dicom:dicom_00041142 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Specific Character Set of File-set Descriptor File"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -44959,7 +43947,6 @@ dicom:dicom_00041142 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080005 dicom:dicom_00080005 rdf:type owl:DatatypeProperty ; @@ -44972,17 +43959,17 @@ dicom:dicom_00080005 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0005)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00820033 dicom:dicom_00820033 rdf:type owl:DatatypeProperty ; + dicom:VR "UT"^^xsd:string ; + rdfs:label "Specification Selection Guidance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -44994,7 +43981,6 @@ dicom:dicom_00820033 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080132 dicom:dicom_30080132 rdf:type owl:DatatypeProperty ; @@ -45003,17 +43989,15 @@ dicom:dicom_30080132 rdf:type owl:DatatypeProperty ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "Total amount of time in seconds, scaled for the current source delivery strength and other delivery factors, specified to be delivered at the time of treatment between the first Control Point and the final Control Point for the current Channel. In the case of resuming a partially delivered treatment, the Specified Channel Total time will only include the remainder to be treated. See ."^^xsd:string ; + obo:IAO_0000115 "Total amount of time in seconds, scaled for the current source delivery strength and other delivery factors, specified to be delivered at the time of treatment between the first Control Point and the final Control Point for the current Channel. In the case of resuming a partially delivered treatment, the Specified Channel Total time will only include the remainder to be treated. "^^xsd:string ; dicom:dicom_xxxx0065 "(3008,0132)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080042 dicom:dicom_30080042 rdf:type owl:DatatypeProperty ; @@ -45026,13 +44010,11 @@ dicom:dicom_30080042 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0042)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080136 dicom:dicom_30080136 rdf:type owl:DatatypeProperty ; @@ -45045,13 +44027,11 @@ dicom:dicom_30080136 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0136)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080032 dicom:dicom_30080032 rdf:type owl:DatatypeProperty ; @@ -45064,13 +44044,11 @@ dicom:dicom_30080032 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0032)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_3008013A dicom:dicom_3008013A rdf:type owl:DatatypeProperty ; @@ -45083,13 +44061,11 @@ dicom:dicom_3008013A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,013A)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080033 dicom:dicom_30080033 rdf:type owl:DatatypeProperty ; @@ -45102,13 +44078,11 @@ dicom:dicom_30080033 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0033)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_3008003A dicom:dicom_3008003A rdf:type owl:DatatypeProperty ; @@ -45121,17 +44095,17 @@ dicom:dicom_3008003A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,003A)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400560 dicom:dicom_00400560 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Specimen Description Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -45143,11 +44117,12 @@ dicom:dicom_00400560 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400602 dicom:dicom_00400602 rdf:type owl:DatatypeProperty ; + dicom:VR "UT"^^xsd:string ; + rdfs:label "Specimen Detailed Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -45159,7 +44134,6 @@ dicom:dicom_00400602 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400551 dicom:dicom_00400551 rdf:type owl:DatatypeProperty ; @@ -45172,17 +44146,17 @@ dicom:dicom_00400551 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,0551)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480010 dicom:dicom_00480010 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Specimen Label in Image"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -45194,11 +44168,12 @@ dicom:dicom_00480010 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400620 dicom:dicom_00400620 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Specimen Localization Content Item Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -45210,27 +44185,29 @@ dicom:dicom_00400620 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400610 dicom:dicom_00400610 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Specimen Preparation Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "Sequence of Items identifying the process steps used to prepare the specimen for image acquisition. This includes description of all processing necessary to interpret the image. This Sequence includes description of the specimen sampling step from an ancestor specimen, potentially back to the original part collection. See ."^^xsd:string ; + obo:IAO_0000115 "Sequence of Items identifying the process steps used to prepare the specimen for image acquisition. This includes description of all processing necessary to interpret the image. This Sequence includes description of the specimen sampling step from an ancestor specimen, potentially back to the original part collection. "^^xsd:string ; dicom:dicom_xxxx0065 "(0040,0610)"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400612 dicom:dicom_00400612 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Specimen Preparation Step Content Item Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -45242,11 +44219,12 @@ dicom:dicom_00400612 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480110 dicom:dicom_00480110 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Specimen Reference Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -45258,11 +44236,12 @@ dicom:dicom_00480110 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400600 dicom:dicom_00400600 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Specimen Short Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -45274,7 +44253,6 @@ dicom:dicom_00400600 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040059A dicom:dicom_0040059A rdf:type owl:DatatypeProperty ; @@ -45287,17 +44265,17 @@ dicom:dicom_0040059A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,059A)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400554 dicom:dicom_00400554 rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Specimen UID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -45309,7 +44287,6 @@ dicom:dicom_00400554 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189052 dicom:dicom_00189052 rdf:type owl:DatatypeProperty ; @@ -45322,13 +44299,11 @@ dicom:dicom_00189052 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9052)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189026 dicom:dicom_00189026 rdf:type owl:DatatypeProperty ; @@ -45341,13 +44316,11 @@ dicom:dicom_00189026 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9026)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189025 dicom:dicom_00189025 rdf:type owl:DatatypeProperty ; @@ -45360,14 +44333,11 @@ dicom:dicom_00189025 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9025)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00189127 dicom:dicom_00189127 rdf:type owl:DatatypeProperty ; @@ -45380,13 +44350,11 @@ dicom:dicom_00189127 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9127)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189159 dicom:dicom_00189159 rdf:type owl:DatatypeProperty ; @@ -45399,13 +44367,11 @@ dicom:dicom_00189159 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9159)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189234 dicom:dicom_00189234 rdf:type owl:DatatypeProperty ; @@ -45418,13 +44384,11 @@ dicom:dicom_00189234 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9234)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189095 dicom:dicom_00189095 rdf:type owl:DatatypeProperty ; @@ -45437,13 +44401,11 @@ dicom:dicom_00189095 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9095)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_56000020 dicom:dicom_56000020 rdf:type owl:DatatypeProperty ; @@ -45456,17 +44418,17 @@ dicom:dicom_56000020 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(5600,0020)"^^xsd:string ; - dicom:VR "OF"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460146 dicom:dicom_00460146 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Sphere Power"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -45490,17 +44452,17 @@ dicom:dicom_00220007 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0007)"^^xsd:string ; - dicom:VR "FL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189311 dicom:dicom_00189311 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Spiral Pitch Factor"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -45512,7 +44474,6 @@ dicom:dicom_00189311 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189016 dicom:dicom_00189016 rdf:type owl:DatatypeProperty ; @@ -45525,13 +44486,11 @@ dicom:dicom_00189016 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9016)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209056 dicom:dicom_00209056 rdf:type owl:DatatypeProperty ; @@ -45544,13 +44503,11 @@ dicom:dicom_00209056 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,9056)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040000A dicom:dicom_0040000A rdf:type owl:DatatypeProperty ; @@ -45563,13 +44520,11 @@ dicom:dicom_0040000A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,000A)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040000A dicom:dicom_0040000A rdf:type owl:DatatypeProperty ; @@ -45582,13 +44537,11 @@ dicom:dicom_0040000A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,000A)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00082120 dicom:dicom_00082120 rdf:type owl:DatatypeProperty ; @@ -45601,13 +44554,11 @@ dicom:dicom_00082120 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,2120)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00082122 dicom:dicom_00082122 rdf:type owl:DatatypeProperty ; @@ -45620,17 +44571,17 @@ dicom:dicom_00082122 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,2122)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189516 dicom:dicom_00189516 rdf:type owl:DatatypeProperty ; + dicom:VR "DT"^^xsd:string ; + rdfs:label "Start Acquisition DateTime"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -45642,7 +44593,6 @@ dicom:dicom_00189516 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540200 dicom:dicom_00540200 rdf:type owl:DatatypeProperty ; @@ -45655,17 +44605,17 @@ dicom:dicom_00540200 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0200)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189717 dicom:dicom_00189717 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Start Cardiac Trigger Count Threshold"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -45677,7 +44627,6 @@ dicom:dicom_00189717 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300C0008 dicom:dicom_300C0008 rdf:type owl:DatatypeProperty ; @@ -45690,17 +44639,17 @@ dicom:dicom_300C0008 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300C,0008)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189715 dicom:dicom_00189715 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Start Density Threshold"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -45712,7 +44661,6 @@ dicom:dicom_00189715 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080078 dicom:dicom_30080078 rdf:type owl:DatatypeProperty ; @@ -45725,17 +44673,17 @@ dicom:dicom_30080078 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0078)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189716 dicom:dicom_00189716 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Start Relative Density Difference Threshold"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -45747,11 +44695,12 @@ dicom:dicom_00189716 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189718 dicom:dicom_00189718 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Start Respiratory Trigger Count Threshold"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -45763,11 +44712,12 @@ dicom:dicom_00189718 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00082142 dicom:dicom_00082142 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Start Trim"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -45779,11 +44729,12 @@ dicom:dicom_00082142 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209246 dicom:dicom_00209246 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Starting Respiratory Amplitude"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -45795,11 +44746,12 @@ dicom:dicom_00209246 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209247 dicom:dicom_00209247 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Starting Respiratory Phase"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -45811,11 +44763,12 @@ dicom:dicom_00209247 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080055 dicom:dicom_00080055 rdf:type owl:DatatypeProperty ; + dicom:VR "AE"^^xsd:string ; + rdfs:label "Station AE Title"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -45827,7 +44780,6 @@ dicom:dicom_00080055 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081010 dicom:dicom_00081010 rdf:type owl:DatatypeProperty ; @@ -45840,13 +44792,11 @@ dicom:dicom_00081010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1010)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189017 dicom:dicom_00189017 rdf:type owl:DatatypeProperty ; @@ -45859,17 +44809,17 @@ dicom:dicom_00189017 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9017)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460074 dicom:dicom_00460074 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Steep Keratometric Axis Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -45881,7 +44831,6 @@ dicom:dicom_00460074 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186036 dicom:dicom_00186036 rdf:type owl:DatatypeProperty ; @@ -45894,13 +44843,11 @@ dicom:dicom_00186036 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6036)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220010 dicom:dicom_00220010 rdf:type owl:DatatypeProperty ; @@ -45913,13 +44860,11 @@ dicom:dicom_00220010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0010)"^^xsd:string ; - dicom:VR "FL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220011 dicom:dicom_00220011 rdf:type owl:DatatypeProperty ; @@ -45932,13 +44877,11 @@ dicom:dicom_00220011 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0011)"^^xsd:string ; - dicom:VR "FL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220012 dicom:dicom_00220012 rdf:type owl:DatatypeProperty ; @@ -45951,17 +44894,17 @@ dicom:dicom_00220012 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0012)"^^xsd:string ; - dicom:VR "FL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220028 dicom:dicom_00220028 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Stereo Pairs Present"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -45973,7 +44916,6 @@ dicom:dicom_00220028 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220020 dicom:dicom_00220020 rdf:type owl:DatatypeProperty ; @@ -45986,13 +44928,11 @@ dicom:dicom_00220020 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0020)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220014 dicom:dicom_00220014 rdf:type owl:DatatypeProperty ; @@ -46005,13 +44945,11 @@ dicom:dicom_00220014 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0014)"^^xsd:string ; - dicom:VR "FL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00220013 dicom:dicom_00220013 rdf:type owl:DatatypeProperty ; @@ -46024,17 +44962,17 @@ dicom:dicom_00220013 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0022,0013)"^^xsd:string ; - dicom:VR "FL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240042 dicom:dicom_00240042 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Stimuli Retesting Quantity"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46046,11 +44984,12 @@ dicom:dicom_00240042 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240025 dicom:dicom_00240025 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Stimulus Area"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46062,11 +45001,12 @@ dicom:dicom_00240025 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240021 dicom:dicom_00240021 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Stimulus Color Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46078,11 +45018,12 @@ dicom:dicom_00240021 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240028 dicom:dicom_00240028 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Stimulus Presentation Time"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46094,11 +45035,12 @@ dicom:dicom_00240028 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240093 dicom:dicom_00240093 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Stimulus Results"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46110,12 +45052,12 @@ dicom:dicom_00240093 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00082143 dicom:dicom_00082143 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Stop Trim"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46127,7 +45069,6 @@ dicom:dicom_00082143 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00880130 dicom:dicom_00880130 rdf:type owl:DatatypeProperty ; @@ -46140,17 +45081,17 @@ dicom:dicom_00880130 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0088,0130)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189936 dicom:dicom_00189936 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Storage Protocol Element Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46162,11 +45103,12 @@ dicom:dicom_00189936 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189935 dicom:dicom_00189935 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Storage Protocol Element Specification Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46178,11 +45120,12 @@ dicom:dicom_00189935 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00404073 dicom:dicom_00404073 rdf:type owl:DatatypeProperty ; + dicom:VR "UR"^^xsd:string ; + rdfs:label "Storage URL"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46194,11 +45137,12 @@ dicom:dicom_00404073 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100218 dicom:dicom_00100218 rdf:type owl:DatatypeProperty ; + dicom:VR "UT"^^xsd:string ; + rdfs:label "Strain Additional Information"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46210,11 +45154,12 @@ dicom:dicom_00100218 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100219 dicom:dicom_00100219 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Strain Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46226,11 +45171,12 @@ dicom:dicom_00100219 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100212 dicom:dicom_00100212 rdf:type owl:DatatypeProperty ; + dicom:VR "UC"^^xsd:string ; + rdfs:label "Strain Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46242,11 +45188,12 @@ dicom:dicom_00100212 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100213 dicom:dicom_00100213 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Strain Nomenclature"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46258,11 +45205,12 @@ dicom:dicom_00100213 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100215 dicom:dicom_00100215 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Strain Source Registry Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46274,11 +45222,12 @@ dicom:dicom_00100215 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100217 dicom:dicom_00100217 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Strain Source"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46290,11 +45239,12 @@ dicom:dicom_00100217 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100214 dicom:dicom_00100214 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Strain Stock Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46306,11 +45256,12 @@ dicom:dicom_00100214 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100216 dicom:dicom_00100216 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Strain Stock Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46322,7 +45273,6 @@ dicom:dicom_00100216 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060008 dicom:dicom_30060008 rdf:type owl:DatatypeProperty ; @@ -46335,13 +45285,11 @@ dicom:dicom_30060008 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0008)"^^xsd:string ; - dicom:VR "DA"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060006 dicom:dicom_30060006 rdf:type owl:DatatypeProperty ; @@ -46354,13 +45302,11 @@ dicom:dicom_30060006 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0006)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060002 dicom:dicom_30060002 rdf:type owl:DatatypeProperty ; @@ -46373,13 +45319,11 @@ dicom:dicom_30060002 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0002)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060004 dicom:dicom_30060004 rdf:type owl:DatatypeProperty ; @@ -46392,13 +45336,11 @@ dicom:dicom_30060004 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0004)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060020 dicom:dicom_30060020 rdf:type owl:DatatypeProperty ; @@ -46411,13 +45353,11 @@ dicom:dicom_30060020 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0020)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30060009 dicom:dicom_30060009 rdf:type owl:DatatypeProperty ; @@ -46430,17 +45370,17 @@ dicom:dicom_30060009 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3006,0009)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0082000C dicom:dicom_0082000C rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Structured Constraint Observation Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46452,11 +45392,12 @@ dicom:dicom_0082000C rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720420 dicom:dicom_00720420 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Structured Display Background CIELab Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46468,11 +45409,12 @@ dicom:dicom_00720420 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720422 dicom:dicom_00720422 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Structured Display Image Box Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46484,11 +45426,12 @@ dicom:dicom_00720422 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720424 dicom:dicom_00720424 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Structured Display Text Box Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46500,7 +45443,6 @@ dicom:dicom_00720424 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081200 dicom:dicom_00081200 rdf:type owl:DatatypeProperty ; @@ -46513,13 +45455,11 @@ dicom:dicom_00081200 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1200)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080020 dicom:dicom_00080020 rdf:type owl:DatatypeProperty ; @@ -46532,13 +45472,11 @@ dicom:dicom_00080020 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0020)"^^xsd:string ; - dicom:VR "DA"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081030 dicom:dicom_00081030 rdf:type owl:DatatypeProperty ; @@ -46551,13 +45489,11 @@ dicom:dicom_00081030 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,1030)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00200010 dicom:dicom_00200010 rdf:type owl:DatatypeProperty ; @@ -46570,14 +45506,11 @@ dicom:dicom_00200010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,0010)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_0020000D dicom:dicom_0020000D rdf:type owl:DatatypeProperty ; @@ -46590,14 +45523,11 @@ dicom:dicom_0020000D rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,000D)"^^xsd:string ; - dicom:VR "UI"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_0020000D dicom:dicom_0020000D rdf:type owl:DatatypeProperty ; @@ -46610,14 +45540,11 @@ dicom:dicom_0020000D rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,000D)"^^xsd:string ; - dicom:VR "UI"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00080030 dicom:dicom_00080030 rdf:type owl:DatatypeProperty ; @@ -46630,17 +45557,17 @@ dicom:dicom_00080030 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0030)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100028 dicom:dicom_00100028 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Subject Relative Position in Image"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46652,11 +45579,12 @@ dicom:dicom_00100028 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460098 dicom:dicom_00460098 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Subjective Refraction Left Eye Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46668,11 +45596,12 @@ dicom:dicom_00460098 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460097 dicom:dicom_00460097 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Subjective Refraction Right Eye Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46684,11 +45613,12 @@ dicom:dicom_00460097 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00289416 dicom:dicom_00289416 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Subtraction Item ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46700,12 +45630,12 @@ dicom:dicom_00289416 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00460232 dicom:dicom_00460232 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Surface Asymmetry Index"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46717,11 +45647,12 @@ dicom:dicom_00460232 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660004 dicom:dicom_00660004 rdf:type owl:DatatypeProperty ; + dicom:VR "LT"^^xsd:string ; + rdfs:label "Surface Comments"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46733,11 +45664,12 @@ dicom:dicom_00660004 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0066002A dicom:dicom_0066002A rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Surface Count"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46749,7 +45681,6 @@ dicom:dicom_0066002A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A012E dicom:dicom_300A012E rdf:type owl:DatatypeProperty ; @@ -46762,17 +45693,17 @@ dicom:dicom_300A012E rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,012E)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660013 dicom:dicom_00660013 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Surface Mesh Primitives Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46784,11 +45715,12 @@ dicom:dicom_00660013 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686360 dicom:dicom_00686360 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Surface Model Description Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46800,11 +45732,12 @@ dicom:dicom_00686360 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686380 dicom:dicom_00686380 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Surface Model Label"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46816,11 +45749,12 @@ dicom:dicom_00686380 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00686390 dicom:dicom_00686390 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Surface Model Scaling Factor"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46832,11 +45766,12 @@ dicom:dicom_00686390 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660003 dicom:dicom_00660003 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Surface Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46848,27 +45783,29 @@ dicom:dicom_00660003 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00800007 dicom:dicom_00800007 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Surface Point Color CIELab Value Data"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "Contains a vector of color triplets to assign colors to each point. The number of triplets shall be equal to the value of Number Of Surface Points (0066,0015) in the Points Macro. The units are PCS-Values, and the value is encoded as CIELab. See . Each triplet shall correspond to the respective point in the Point Coordinates Data (0066,0016)."^^xsd:string ; + obo:IAO_0000115 "Contains a vector of color triplets to assign colors to each point. The number of triplets shall be equal to the value of Number Of Surface Points (0066,0015) in the Points Macro. The units are PCS-Values, and the value is encoded as CIELab. Each triplet shall correspond to the respective point in the Point Coordinates Data (0066,0016)."^^xsd:string ; dicom:dicom_xxxx0065 "(0080,0007)"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00800006 dicom:dicom_00800006 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Surface Point Presentation Value Data"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46880,11 +45817,12 @@ dicom:dicom_00800006 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660012 dicom:dicom_00660012 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Surface Points Normals Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46896,11 +45834,12 @@ dicom:dicom_00660012 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660011 dicom:dicom_00660011 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Surface Points Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46912,11 +45851,12 @@ dicom:dicom_00660011 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660035 dicom:dicom_00660035 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Surface Processing Algorithm Identification Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46928,11 +45868,12 @@ dicom:dicom_00660035 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0066000B dicom:dicom_0066000B rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Surface Processing Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46944,11 +45885,12 @@ dicom:dicom_0066000B rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0066000A dicom:dicom_0066000A rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Surface Processing Ratio"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46960,11 +45902,12 @@ dicom:dicom_0066000A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660009 dicom:dicom_00660009 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Surface Processing"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46976,11 +45919,12 @@ dicom:dicom_00660009 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460230 dicom:dicom_00460230 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Surface Regularity Index"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -46992,11 +45936,12 @@ dicom:dicom_00460230 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00800001 dicom:dicom_00800001 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Surface Scan Acquisition Type Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -47008,11 +45953,12 @@ dicom:dicom_00800001 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00800002 dicom:dicom_00800002 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Surface Scan Mode Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -47024,11 +45970,12 @@ dicom:dicom_00800002 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660002 dicom:dicom_00660002 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Surface Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -47040,11 +45987,12 @@ dicom:dicom_00660002 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00760030 dicom:dicom_00760030 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Surgical Technique"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -47056,7 +46004,6 @@ dicom:dicom_00760030 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018106C dicom:dicom_0018106C rdf:type owl:DatatypeProperty ; @@ -47069,13 +46016,11 @@ dicom:dicom_0018106C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,106C)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00200200 dicom:dicom_00200200 rdf:type owl:DatatypeProperty ; @@ -47088,13 +46033,11 @@ dicom:dicom_00200200 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,0200)"^^xsd:string ; - dicom:VR "UI"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018106A dicom:dicom_0018106A rdf:type owl:DatatypeProperty ; @@ -47107,17 +46050,17 @@ dicom:dicom_0018106A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,106A)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720432 dicom:dicom_00720432 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Synchronized Image Box List"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -47129,11 +46072,12 @@ dicom:dicom_00720432 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720210 dicom:dicom_00720210 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Synchronized Scrolling Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -47145,7 +46089,6 @@ dicom:dicom_00720210 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181045 dicom:dicom_00181045 rdf:type owl:DatatypeProperty ; @@ -47158,13 +46101,11 @@ dicom:dicom_00181045 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1045)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189021 dicom:dicom_00189021 rdf:type owl:DatatypeProperty ; @@ -47177,13 +46118,11 @@ dicom:dicom_00189021 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9021)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00286120 dicom:dicom_00286120 rdf:type owl:DatatypeProperty ; @@ -47196,13 +46135,11 @@ dicom:dicom_00286120 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,6120)"^^xsd:string ; - dicom:VR "SS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018603D dicom:dicom_0018603D rdf:type owl:DatatypeProperty ; @@ -47215,13 +46152,11 @@ dicom:dicom_0018603D rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,603D)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186041 dicom:dicom_00186041 rdf:type owl:DatatypeProperty ; @@ -47234,13 +46169,11 @@ dicom:dicom_00186041 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6041)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018603F dicom:dicom_0018603F rdf:type owl:DatatypeProperty ; @@ -47253,13 +46186,11 @@ dicom:dicom_0018603F rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,603F)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186043 dicom:dicom_00186043 rdf:type owl:DatatypeProperty ; @@ -47272,13 +46203,11 @@ dicom:dicom_00186043 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6043)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181138 dicom:dicom_00181138 rdf:type owl:DatatypeProperty ; @@ -47291,17 +46220,17 @@ dicom:dicom_00181138 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1138)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189471 dicom:dicom_00189471 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Table Cradle Tilt Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -47313,11 +46242,12 @@ dicom:dicom_00189471 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189310 dicom:dicom_00189310 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Table Feed per Rotation"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -47329,11 +46259,12 @@ dicom:dicom_00189310 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189470 dicom:dicom_00189470 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Table Head Tilt Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -47345,11 +46276,12 @@ dicom:dicom_00189470 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181130 dicom:dicom_00181130 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Table Height"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -47361,11 +46293,12 @@ dicom:dicom_00181130 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189469 dicom:dicom_00189469 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Table Horizontal Rotation Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -47389,13 +46322,11 @@ dicom:dicom_00181136 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1136)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181137 dicom:dicom_00181137 rdf:type owl:DatatypeProperty ; @@ -47408,13 +46339,11 @@ dicom:dicom_00181137 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1137)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181134 dicom:dicom_00181134 rdf:type owl:DatatypeProperty ; @@ -47427,17 +46356,17 @@ dicom:dicom_00181134 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1134)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189406 dicom:dicom_00189406 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Table Position Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -47449,11 +46378,12 @@ dicom:dicom_00189406 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189327 dicom:dicom_00189327 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Table Position"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -47465,11 +46395,12 @@ dicom:dicom_00189327 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189309 dicom:dicom_00189309 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Table Speed"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -47481,7 +46412,6 @@ dicom:dicom_00189309 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A004E dicom:dicom_300A004E rdf:type owl:DatatypeProperty ; @@ -47494,13 +46424,11 @@ dicom:dicom_300A004E rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,004E)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0125 dicom:dicom_300A0125 rdf:type owl:DatatypeProperty ; @@ -47513,14 +46441,11 @@ dicom:dicom_300A0125 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0125)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_300A0124 dicom:dicom_300A0124 rdf:type owl:DatatypeProperty ; @@ -47533,13 +46458,11 @@ dicom:dicom_300A0124 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0124)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0126 dicom:dicom_300A0126 rdf:type owl:DatatypeProperty ; @@ -47552,13 +46475,11 @@ dicom:dicom_300A0126 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0126)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0126 dicom:dicom_300A0126 rdf:type owl:DatatypeProperty ; @@ -47571,13 +46492,11 @@ dicom:dicom_300A0126 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0126)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0053 dicom:dicom_300A0053 rdf:type owl:DatatypeProperty ; @@ -47590,13 +46509,11 @@ dicom:dicom_300A0053 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0053)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A012A dicom:dicom_300A012A rdf:type owl:DatatypeProperty ; @@ -47609,13 +46526,11 @@ dicom:dicom_300A012A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,012A)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A01D6 dicom:dicom_300A01D6 rdf:type owl:DatatypeProperty ; @@ -47628,13 +46543,11 @@ dicom:dicom_300A01D6 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,01D6)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0052 dicom:dicom_300A0052 rdf:type owl:DatatypeProperty ; @@ -47647,13 +46560,11 @@ dicom:dicom_300A0052 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0052)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0129 dicom:dicom_300A0129 rdf:type owl:DatatypeProperty ; @@ -47666,13 +46577,11 @@ dicom:dicom_300A0129 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0129)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A01D4 dicom:dicom_300A01D4 rdf:type owl:DatatypeProperty ; @@ -47685,17 +46594,17 @@ dicom:dicom_300A01D4 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,01D4)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A004F dicom:dicom_300A004F rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Table Top Pitch Angle Tolerance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -47707,11 +46616,12 @@ dicom:dicom_300A004F rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0140 dicom:dicom_300A0140 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Table Top Pitch Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -47723,11 +46633,12 @@ dicom:dicom_300A0140 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0142 dicom:dicom_300A0142 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Table Top Pitch Rotation Direction"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -47739,11 +46650,12 @@ dicom:dicom_300A0142 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0050 dicom:dicom_300A0050 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Table Top Roll Angle Tolerance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -47755,11 +46667,12 @@ dicom:dicom_300A0050 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0144 dicom:dicom_300A0144 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Table Top Roll Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -47771,11 +46684,12 @@ dicom:dicom_300A0144 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0146 dicom:dicom_300A0146 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Table Top Roll Rotation Direction"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -47787,7 +46701,6 @@ dicom:dicom_300A0146 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0051 dicom:dicom_300A0051 rdf:type owl:DatatypeProperty ; @@ -47800,13 +46713,11 @@ dicom:dicom_300A0051 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0051)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0128 dicom:dicom_300A0128 rdf:type owl:DatatypeProperty ; @@ -47819,13 +46730,11 @@ dicom:dicom_300A0128 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0128)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A01D2 dicom:dicom_300A01D2 rdf:type owl:DatatypeProperty ; @@ -47838,13 +46747,11 @@ dicom:dicom_300A01D2 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,01D2)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181131 dicom:dicom_00181131 rdf:type owl:DatatypeProperty ; @@ -47857,13 +46764,11 @@ dicom:dicom_00181131 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1131)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181131 dicom:dicom_00181131 rdf:type owl:DatatypeProperty ; @@ -47876,17 +46781,17 @@ dicom:dicom_00181131 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1131)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018113A dicom:dicom_0018113A rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Table Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -47898,7 +46803,6 @@ dicom:dicom_0018113A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181135 dicom:dicom_00181135 rdf:type owl:DatatypeProperty ; @@ -47911,17 +46815,17 @@ dicom:dicom_00181135 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1135)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189466 dicom:dicom_00189466 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Table X Position to Isocenter"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -47933,11 +46837,12 @@ dicom:dicom_00189466 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189467 dicom:dicom_00189467 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Table Y Position to Isocenter"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -47949,11 +46854,12 @@ dicom:dicom_00189467 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189468 dicom:dicom_00189468 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Table Z Position to Isocenter"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -47965,7 +46871,6 @@ dicom:dicom_00189468 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018605A dicom:dicom_0018605A rdf:type owl:DatatypeProperty ; @@ -47978,13 +46883,11 @@ dicom:dicom_0018605A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,605A)"^^xsd:string ; - dicom:VR "FL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186052 dicom:dicom_00186052 rdf:type owl:DatatypeProperty ; @@ -47997,13 +46900,11 @@ dicom:dicom_00186052 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6052)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186054 dicom:dicom_00186054 rdf:type owl:DatatypeProperty ; @@ -48016,13 +46917,11 @@ dicom:dicom_00186054 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6054)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189019 dicom:dicom_00189019 rdf:type owl:DatatypeProperty ; @@ -48035,13 +46934,11 @@ dicom:dicom_00189019 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9019)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189219 dicom:dicom_00189219 rdf:type owl:DatatypeProperty ; @@ -48054,13 +46951,11 @@ dicom:dicom_00189219 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9219)"^^xsd:string ; - dicom:VR "SS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189030 dicom:dicom_00189030 rdf:type owl:DatatypeProperty ; @@ -48073,13 +46968,11 @@ dicom:dicom_00189030 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9030)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189218 dicom:dicom_00189218 rdf:type owl:DatatypeProperty ; @@ -48092,13 +46985,11 @@ dicom:dicom_00189218 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9218)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189035 dicom:dicom_00189035 rdf:type owl:DatatypeProperty ; @@ -48111,13 +47002,11 @@ dicom:dicom_00189035 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9035)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189184 dicom:dicom_00189184 rdf:type owl:DatatypeProperty ; @@ -48130,13 +47019,11 @@ dicom:dicom_00189184 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9184)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189028 dicom:dicom_00189028 rdf:type owl:DatatypeProperty ; @@ -48149,17 +47036,17 @@ dicom:dicom_00189028 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9028)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460250 dicom:dicom_00460250 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Tangential Power"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48171,11 +47058,12 @@ dicom:dicom_00460250 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181412 dicom:dicom_00181412 rdf:type owl:DatatypeProperty ; + dicom:VR "DS"^^xsd:string ; + rdfs:label "Target Exposure Index"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48187,11 +47075,12 @@ dicom:dicom_00181412 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018991E dicom:dicom_0018991E rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Target Frame of Reference UID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48203,11 +47092,12 @@ dicom:dicom_0018991E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00182045 dicom:dicom_00182045 rdf:type owl:DatatypeProperty ; + dicom:VR "SH"^^xsd:string ; + rdfs:label "Target Label"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48219,7 +47109,6 @@ dicom:dicom_00182045 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0027 dicom:dicom_300A0027 rdf:type owl:DatatypeProperty ; @@ -48232,13 +47121,11 @@ dicom:dicom_300A0027 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0027)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0025 dicom:dicom_300A0025 rdf:type owl:DatatypeProperty ; @@ -48251,17 +47138,17 @@ dicom:dicom_300A0025 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0025)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0020103F dicom:dicom_0020103F rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Target Position Reference Indicator"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48273,7 +47160,6 @@ dicom:dicom_0020103F rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0026 dicom:dicom_300A0026 rdf:type owl:DatatypeProperty ; @@ -48286,17 +47172,17 @@ dicom:dicom_300A0026 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0026)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221037 dicom:dicom_00221037 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Target Refraction"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48308,11 +47194,12 @@ dicom:dicom_00221037 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00182042 dicom:dicom_00182042 rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Target UID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48324,7 +47211,6 @@ dicom:dicom_00182042 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0028 dicom:dicom_300A0028 rdf:type owl:DatatypeProperty ; @@ -48337,13 +47223,11 @@ dicom:dicom_300A0028 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0028)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040DB00 dicom:dicom_0040DB00 rdf:type owl:DatatypeProperty ; @@ -48356,13 +47240,11 @@ dicom:dicom_0040DB00 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,DB00)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0244 dicom:dicom_300A0244 rdf:type owl:DatatypeProperty ; @@ -48375,13 +47257,11 @@ dicom:dicom_300A0244 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0244)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0240 dicom:dicom_300A0240 rdf:type owl:DatatypeProperty ; @@ -48394,13 +47274,11 @@ dicom:dicom_300A0240 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0240)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0242 dicom:dicom_300A0242 rdf:type owl:DatatypeProperty ; @@ -48413,13 +47291,11 @@ dicom:dicom_300A0242 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0242)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00200100 dicom:dicom_00200100 rdf:type owl:DatatypeProperty ; @@ -48432,13 +47308,11 @@ dicom:dicom_00200100 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,0100)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209128 dicom:dicom_00209128 rdf:type owl:DatatypeProperty ; @@ -48451,17 +47325,17 @@ dicom:dicom_00209128 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,9128)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00209310 dicom:dicom_00209310 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Temporal Position Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48473,11 +47347,12 @@ dicom:dicom_00209310 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0020930D dicom:dicom_0020930D rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Temporal Position Time Offset"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48489,7 +47364,6 @@ dicom:dicom_0020930D rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A130 dicom:dicom_0040A130 rdf:type owl:DatatypeProperty ; @@ -48502,15 +47376,11 @@ dicom:dicom_0040A130 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A130)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - - ### http://purl.org/nidash/dicom#dicom_00200110 dicom:dicom_00200110 rdf:type owl:DatatypeProperty ; @@ -48523,17 +47393,17 @@ dicom:dicom_00200110 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0020,0110)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189723 dicom:dicom_00189723 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Termination Cardiac Trigger Count Threshold"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48545,11 +47415,12 @@ dicom:dicom_00189723 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189719 dicom:dicom_00189719 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Termination Counts Threshold"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48561,11 +47432,12 @@ dicom:dicom_00189719 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189720 dicom:dicom_00189720 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Termination Density Threshold"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48577,11 +47449,12 @@ dicom:dicom_00189720 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189721 dicom:dicom_00189721 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Termination Relative Density Threshold"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48593,11 +47466,12 @@ dicom:dicom_00189721 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189724 dicom:dicom_00189724 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Termination Respiratory Trigger Count Threshold"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48609,11 +47483,12 @@ dicom:dicom_00189724 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189722 dicom:dicom_00189722 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Termination Time Threshold"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48625,11 +47500,12 @@ dicom:dicom_00189722 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240057 dicom:dicom_00240057 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Test Point Normals Data Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48641,11 +47517,12 @@ dicom:dicom_00240057 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240058 dicom:dicom_00240058 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Test Point Normals Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48657,11 +47534,12 @@ dicom:dicom_00240058 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700241 dicom:dicom_00700241 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Text Color CIELab Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48673,7 +47551,6 @@ dicom:dicom_00700241 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700008 dicom:dicom_00700008 rdf:type owl:DatatypeProperty ; @@ -48686,17 +47563,17 @@ dicom:dicom_00700008 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0008)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700231 dicom:dicom_00700231 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Text Style Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48708,11 +47585,12 @@ dicom:dicom_00700231 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A160 dicom:dicom_0040A160 rdf:type owl:DatatypeProperty ; + dicom:VR "UT"^^xsd:string ; + rdfs:label "Text Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48724,11 +47602,12 @@ dicom:dicom_0040A160 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00800009 dicom:dicom_00800009 rdf:type owl:DatatypeProperty ; + dicom:VR "SH"^^xsd:string ; + rdfs:label "Texture Label"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48740,11 +47619,12 @@ dicom:dicom_00800009 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700274 dicom:dicom_00700274 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Tick Alignment"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48756,11 +47636,12 @@ dicom:dicom_00700274 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700279 dicom:dicom_00700279 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Tick Label Alignment"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48772,11 +47653,12 @@ dicom:dicom_00700279 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700289 dicom:dicom_00700289 rdf:type owl:DatatypeProperty ; + dicom:VR "SH"^^xsd:string ; + rdfs:label "Tick Label"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48788,11 +47670,12 @@ dicom:dicom_00700289 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700288 dicom:dicom_00700288 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Tick Position"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48804,11 +47687,12 @@ dicom:dicom_00700288 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720030 dicom:dicom_00720030 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Time Based Image Sets Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48820,7 +47704,6 @@ dicom:dicom_00720030 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181802 dicom:dicom_00181802 rdf:type owl:DatatypeProperty ; @@ -48833,13 +47716,11 @@ dicom:dicom_00181802 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1802)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189065 dicom:dicom_00189065 rdf:type owl:DatatypeProperty ; @@ -48852,17 +47733,17 @@ dicom:dicom_00189065 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9065)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00081163 dicom:dicom_00081163 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Time Range"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -48874,7 +47755,6 @@ dicom:dicom_00081163 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540100 dicom:dicom_00540100 rdf:type owl:DatatypeProperty ; @@ -48887,13 +47767,11 @@ dicom:dicom_00540100 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0100)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540072 dicom:dicom_00540072 rdf:type owl:DatatypeProperty ; @@ -48906,13 +47784,11 @@ dicom:dicom_00540072 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0072)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540073 dicom:dicom_00540073 rdf:type owl:DatatypeProperty ; @@ -48925,13 +47801,11 @@ dicom:dicom_00540073 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0073)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540070 dicom:dicom_00540070 rdf:type owl:DatatypeProperty ; @@ -48944,13 +47818,11 @@ dicom:dicom_00540070 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0070)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181801 dicom:dicom_00181801 rdf:type owl:DatatypeProperty ; @@ -48963,13 +47835,11 @@ dicom:dicom_00181801 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1801)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189015 dicom:dicom_00189015 rdf:type owl:DatatypeProperty ; @@ -48982,17 +47852,17 @@ dicom:dicom_00189015 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9015)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189755 dicom:dicom_00189755 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Time of Flight Information Used"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49004,7 +47874,6 @@ dicom:dicom_00189755 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181201 dicom:dicom_00181201 rdf:type owl:DatatypeProperty ; @@ -49017,13 +47886,11 @@ dicom:dicom_00181201 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1201)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018700E dicom:dicom_0018700E rdf:type owl:DatatypeProperty ; @@ -49036,13 +47903,11 @@ dicom:dicom_0018700E rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,700E)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181014 dicom:dicom_00181014 rdf:type owl:DatatypeProperty ; @@ -49055,17 +47920,17 @@ dicom:dicom_00181014 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1014)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A122 dicom:dicom_0040A122 rdf:type owl:DatatypeProperty ; + dicom:VR "TM"^^xsd:string ; + rdfs:label "Time"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49077,7 +47942,6 @@ dicom:dicom_0040A122 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080201 dicom:dicom_00080201 rdf:type owl:DatatypeProperty ; @@ -49090,13 +47954,11 @@ dicom:dicom_00080201 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,0201)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30040014 dicom:dicom_30040014 rdf:type owl:DatatypeProperty ; @@ -49109,13 +47971,11 @@ dicom:dicom_30040014 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3004,0014)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0043 dicom:dicom_300A0043 rdf:type owl:DatatypeProperty ; @@ -49128,13 +47988,11 @@ dicom:dicom_300A0043 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0043)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0042 dicom:dicom_300A0042 rdf:type owl:DatatypeProperty ; @@ -49147,13 +48005,11 @@ dicom:dicom_300A0042 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0042)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0040 dicom:dicom_300A0040 rdf:type owl:DatatypeProperty ; @@ -49166,13 +48022,11 @@ dicom:dicom_300A0040 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0040)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181470 dicom:dicom_00181470 rdf:type owl:DatatypeProperty ; @@ -49185,13 +48039,11 @@ dicom:dicom_00181470 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1470)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181491 dicom:dicom_00181491 rdf:type owl:DatatypeProperty ; @@ -49204,13 +48056,11 @@ dicom:dicom_00181491 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1491)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181460 dicom:dicom_00181460 rdf:type owl:DatatypeProperty ; @@ -49223,13 +48073,11 @@ dicom:dicom_00181460 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1460)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181480 dicom:dicom_00181480 rdf:type owl:DatatypeProperty ; @@ -49242,13 +48090,11 @@ dicom:dicom_00181480 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1480)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181490 dicom:dicom_00181490 rdf:type owl:DatatypeProperty ; @@ -49261,17 +48107,17 @@ dicom:dicom_00181490 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1490)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480201 dicom:dicom_00480201 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Top Left Hand Corner of Localizer Area"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49283,7 +48129,6 @@ dicom:dicom_00480201 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00F2 dicom:dicom_300A00F2 rdf:type owl:DatatypeProperty ; @@ -49296,17 +48141,17 @@ dicom:dicom_300A00F2 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00F2)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189307 dicom:dicom_00189307 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Total Collimation Width"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49318,8 +48163,6 @@ dicom:dicom_00189307 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_300A00E2 dicom:dicom_300A00E2 rdf:type owl:DatatypeProperty ; @@ -49332,33 +48175,34 @@ dicom:dicom_300A00E2 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00E2)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480006 dicom:dicom_00480006 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Total Pixel Matrix Columns"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "Total number of columns in pixel matrix; i.e., width of total imaged volume in pixels. See"^^xsd:string ; + obo:IAO_0000115 "Total number of columns in pixel matrix; i.e., width of total imaged volume in pixels."^^xsd:string ; dicom:dicom_xxxx0065 "(0048,0006)"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480008 dicom:dicom_00480008 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Total Pixel Matrix Origin Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49370,23 +48214,23 @@ dicom:dicom_00480008 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00480007 dicom:dicom_00480007 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Total Pixel Matrix Rows"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; - obo:IAO_0000115 "Total number of rows in pixel matrix; i.e., height of total imaged volume in pixels. See"^^xsd:string ; + obo:IAO_0000115 "Total number of rows in pixel matrix; i.e., height of total imaged volume in pixels."^^xsd:string ; dicom:dicom_xxxx0065 "(0048,0007)"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0250 dicom:dicom_300A0250 rdf:type owl:DatatypeProperty ; @@ -49399,17 +48243,17 @@ dicom:dicom_300A0250 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0250)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660129 dicom:dicom_00660129 rdf:type owl:DatatypeProperty ; + dicom:VR "OL"^^xsd:string ; + rdfs:label "Track Point Index List"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49421,11 +48265,12 @@ dicom:dicom_00660129 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660102 dicom:dicom_00660102 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Track Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49437,11 +48282,12 @@ dicom:dicom_00660102 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660108 dicom:dicom_00660108 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Track Set Anatomical Type Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49453,11 +48299,12 @@ dicom:dicom_00660108 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660107 dicom:dicom_00660107 rdf:type owl:DatatypeProperty ; + dicom:VR "UT"^^xsd:string ; + rdfs:label "Track Set Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49469,11 +48316,12 @@ dicom:dicom_00660107 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660106 dicom:dicom_00660106 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Track Set Label"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49485,11 +48333,12 @@ dicom:dicom_00660106 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660105 dicom:dicom_00660105 rdf:type owl:DatatypeProperty ; + dicom:VR "UL"^^xsd:string ; + rdfs:label "Track Set Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49501,11 +48350,12 @@ dicom:dicom_00660105 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660101 dicom:dicom_00660101 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Track Set Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49517,11 +48367,12 @@ dicom:dicom_00660101 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660124 dicom:dicom_00660124 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Track Set Statistics Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49533,11 +48384,12 @@ dicom:dicom_00660124 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660130 dicom:dicom_00660130 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Track Statistics Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49549,11 +48401,12 @@ dicom:dicom_00660130 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660104 dicom:dicom_00660104 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Tracking Algorithm Identification Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49565,11 +48418,12 @@ dicom:dicom_00660104 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00620020 dicom:dicom_00620020 rdf:type owl:DatatypeProperty ; + dicom:VR "UT"^^xsd:string ; + rdfs:label "Tracking ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49581,11 +48435,12 @@ dicom:dicom_00620020 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00620021 dicom:dicom_00620021 rdf:type owl:DatatypeProperty ; + dicom:VR "UI"^^xsd:string ; + rdfs:label "Tracking UID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49597,11 +48452,12 @@ dicom:dicom_00620021 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018980F dicom:dicom_0018980F rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Transducer Application Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49613,11 +48469,12 @@ dicom:dicom_0018980F rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018980E dicom:dicom_0018980E rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Transducer Beam Steering Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49629,7 +48486,6 @@ dicom:dicom_0018980E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00185010 dicom:dicom_00185010 rdf:type owl:DatatypeProperty ; @@ -49642,13 +48498,11 @@ dicom:dicom_00185010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,5010)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00185010 dicom:dicom_00185010 rdf:type owl:DatatypeProperty ; @@ -49661,13 +48515,11 @@ dicom:dicom_00185010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,5010)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186030 dicom:dicom_00186030 rdf:type owl:DatatypeProperty ; @@ -49680,17 +48532,17 @@ dicom:dicom_00186030 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6030)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018980D dicom:dicom_0018980D rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Transducer Geometry Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49702,11 +48554,12 @@ dicom:dicom_0018980D rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189809 dicom:dicom_00189809 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Transducer Scan Pattern Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49718,7 +48571,6 @@ dicom:dicom_00189809 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00186031 dicom:dicom_00186031 rdf:type owl:DatatypeProperty ; @@ -49731,13 +48583,11 @@ dicom:dicom_00186031 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,6031)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A02A4 dicom:dicom_300A02A4 rdf:type owl:DatatypeProperty ; @@ -49750,13 +48600,11 @@ dicom:dicom_300A02A4 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,02A4)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A02A2 dicom:dicom_300A02A2 rdf:type owl:DatatypeProperty ; @@ -49769,17 +48617,17 @@ dicom:dicom_300A02A2 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,02A2)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221513 dicom:dicom_00221513 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Transformation Algorithm Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49791,11 +48639,12 @@ dicom:dicom_00221513 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221512 dicom:dicom_00221512 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Transformation Method Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49807,7 +48656,6 @@ dicom:dicom_00221512 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189050 dicom:dicom_00189050 rdf:type owl:DatatypeProperty ; @@ -49820,13 +48668,11 @@ dicom:dicom_00189050 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9050)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181251 dicom:dicom_00181251 rdf:type owl:DatatypeProperty ; @@ -49839,14 +48685,11 @@ dicom:dicom_00181251 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1251)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00189051 dicom:dicom_00189051 rdf:type owl:DatatypeProperty ; @@ -49859,13 +48702,11 @@ dicom:dicom_00189051 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9051)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189098 dicom:dicom_00189098 rdf:type owl:DatatypeProperty ; @@ -49878,17 +48719,17 @@ dicom:dicom_00189098 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9098)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189726 dicom:dicom_00189726 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Transverse Detector Separation"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49900,7 +48741,6 @@ dicom:dicom_00189726 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541202 dicom:dicom_00541202 rdf:type owl:DatatypeProperty ; @@ -49913,17 +48753,17 @@ dicom:dicom_00541202 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1202)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0355 dicom:dicom_300A0355 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Tray Accessory Code"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49935,7 +48775,6 @@ dicom:dicom_300A0355 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080024 dicom:dicom_30080024 rdf:type owl:DatatypeProperty ; @@ -49948,14 +48787,11 @@ dicom:dicom_30080024 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0024)"^^xsd:string ; - dicom:VR "DA"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_30080025 dicom:dicom_30080025 rdf:type owl:DatatypeProperty ; @@ -49968,18 +48804,17 @@ dicom:dicom_30080025 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0025)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_30080250 dicom:dicom_30080250 rdf:type owl:DatatypeProperty ; + dicom:VR "DA"^^xsd:string ; + rdfs:label "Treatment Date"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -49991,7 +48826,6 @@ dicom:dicom_30080250 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00CE dicom:dicom_300A00CE rdf:type owl:DatatypeProperty ; @@ -50004,13 +48838,11 @@ dicom:dicom_300A00CE rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00CE)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00B2 dicom:dicom_300A00B2 rdf:type owl:DatatypeProperty ; @@ -50023,13 +48855,11 @@ dicom:dicom_300A00B2 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00B2)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00B2 dicom:dicom_300A00B2 rdf:type owl:DatatypeProperty ; @@ -50042,13 +48872,11 @@ dicom:dicom_300A00B2 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00B2)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0206 dicom:dicom_300A0206 rdf:type owl:DatatypeProperty ; @@ -50061,13 +48889,11 @@ dicom:dicom_300A0206 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0206)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0009 dicom:dicom_300A0009 rdf:type owl:DatatypeProperty ; @@ -50080,13 +48906,11 @@ dicom:dicom_300A0009 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0009)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080110 dicom:dicom_30080110 rdf:type owl:DatatypeProperty ; @@ -50099,13 +48923,11 @@ dicom:dicom_30080110 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0110)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080020 dicom:dicom_30080020 rdf:type owl:DatatypeProperty ; @@ -50118,13 +48940,11 @@ dicom:dicom_30080020 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0020)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A000B dicom:dicom_300A000B rdf:type owl:DatatypeProperty ; @@ -50137,13 +48957,11 @@ dicom:dicom_300A000B rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,000B)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080202 dicom:dicom_30080202 rdf:type owl:DatatypeProperty ; @@ -50156,13 +48974,11 @@ dicom:dicom_30080202 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0202)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080050 dicom:dicom_30080050 rdf:type owl:DatatypeProperty ; @@ -50175,13 +48991,11 @@ dicom:dicom_30080050 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0050)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300800E0 dicom:dicom_300800E0 rdf:type owl:DatatypeProperty ; @@ -50194,13 +49008,11 @@ dicom:dicom_300800E0 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,00E0)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_3008002B dicom:dicom_3008002B rdf:type owl:DatatypeProperty ; @@ -50213,13 +49025,11 @@ dicom:dicom_3008002B rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,002B)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_3008002A dicom:dicom_3008002A rdf:type owl:DatatypeProperty ; @@ -50232,13 +49042,11 @@ dicom:dicom_3008002A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,002A)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080251 dicom:dicom_30080251 rdf:type owl:DatatypeProperty ; @@ -50251,13 +49059,11 @@ dicom:dicom_30080251 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0251)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_30080251 dicom:dicom_30080251 rdf:type owl:DatatypeProperty ; @@ -50270,13 +49076,11 @@ dicom:dicom_30080251 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,0251)"^^xsd:string ; - dicom:VR "TM"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_3008002C dicom:dicom_3008002C rdf:type owl:DatatypeProperty ; @@ -50289,17 +49093,17 @@ dicom:dicom_3008002C rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(3008,002C)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660027 dicom:dicom_00660027 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Triangle Fan Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50311,11 +49115,12 @@ dicom:dicom_00660027 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660026 dicom:dicom_00660026 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Triangle Strip Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50327,7 +49132,6 @@ dicom:dicom_00660026 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018106E dicom:dicom_0018106E rdf:type owl:DatatypeProperty ; @@ -50340,13 +49144,11 @@ dicom:dicom_0018106E rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,106E)"^^xsd:string ; - dicom:VR "UL"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181061 dicom:dicom_00181061 rdf:type owl:DatatypeProperty ; @@ -50359,13 +49161,11 @@ dicom:dicom_00181061 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1061)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181069 dicom:dicom_00181069 rdf:type owl:DatatypeProperty ; @@ -50378,14 +49178,11 @@ dicom:dicom_00181069 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1069)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00181060 dicom:dicom_00181060 rdf:type owl:DatatypeProperty ; @@ -50398,13 +49195,11 @@ dicom:dicom_00181060 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1060)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540210 dicom:dicom_00540210 rdf:type owl:DatatypeProperty ; @@ -50417,13 +49212,11 @@ dicom:dicom_00540210 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0210)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181094 dicom:dicom_00181094 rdf:type owl:DatatypeProperty ; @@ -50436,17 +49229,17 @@ dicom:dicom_00181094 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1094)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189303 dicom:dicom_00189303 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Tube Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50458,12 +49251,12 @@ dicom:dicom_00189303 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00221518 dicom:dicom_00221518 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Two Dimensional to Three Dimensional Map Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50475,7 +49268,6 @@ dicom:dicom_00221518 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540202 dicom:dicom_00540202 rdf:type owl:DatatypeProperty ; @@ -50488,13 +49280,11 @@ dicom:dicom_00540202 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0202)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181161 dicom:dicom_00181161 rdf:type owl:DatatypeProperty ; @@ -50507,17 +49297,17 @@ dicom:dicom_00181161 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1161)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040E020 dicom:dicom_0040E020 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Type of Instances"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50529,11 +49319,12 @@ dicom:dicom_0040E020 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00100022 dicom:dicom_00100022 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Type of Patient ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50545,11 +49336,12 @@ dicom:dicom_00100022 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720434 dicom:dicom_00720434 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Type of Synchronization"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50561,11 +49353,12 @@ dicom:dicom_00720434 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00800010 dicom:dicom_00800010 rdf:type owl:DatatypeProperty ; + dicom:VR "OF"^^xsd:string ; + rdfs:label "U Value Data"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50577,11 +49370,12 @@ dicom:dicom_00800010 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0018100A dicom:dicom_0018100A rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "UDI Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50593,8 +49387,6 @@ dicom:dicom_0018100A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_0040A124 dicom:dicom_0040A124 rdf:type owl:DatatypeProperty ; @@ -50607,17 +49399,17 @@ dicom:dicom_0040A124 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A124)"^^xsd:string ; - dicom:VR "UI"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00080120 dicom:dicom_00080120 rdf:type owl:DatatypeProperty ; + dicom:VR "UR"^^xsd:string ; + rdfs:label "URN Code Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50629,11 +49421,12 @@ dicom:dicom_00080120 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189806 dicom:dicom_00189806 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "US Image Description Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50645,11 +49438,12 @@ dicom:dicom_00189806 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00800008 dicom:dicom_00800008 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "UV Mapping Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50661,7 +49455,6 @@ dicom:dicom_00800008 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280014 dicom:dicom_00280014 rdf:type owl:DatatypeProperty ; @@ -50674,17 +49467,17 @@ dicom:dicom_00280014 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,0014)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221220 dicom:dicom_00221220 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Ultrasound Ophthalmic Axial Length Measurements Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50696,11 +49489,12 @@ dicom:dicom_00221220 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221230 dicom:dicom_00221230 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Ultrasound Selected Ophthalmic Axial Length Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50712,11 +49506,12 @@ dicom:dicom_00221230 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700248 dicom:dicom_00700248 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Underlined"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50728,8 +49523,6 @@ dicom:dicom_00700248 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00700006 dicom:dicom_00700006 rdf:type owl:DatatypeProperty ; @@ -50742,17 +49535,17 @@ dicom:dicom_00700006 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0006)"^^xsd:string ; - dicom:VR "ST"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181009 dicom:dicom_00181009 rdf:type owl:DatatypeProperty ; + dicom:VR "UT"^^xsd:string ; + rdfs:label "Unique Device Identifier"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50764,7 +49557,6 @@ dicom:dicom_00181009 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00541001 dicom:dicom_00541001 rdf:type owl:DatatypeProperty ; @@ -50777,17 +49569,17 @@ dicom:dicom_00541001 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,1001)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400033 dicom:dicom_00400033 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Universal Entity ID Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50799,11 +49591,12 @@ dicom:dicom_00400033 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400032 dicom:dicom_00400032 rdf:type owl:DatatypeProperty ; + dicom:VR "UT"^^xsd:string ; + rdfs:label "Universal Entity ID"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50815,11 +49608,12 @@ dicom:dicom_00400032 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460016 dicom:dicom_00460016 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Unspecified Laterality Lens Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50831,7 +49625,6 @@ dicom:dicom_00460016 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700314 dicom:dicom_00700314 rdf:type owl:DatatypeProperty ; @@ -50844,17 +49637,17 @@ dicom:dicom_00700314 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0070,0314)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00620012 dicom:dicom_00620012 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Used Segments Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50866,11 +49659,12 @@ dicom:dicom_00620012 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00800011 dicom:dicom_00800011 rdf:type owl:DatatypeProperty ; + dicom:VR "OF"^^xsd:string ; + rdfs:label "V Value Data"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50882,11 +49676,12 @@ dicom:dicom_00800011 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281056 dicom:dicom_00281056 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "VOI LUT Function"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50898,7 +49693,6 @@ dicom:dicom_00281056 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00283010 dicom:dicom_00283010 rdf:type owl:DatatypeProperty ; @@ -50911,17 +49705,17 @@ dicom:dicom_00283010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,3010)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00720702 dicom:dicom_00720702 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "VOI Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50933,11 +49727,12 @@ dicom:dicom_00720702 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A040 dicom:dicom_0040A040 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Value Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50949,7 +49744,6 @@ dicom:dicom_0040A040 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181315 dicom:dicom_00181315 rdf:type owl:DatatypeProperty ; @@ -50962,17 +49756,17 @@ dicom:dicom_00181315 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1315)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660020 dicom:dicom_00660020 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Vector Accuracy"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -50984,11 +49778,12 @@ dicom:dicom_00660020 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00660021 dicom:dicom_00660021 rdf:type owl:DatatypeProperty ; + dicom:VR "OF"^^xsd:string ; + rdfs:label "Vector Coordinate Data"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51000,11 +49795,12 @@ dicom:dicom_00660021 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0066001F dicom:dicom_0066001F rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Vector Dimensionality"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51016,11 +49812,12 @@ dicom:dicom_0066001F rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00640009 dicom:dicom_00640009 rdf:type owl:DatatypeProperty ; + dicom:VR "OF"^^xsd:string ; + rdfs:label "Vector Grid Data"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51032,11 +49829,12 @@ dicom:dicom_00640009 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189092 dicom:dicom_00189092 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Velocity Encoding Acquisition Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51048,7 +49846,6 @@ dicom:dicom_00189092 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189090 dicom:dicom_00189090 rdf:type owl:DatatypeProperty ; @@ -51061,13 +49858,11 @@ dicom:dicom_00189090 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9090)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189217 dicom:dicom_00189217 rdf:type owl:DatatypeProperty ; @@ -51080,13 +49875,11 @@ dicom:dicom_00189217 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9217)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189091 dicom:dicom_00189091 rdf:type owl:DatatypeProperty ; @@ -51099,13 +49892,11 @@ dicom:dicom_00189091 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9091)"^^xsd:string ; - dicom:VR "FD"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A030 dicom:dicom_0040A030 rdf:type owl:DatatypeProperty ; @@ -51118,13 +49909,11 @@ dicom:dicom_0040A030 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A030)"^^xsd:string ; - dicom:VR "DT"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A493 dicom:dicom_0040A493 rdf:type owl:DatatypeProperty ; @@ -51137,13 +49926,11 @@ dicom:dicom_0040A493 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A493)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A493 dicom:dicom_0040A493 rdf:type owl:DatatypeProperty ; @@ -51156,13 +49943,11 @@ dicom:dicom_0040A493 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A493)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A088 dicom:dicom_0040A088 rdf:type owl:DatatypeProperty ; @@ -51175,13 +49960,11 @@ dicom:dicom_0040A088 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A088)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A075 dicom:dicom_0040A075 rdf:type owl:DatatypeProperty ; @@ -51194,13 +49977,11 @@ dicom:dicom_0040A075 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A075)"^^xsd:string ; - dicom:VR "PN"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A073 dicom:dicom_0040A073 rdf:type owl:DatatypeProperty ; @@ -51213,13 +49994,11 @@ dicom:dicom_0040A073 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A073)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040A027 dicom:dicom_0040A027 rdf:type owl:DatatypeProperty ; @@ -51232,17 +50011,17 @@ dicom:dicom_0040A027 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,A027)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00700243 dicom:dicom_00700243 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Vertical Alignment"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51254,11 +50033,12 @@ dicom:dicom_00700243 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460036 dicom:dicom_00460036 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Vertical Prism Base"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51270,11 +50050,12 @@ dicom:dicom_00460036 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460034 dicom:dicom_00460034 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Vertical Prism Power"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51286,11 +50067,12 @@ dicom:dicom_00460034 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460208 dicom:dicom_00460208 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Vertices of the Outline of Pupil"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51302,7 +50084,6 @@ dicom:dicom_00460208 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181720 dicom:dicom_00181720 rdf:type owl:DatatypeProperty ; @@ -51315,17 +50096,17 @@ dicom:dicom_00181720 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1720)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189442 dicom:dicom_00189442 rdf:type owl:DatatypeProperty ; + dicom:VR "SS"^^xsd:string ; + rdfs:label "Vertices of the Polygonal Exposure Control Sensing Region"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51337,11 +50118,12 @@ dicom:dicom_00189442 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181620 dicom:dicom_00181620 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "Vertices of the Polygonal Shutter"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51353,11 +50135,12 @@ dicom:dicom_00181620 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00289503 dicom:dicom_00289503 rdf:type owl:DatatypeProperty ; + dicom:VR "SS"^^xsd:string ; + rdfs:label "Vertices of the Region"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51369,7 +50152,6 @@ dicom:dicom_00289503 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181022 dicom:dicom_00181022 rdf:type owl:DatatypeProperty ; @@ -51382,13 +50164,11 @@ dicom:dicom_00181022 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1022)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540220 dicom:dicom_00540220 rdf:type owl:DatatypeProperty ; @@ -51401,13 +50181,11 @@ dicom:dicom_00540220 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0220)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00540222 dicom:dicom_00540222 rdf:type owl:DatatypeProperty ; @@ -51420,13 +50198,11 @@ dicom:dicom_00540222 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0054,0222)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00082127 dicom:dicom_00082127 rdf:type owl:DatatypeProperty ; @@ -51439,13 +50215,11 @@ dicom:dicom_00082127 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,2127)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00082128 dicom:dicom_00082128 rdf:type owl:DatatypeProperty ; @@ -51458,17 +50232,17 @@ dicom:dicom_00082128 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,2128)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006862E0 dicom:dicom_006862E0 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "View Orientation Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51480,11 +50254,12 @@ dicom:dicom_006862E0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_006862F0 dicom:dicom_006862F0 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "View Orientation Modifier Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51496,12 +50271,12 @@ dicom:dicom_006862F0 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00185101 dicom:dicom_00185101 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "View Position"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51513,11 +50288,12 @@ dicom:dicom_00185101 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460125 dicom:dicom_00460125 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Viewing Distance Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51529,11 +50305,12 @@ dicom:dicom_00460125 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460106 dicom:dicom_00460106 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Viewing Distance"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51545,11 +50322,12 @@ dicom:dicom_00460106 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460124 dicom:dicom_00460124 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Visual Acuity Both Eyes Open Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51561,11 +50339,12 @@ dicom:dicom_00460124 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460123 dicom:dicom_00460123 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Visual Acuity Left Eye Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51577,11 +50356,12 @@ dicom:dicom_00460123 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240110 dicom:dicom_00240110 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Visual Acuity Measurement Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51593,11 +50373,12 @@ dicom:dicom_00240110 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460135 dicom:dicom_00460135 rdf:type owl:DatatypeProperty ; + dicom:VR "SS"^^xsd:string ; + rdfs:label "Visual Acuity Modifiers"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51609,11 +50390,12 @@ dicom:dicom_00460135 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460122 dicom:dicom_00460122 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Visual Acuity Right Eye Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51625,11 +50407,12 @@ dicom:dicom_00460122 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00460121 dicom:dicom_00460121 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Visual Acuity Type Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51641,11 +50424,12 @@ dicom:dicom_00460121 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240034 dicom:dicom_00240034 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Visual Field Catch Trial Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51657,11 +50441,12 @@ dicom:dicom_00240034 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240320 dicom:dicom_00240320 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Visual Field Global Results Index Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51673,11 +50458,12 @@ dicom:dicom_00240320 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240010 dicom:dicom_00240010 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Visual Field Horizontal Extent"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51689,11 +50475,12 @@ dicom:dicom_00240010 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240070 dicom:dicom_00240070 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Visual Field Mean Sensitivity"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51705,11 +50492,12 @@ dicom:dicom_00240070 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240012 dicom:dicom_00240012 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Visual Field Shape"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51721,11 +50509,12 @@ dicom:dicom_00240012 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240088 dicom:dicom_00240088 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Visual Field Test Duration"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51737,11 +50526,12 @@ dicom:dicom_00240088 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240063 dicom:dicom_00240063 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Visual Field Test Normals Flag"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51753,11 +50543,12 @@ dicom:dicom_00240063 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240097 dicom:dicom_00240097 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Visual Field Test Point Normals Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51769,11 +50560,12 @@ dicom:dicom_00240097 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240089 dicom:dicom_00240089 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Visual Field Test Point Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51785,11 +50577,12 @@ dicom:dicom_00240089 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240090 dicom:dicom_00240090 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Visual Field Test Point X-Coordinate"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51801,11 +50594,12 @@ dicom:dicom_00240090 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240091 dicom:dicom_00240091 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Visual Field Test Point Y-Coordinate"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51817,11 +50611,12 @@ dicom:dicom_00240091 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240317 dicom:dicom_00240317 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Visual Field Test Reliability Global Index Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51833,11 +50628,12 @@ dicom:dicom_00240317 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00240011 dicom:dicom_00240011 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Visual Field Vertical Extent"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51849,11 +50645,12 @@ dicom:dicom_00240011 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221025 dicom:dicom_00221025 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Vitreous Status Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51865,11 +50662,12 @@ dicom:dicom_00221025 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221066 dicom:dicom_00221066 rdf:type owl:DatatypeProperty ; + dicom:VR "LO"^^xsd:string ; + rdfs:label "Vitreous Status Description"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51881,7 +50679,6 @@ dicom:dicom_00221066 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00089207 dicom:dicom_00089207 rdf:type owl:DatatypeProperty ; @@ -51894,17 +50691,17 @@ dicom:dicom_00089207 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,9207)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701302 dicom:dicom_00701302 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Volume Cropping Method"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51916,11 +50713,12 @@ dicom:dicom_00701302 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701301 dicom:dicom_00701301 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Volume Cropping Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51932,8 +50730,6 @@ dicom:dicom_00701301 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00189126 dicom:dicom_00189126 rdf:type owl:DatatypeProperty ; @@ -51946,13 +50742,11 @@ dicom:dicom_00189126 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9126)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189054 dicom:dicom_00189054 rdf:type owl:DatatypeProperty ; @@ -51965,17 +50759,17 @@ dicom:dicom_00189054 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9054)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701901 dicom:dicom_00701901 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Volumetric Annotation Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -51987,11 +50781,12 @@ dicom:dicom_00701901 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0070150D dicom:dicom_0070150D rdf:type owl:DatatypeProperty ; + dicom:VR "OD"^^xsd:string ; + rdfs:label "Volumetric Curve Points"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52003,11 +50798,12 @@ dicom:dicom_0070150D rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701905 dicom:dicom_00701905 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Volumetric Presentation Input Annotation Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52019,12 +50815,12 @@ dicom:dicom_00701905 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00701804 dicom:dicom_00701804 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Volumetric Presentation Input Index"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52036,11 +50832,12 @@ dicom:dicom_00701804 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701207 dicom:dicom_00701207 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Volumetric Presentation Input Number"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52052,11 +50849,12 @@ dicom:dicom_00701207 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00701201 dicom:dicom_00701201 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Volumetric Presentation State Input Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52068,7 +50866,6 @@ dicom:dicom_00701201 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00089206 dicom:dicom_00089206 rdf:type owl:DatatypeProperty ; @@ -52081,13 +50878,11 @@ dicom:dicom_00089206 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,9206)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00089206 dicom:dicom_00089206 rdf:type owl:DatatypeProperty ; @@ -52100,17 +50895,17 @@ dicom:dicom_00089206 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0008,9206)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040E023 dicom:dicom_0040E023 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "WADO Retrieval Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52122,11 +50917,12 @@ dicom:dicom_0040E023 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040E025 dicom:dicom_0040E025 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "WADO-RS Retrieval Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52138,11 +50934,12 @@ dicom:dicom_0040E025 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181272 dicom:dicom_00181272 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Water Equivalent Diameter Calculation Method Code Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52154,11 +50951,12 @@ dicom:dicom_00181272 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181271 dicom:dicom_00181271 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "Water Equivalent Diameter"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52170,11 +50968,12 @@ dicom:dicom_00181271 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189297 dicom:dicom_00189297 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "Water Reference Acquisition"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52186,7 +50985,6 @@ dicom:dicom_00189297 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189199 dicom:dicom_00189199 rdf:type owl:DatatypeProperty ; @@ -52199,17 +50997,17 @@ dicom:dicom_00189199 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,9199)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040B020 dicom:dicom_0040B020 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Waveform Annotation Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52221,7 +51019,6 @@ dicom:dicom_0040B020 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_54001004 dicom:dicom_54001004 rdf:type owl:DatatypeProperty ; @@ -52234,13 +51031,11 @@ dicom:dicom_54001004 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(5400,1004)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A021A dicom:dicom_003A021A rdf:type owl:DatatypeProperty ; @@ -52253,13 +51048,11 @@ dicom:dicom_003A021A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,021A)"^^xsd:string ; - dicom:VR "US"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0202 dicom:dicom_003A0202 rdf:type owl:DatatypeProperty ; @@ -52272,17 +51065,17 @@ dicom:dicom_003A0202 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,0202)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0230 dicom:dicom_003A0230 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Waveform Data Display Scale"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52294,7 +51087,6 @@ dicom:dicom_003A0230 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_54001010 dicom:dicom_54001010 rdf:type owl:DatatypeProperty ; @@ -52307,17 +51099,17 @@ dicom:dicom_54001010 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(5400,1010)"^^xsd:string ; - dicom:VR "OB or OW"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0231 dicom:dicom_003A0231 rdf:type owl:DatatypeProperty ; + dicom:VR "US"^^xsd:string ; + rdfs:label "Waveform Display Background CIELab Value"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52329,7 +51121,6 @@ dicom:dicom_003A0231 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0004 dicom:dicom_003A0004 rdf:type owl:DatatypeProperty ; @@ -52342,13 +51133,11 @@ dicom:dicom_003A0004 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(003A,0004)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_5400100A dicom:dicom_5400100A rdf:type owl:DatatypeProperty ; @@ -52361,17 +51150,17 @@ dicom:dicom_5400100A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(5400,100A)"^^xsd:string ; - dicom:VR "OB or OW"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_003A0240 dicom:dicom_003A0240 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Waveform Presentation Group Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52383,7 +51172,6 @@ dicom:dicom_003A0240 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_54001006 dicom:dicom_54001006 rdf:type owl:DatatypeProperty ; @@ -52396,13 +51184,11 @@ dicom:dicom_54001006 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(5400,1006)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_54000100 dicom:dicom_54000100 rdf:type owl:DatatypeProperty ; @@ -52415,13 +51201,11 @@ dicom:dicom_54000100 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(5400,0100)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00D5 dicom:dicom_300A00D5 rdf:type owl:DatatypeProperty ; @@ -52434,14 +51218,11 @@ dicom:dicom_300A00D5 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00D5)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_300A00D6 dicom:dicom_300A00D6 rdf:type owl:DatatypeProperty ; @@ -52454,13 +51235,11 @@ dicom:dicom_300A00D6 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00D6)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00D4 dicom:dicom_300A00D4 rdf:type owl:DatatypeProperty ; @@ -52473,14 +51252,11 @@ dicom:dicom_300A00D4 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00D4)"^^xsd:string ; - dicom:VR "SH"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_300A00D2 dicom:dicom_300A00D2 rdf:type owl:DatatypeProperty ; @@ -52493,13 +51269,11 @@ dicom:dicom_300A00D2 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00D2)"^^xsd:string ; - dicom:VR "IS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00D8 dicom:dicom_300A00D8 rdf:type owl:DatatypeProperty ; @@ -52512,13 +51286,11 @@ dicom:dicom_300A00D8 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00D8)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0116 dicom:dicom_300A0116 rdf:type owl:DatatypeProperty ; @@ -52531,13 +51303,11 @@ dicom:dicom_300A0116 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0116)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A0118 dicom:dicom_300A0118 rdf:type owl:DatatypeProperty ; @@ -52550,13 +51320,11 @@ dicom:dicom_300A0118 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,0118)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00D1 dicom:dicom_300A00D1 rdf:type owl:DatatypeProperty ; @@ -52569,13 +51337,11 @@ dicom:dicom_300A00D1 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00D1)"^^xsd:string ; - dicom:VR "SQ"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_300A00D3 dicom:dicom_300A00D3 rdf:type owl:DatatypeProperty ; @@ -52588,18 +51354,17 @@ dicom:dicom_300A00D3 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(300A,00D3)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - - ### http://purl.org/nidash/dicom#dicom_00701806 dicom:dicom_00701806 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Weighting Transfer Function Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52611,7 +51376,6 @@ dicom:dicom_00701806 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181301 dicom:dicom_00181301 rdf:type owl:DatatypeProperty ; @@ -52624,17 +51388,17 @@ dicom:dicom_00181301 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1301)"^^xsd:string ; - dicom:VR "CS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221525 dicom:dicom_00221525 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Wide Field Ophthalmic Photography Quality Rating Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52646,11 +51410,12 @@ dicom:dicom_00221525 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221526 dicom:dicom_00221526 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "Wide Field Ophthalmic Photography Quality Threshold Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52662,11 +51427,12 @@ dicom:dicom_00221526 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221527 dicom:dicom_00221527 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Wide Field Ophthalmic Photography Threshold Quality Rating"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52678,7 +51444,6 @@ dicom:dicom_00221527 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281055 dicom:dicom_00281055 rdf:type owl:DatatypeProperty ; @@ -52691,13 +51456,11 @@ dicom:dicom_00281055 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,1055)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281055 dicom:dicom_00281055 rdf:type owl:DatatypeProperty ; @@ -52710,13 +51473,11 @@ dicom:dicom_00281055 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,1055)"^^xsd:string ; - dicom:VR "LO"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281050 dicom:dicom_00281050 rdf:type owl:DatatypeProperty ; @@ -52729,13 +51490,11 @@ dicom:dicom_00281050 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,1050)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00281051 dicom:dicom_00281051 rdf:type owl:DatatypeProperty ; @@ -52748,17 +51507,17 @@ dicom:dicom_00281051 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0028,1051)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221528 dicom:dicom_00221528 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "X Coordinates Center Pixel View Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52770,7 +51529,6 @@ dicom:dicom_00221528 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181183 dicom:dicom_00181183 rdf:type owl:DatatypeProperty ; @@ -52783,13 +51541,11 @@ dicom:dicom_00181183 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0018,1183)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040072A dicom:dicom_0040072A rdf:type owl:DatatypeProperty ; @@ -52802,17 +51558,17 @@ dicom:dicom_0040072A rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0065 "(0040,072A)"^^xsd:string ; - dicom:VR "DS"^^xsd:string ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189507 dicom:dicom_00189507 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "X-Ray 3D Acquisition Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52824,11 +51580,12 @@ dicom:dicom_00189507 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189504 dicom:dicom_00189504 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "X-Ray 3D Frame Type Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52840,11 +51597,12 @@ dicom:dicom_00189504 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189530 dicom:dicom_00189530 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "X-Ray 3D Reconstruction Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52856,11 +51614,12 @@ dicom:dicom_00189530 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189542 dicom:dicom_00189542 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "X-Ray Acquisition Dose Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52872,11 +51631,12 @@ dicom:dicom_00189542 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189556 dicom:dicom_00189556 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "X-Ray Filter Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52888,11 +51648,12 @@ dicom:dicom_00189556 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189476 dicom:dicom_00189476 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "X-Ray Geometry Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52904,11 +51665,12 @@ dicom:dicom_00189476 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189555 dicom:dicom_00189555 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "X-Ray Grid Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52920,7 +51682,6 @@ dicom:dicom_00189555 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_3002000E dicom:dicom_3002000E rdf:type owl:DatatypeProperty ; @@ -52938,7 +51699,6 @@ dicom:dicom_3002000E rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_3002000D dicom:dicom_3002000D rdf:type owl:DatatypeProperty ; @@ -52956,7 +51716,6 @@ dicom:dicom_3002000D rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00400312 dicom:dicom_00400312 rdf:type owl:DatatypeProperty ; @@ -52974,11 +51733,12 @@ dicom:dicom_00400312 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189420 dicom:dicom_00189420 rdf:type owl:DatatypeProperty ; + dicom:VR "CS"^^xsd:string ; + rdfs:label "X-Ray Receptor Type"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -52990,11 +51750,12 @@ dicom:dicom_00189420 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189543 dicom:dicom_00189543 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "X-Ray Source Isocenter Primary Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -53006,11 +51767,12 @@ dicom:dicom_00189543 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189544 dicom:dicom_00189544 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "X-Ray Source Isocenter Secondary Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -53022,11 +51784,12 @@ dicom:dicom_00189544 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189330 dicom:dicom_00189330 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "X-Ray Tube Current in mA"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -53038,11 +51801,12 @@ dicom:dicom_00189330 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189330 dicom:dicom_00189330 rdf:type owl:DatatypeProperty ; + dicom:VR "FD"^^xsd:string ; + rdfs:label "X-Ray Tube Current in mA"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -53054,7 +51818,6 @@ dicom:dicom_00189330 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00188151 dicom:dicom_00188151 rdf:type owl:DatatypeProperty ; @@ -53072,11 +51835,12 @@ dicom:dicom_00188151 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181151 dicom:dicom_00181151 rdf:type owl:DatatypeProperty ; + dicom:VR "IS"^^xsd:string ; + rdfs:label "X-Ray Tube Current"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -53088,11 +51852,12 @@ dicom:dicom_00181151 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189412 dicom:dicom_00189412 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "XA/XRF Frame Characteristics Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -53104,11 +51869,12 @@ dicom:dicom_00189412 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040E024 dicom:dicom_0040E024 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "XDS Retrieval Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -53120,11 +51886,12 @@ dicom:dicom_0040E024 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00404074 dicom:dicom_00404074 rdf:type owl:DatatypeProperty ; + dicom:VR "SQ"^^xsd:string ; + rdfs:label "XDS Storage Sequence"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -53136,11 +51903,12 @@ dicom:dicom_00404074 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00221529 dicom:dicom_00221529 rdf:type owl:DatatypeProperty ; + dicom:VR "FL"^^xsd:string ; + rdfs:label "Y Coordinates Center Pixel View Angle"^^xsd:string ; obo:IAO_0000114 obo:IAO_0000428 ; @@ -53152,7 +51920,6 @@ dicom:dicom_00221529 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181184 dicom:dicom_00181184 rdf:type owl:DatatypeProperty ; @@ -53170,7 +51937,6 @@ dicom:dicom_00181184 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040073A dicom:dicom_0040073A rdf:type owl:DatatypeProperty ; @@ -53188,7 +51954,6 @@ dicom:dicom_0040073A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_0040074A dicom:dicom_0040074A rdf:type owl:DatatypeProperty ; @@ -53206,7 +51971,6 @@ dicom:dicom_0040074A rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280032 dicom:dicom_00280032 rdf:type owl:DatatypeProperty ; @@ -53224,7 +51988,6 @@ dicom:dicom_00280032 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00280031 dicom:dicom_00280031 rdf:type owl:DatatypeProperty ; @@ -53242,7 +52005,6 @@ dicom:dicom_00280031 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00181318 dicom:dicom_00181318 rdf:type owl:DatatypeProperty ; @@ -53260,7 +52022,6 @@ dicom:dicom_00181318 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - ### http://purl.org/nidash/dicom#dicom_00189064 dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; @@ -53278,14 +52039,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dc:identifier . - -################################################################# -# -# Classes -# -################################################################# - - ### http://purl.org/nidash/dicom#dicom_xxxx0001 dicom:dicom_xxxx0001 rdf:type owl:Class ; @@ -53297,7 +52050,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A property of an Information Object. An Attribute has a name and a value that are independent​ of any encoding scheme.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0002 dicom:dicom_xxxx0002 rdf:type owl:Class ; @@ -53309,7 +52061,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A request to operate on information across a network.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0003 dicom:dicom_xxxx0003 rdf:type owl:Class ; @@ -53323,7 +52074,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; dicom:dicom_00000086 dicom:dicom_0000000 . - ### http://purl.org/nidash/dicom#dicom_xxxx0004 dicom:dicom_xxxx0004 rdf:type owl:Class ; @@ -53335,7 +52085,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; ​ obo:IAO_0000115 "The result of encoding a set of DICOM Command Elements using the DICOM encoding scheme.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0005 dicom:dicom_xxxx0005 rdf:type owl:Class ; @@ -53347,7 +52096,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A formal statement that describes a specific product implementation that uses the DICOM​ Standard. It specifies the Service Classes, Information Objects, and Communication Protocols​ supported by the implementation.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0006 dicom:dicom_xxxx0006 rdf:type owl:Class ; @@ -53361,7 +52109,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; dicom:dicom_xxxx0086 dicom:dicom_xxxx0035 . - ### http://purl.org/nidash/dicom#dicom_xxxx0007 dicom:dicom_xxxx0007 rdf:type owl:Class ; @@ -53373,7 +52120,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "Exchanged information consisting of a structured set of Attributes. The value of each Attribute in​ a Data Set is expressed as a Data Element.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0008 dicom:dicom_xxxx0008 rdf:type owl:Class ; @@ -53385,7 +52131,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "The result of encoding a Data Set using the DICOM encoding scheme (Data Element Numbers​ and representations as specified by the Data Dictionary).​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0009 dicom:dicom_xxxx0009 rdf:type owl:Class ; @@ -53397,7 +52142,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "An abstraction of a real information entity (e.g., CT Image, Structured Report, etc.) that is acted​ upon by one or more DICOM Commands.​ Note​: This term is primarily used in PS3.1, with a few references in PS3.3. It is an informal​ term corresponding to a formal term that is introduced in PS3.3. In all other parts of the​ DICOM Standard this formal term is known as an Information Object Definition.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0010 dicom:dicom_xxxx0010 rdf:type owl:Class ; @@ -53409,7 +52153,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A formal description of an Information Object, which includes a description of its purpose and the​ Attributes it possesses. It does not include values for these attributes.​ Note​ This term is only used in PS3.1. It is an informal term corresponding to a formal term​ that is introduced in PS3.4. This formal term is known as a Service-Object Pair Class​ or more commonly as a SOP Class." . - ### http://purl.org/nidash/dicom#dicom_xxxx0011 dicom:dicom_xxxx0011 rdf:type owl:Class ; @@ -53423,7 +52166,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dicom:dicom_xxxx0009 . - ### http://purl.org/nidash/dicom#dicom_xxxx0012 dicom:dicom_xxxx0012 rdf:type owl:Class ; @@ -53435,7 +52177,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A data unit of the Message Exchange Protocol exchanged between two cooperating DICOM​ Applications. A Message is composed of a Command Stream followed by an optional Data​ Stream.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0013 dicom:dicom_xxxx0013 rdf:type owl:Class ; @@ -53447,7 +52188,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A structured description of a service that is supported by cooperating DICOM Applications using​ specific DICOM Commands acting on a specific class of Information Object." . - ### http://purl.org/nidash/dicom#dicom_xxxx0014 dicom:dicom_xxxx0014 rdf:type owl:Class ; @@ -53459,7 +52199,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A description of the conditions present during data acquisition.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0015 dicom:dicom_xxxx0015 rdf:type owl:Class ; @@ -53473,7 +52212,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dicom:dicom_xxxx0026 . - ### http://purl.org/nidash/dicom#dicom_xxxx0016 dicom:dicom_xxxx0016 rdf:type owl:Class ; @@ -53487,7 +52225,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dicom:dicom_xxxx0065 . - ### http://purl.org/nidash/dicom#dicom_xxxx0017 dicom:dicom_xxxx0017 rdf:type owl:Class ; @@ -53499,7 +52236,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "Attribute that (usually) includes the string "Code Sequence" in the Attribute Name and has a VR​ of SQ (Sequence of Items). Its purpose is to encode concepts using code values and optional​ text meanings from coding schemes. Section 8.1 through Section 8.8 specify the Attributes of​ which the Sequence Items (Attribute Sets) of Code Sequence Attributes are constructed.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0018 dicom:dicom_xxxx0018 rdf:type owl:Class ; @@ -53511,7 +52247,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "An Information Object Definition that represents parts of several entities in the DICOM Application​ Model. Such an IOD includes Attributes that are not inherent in the Real-World Object that the​ IOD represents but rather are inherent in related Real-World Objects.​ Derived image​ an image in which the pixel data was constructed from pixel data of one or more other images​ (source images).​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0019 dicom:dicom_xxxx0019 rdf:type owl:Class ; @@ -53523,7 +52258,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "An Entity-Relationship diagram used to model the relationships between Real-World Objects that​ are within the area of interest of the DICOM Standard.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0020 dicom:dicom_xxxx0020 rdf:type owl:Class ; @@ -53535,7 +52269,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "An Entity-Relationship diagram that is used to model the relationships between the Information​ Object Definitions representing classes of Real-World Objects defined by the DICOM Application​ Model.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0021 dicom:dicom_xxxx0021 rdf:type owl:Class ; @@ -53547,7 +52280,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A set of logically related Attributes that are likely to vary together. May be used in Multi-frame​ IODs to describe parameters that change on a per frame basis.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0022 dicom:dicom_xxxx0022 rdf:type owl:Class ; @@ -53559,7 +52291,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "That portion of information defined by a Composite IOD that is related to one specific class of​ Real-World Object. There is a one-to-one correspondence between Information Entities and​ entities in the DICOM Application Model.​ Information object definition​ (IOD)​ a data abstraction of a class of similar Real-World Objects that defines the nature and Attributes​ relevant to the class of Real-World Objects represented.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0023 dicom:dicom_xxxx0023 rdf:type owl:Class ; @@ -53571,7 +52302,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A set of Attributes within an Information Entity or Normalized IOD that are logically related to​ each other.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0024 dicom:dicom_xxxx0024 rdf:type owl:Class ; @@ -53583,7 +52313,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "Image that contains multiple two-dimensional pixel planes.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0025 dicom:dicom_xxxx0025 rdf:type owl:Class ; @@ -53595,7 +52324,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "An Information Object Definition (IOD) that represents a single entity in the DICOM Application Model.​ Such an IOD includes Attributes that are only inherent in the Real-World Object that the IOD​ represents.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0026 dicom:dicom_xxxx0026 rdf:type owl:Class ; @@ -53605,7 +52333,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000114 obo:IAO_0000428 ; obo:IAO_0000115 "A sequential component of a protocol, consisting of all the parameters necessary to perform that​ component of the protocol.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0027 @@ -53621,7 +52348,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dicom:dicom_xxxx0026 . - ### http://purl.org/nidash/dicom#dicom_xxxx0028 dicom:dicom_xxxx0028 rdf:type owl:Class ; @@ -53633,7 +52359,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "Specialization is the replacement of the Type, value range and/or description of an Attribute in a​ general Module of an IOD, by its Type, value range and/or description defined in a modality-specific​ Module of an IOD.​ Note​: The same Attribute may be present in multiple Modules in the same IOD but not specified​ to be 'Specialized'.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0029 dicom:dicom_xxxx0029 rdf:type owl:Class ; @@ -53647,7 +52372,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dicom:dicom_xxxx0026 . - ### http://purl.org/nidash/dicom#dicom_xxxx0030 dicom:dicom_xxxx0030 rdf:type owl:Class ; @@ -53661,7 +52385,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dicom:dicom_xxxx0058 . - ### http://purl.org/nidash/dicom#dicom_xxxx0031 dicom:dicom_xxxx0031 rdf:type owl:Class ; @@ -53673,7 +52396,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115A "A table of pointers to individual frames of an encapsulated multi-frame image.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0032 dicom:dicom_xxxx0032 rdf:type owl:Class ; @@ -53685,7 +52407,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A form of byte ordering where multiple byte binary values are encoded with the most significant byte encoded first, and​ the remaining bytes encoded in decreasing order of significance.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0033 dicom:dicom_xxxx0033 rdf:type owl:Class ; @@ -53697,7 +52418,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A finite set of different characters that is considered to be complete for a given purpose and is specified independently of their encoding (also referred to as a character set).​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0034 dicom:dicom_xxxx0034 rdf:type owl:Class ; @@ -53709,7 +52429,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A string of characters identifying a controlled concept, including Defined Terms and Enumerated Values when represented as character strings. The scope of the controlled concept is limited to the attribute for which the string provides the value; i.e.,​ the attribute defines the allowed set of values for the Code String, and a particular string may have different meanings in different attributes. A Code String is formally an arbitrary code representing a semantic concept; however, English language words (using the​ constrained character set of the CS Value Representation) are often used as codes for the semantics of those words." . - ### http://purl.org/nidash/dicom#dicom_xxxx0035 dicom:dicom_xxxx0035 rdf:type owl:Class ; @@ -53721,7 +52440,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A unit of information as defined by a single entry in the data dictionary. An encoded Information Object Definition (IOD)​ Attribute that is composed of, at a minimum, three fields: a Data Element Tag, a Value Length, and a Value Field. For some specific​ Transfer Syntaxes, a Data Element also contains a VR Field where the Value Representation of that Data Element is specified explicitly.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0036 dicom:dicom_xxxx0036 rdf:type owl:Class ; @@ -53735,7 +52453,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dicom:dicom_xxxx0065 . - ### http://purl.org/nidash/dicom#dicom_xxxx0037 dicom:dicom_xxxx0037 rdf:type owl:Class ; @@ -53747,7 +52464,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "Used to specify whether an Attribute of an Information Object Definition or an Attribute of a SOP Class Definition​ is mandatory, mandatory only under certain conditions, or optional. This translates to whether a Data Element of a Data Set is mandatory, mandatory only under certain conditions, or optional.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0038 dicom:dicom_xxxx0038 rdf:type owl:Class ; @@ -53759,7 +52475,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "Exchanged information consisting of a structured set of Attribute values directly or indirectly related to Information Objects.​ The value of each Attribute in a Data Set is expressed as a Data Element. A collection of Data Elements ordered by increasing Data​ Element Tag number that is an encoding of the values of Attributes of a real world object.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0039 dicom:dicom_xxxx0039 rdf:type owl:Class ; @@ -53771,8 +52486,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "The Value of a Data Element is a Defined Term when the Value of the element may be one of an explicitly specified​ set of standard values, and these values may be extended by implementers.​" . - - ### http://purl.org/nidash/dicom#dicom_xxxx0040 dicom:dicom_xxxx0040 rdf:type owl:Class ; @@ -53784,7 +52497,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "The second number in the ordered pair of numbers that makes up a Data Element Tag.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0041 dicom:dicom_xxxx0041 rdf:type owl:Class ; @@ -53796,7 +52508,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "The Value of a Data Element is an Enumerated Value when the value of the element must be one of an explicitly​ specified set of standard values, and these values shall not be extended by implementers.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0042 dicom:dicom_xxxx0042 rdf:type owl:Class ; @@ -53808,7 +52519,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "The first number in the ordered pair of numbers that makes up a Data Element Tag.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0043 dicom:dicom_xxxx0043 rdf:type owl:Class ; @@ -53820,7 +52530,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A component of the Value of a Data Element that is of Value Representation Sequence of Items. An Item contains a Data Set.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0044 dicom:dicom_xxxx0044 rdf:type owl:Class ; @@ -53834,7 +52543,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dicom:dicom_xxxx0035 . - ### http://purl.org/nidash/dicom#dicom_xxxx0045 dicom:dicom_xxxx0045 rdf:type owl:Class ; @@ -53846,8 +52554,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A form of byte ordering where multiple byte binary values are encoded with the least significant byte encoded first; and​ the remaining bytes encoded in increasing order of significance.​" . - - ### http://purl.org/nidash/dicom#dicom_xxxx0046 dicom:dicom_xxxx0046 rdf:type owl:Class ; @@ -53859,7 +52565,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A Data Set contained within a Data Element of another Data Set. Data Sets can be nested recursively. Only Data​ Elements with Value Representation Sequence of Items may, themselves, contain Data Sets.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0047 dicom:dicom_xxxx0047 rdf:type owl:Class ; @@ -53871,7 +52576,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "The container for a single Pixel Sample Value that may include unused bits. The size of a Pixel Cell shall be specified by​ the Bits Allocated (0028, 0100) Data Element.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0048 dicom:dicom_xxxx0048 rdf:type owl:Class ; @@ -53883,7 +52587,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "Graphical data (e.g., images) of variable pixel-depth encoded in the Pixel Data, Float Pixel Data or Double Float Pixel​ Data Element.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0049 dicom:dicom_xxxx0049 rdf:type owl:Class ; @@ -53895,7 +52598,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A value associated with an individual pixel. An individual pixel consists of one or more Pixel Sample Values​ (e.g., color images)." . - ### http://purl.org/nidash/dicom#dicom_xxxx0050 dicom:dicom_xxxx0050 rdf:type owl:Class ; @@ -53909,7 +52611,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dicom:dicom_xxxx0035 . - ### http://purl.org/nidash/dicom#dicom_xxxx0051 dicom:dicom_xxxx0051 rdf:type owl:Class ; @@ -53921,7 +52622,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "Standard Data Elements within a particular range of Group Numbers where elements that have identical Element​ Numbers have the same meaning within each Group (and the same VR, VM, and Data Element Type). Repeating Groups shall only​ exist for Curves and Overlay Planes (Group Numbers (50xx,eeee) and (60xx,eeee), respectively) and are a remnant of versions of​ this standard prior to V3.0.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0052 dicom:dicom_xxxx0052 rdf:type owl:Class ; @@ -53935,7 +52635,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dicom:dicom_xxxx0035 . - ### http://purl.org/nidash/dicom#dicom_xxxx0053 dicom:dicom_xxxx0053 rdf:type owl:Class ; @@ -53947,7 +52646,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "Item used to mark the end of a Sequence of Items of Undefined Length. This Item is the last Item in​ a Sequence of Items of Undefined Length.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0054 dicom:dicom_xxxx0054 rdf:type owl:Class ; @@ -53959,7 +52657,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A Value Representation for Data Elements that contain a sequence of Data Sets.​ Sequence of Items allows for Nested Data Sets.​ (The Value Representation is denoted SQ.)" . - ### http://purl.org/nidash/dicom#dicom_xxxx0055 dicom:dicom_xxxx0055 rdf:type owl:Class ; @@ -53973,7 +52670,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dicom:dicom_xxxx0035 . - ### http://purl.org/nidash/dicom#dicom_xxxx0056 dicom:dicom_xxxx0056 rdf:type owl:Class ; @@ -53985,7 +52681,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A set of encoding rules that allow Application Entities to unambiguously negotiate the encoding techniques (e.g., Data Element structure, byte ordering, compression) they are able to support, thereby allowing these Application Entities to communicate.​ (This is for both Standard and Private)." . - ### http://purl.org/nidash/dicom#dicom_xxxx0057 dicom:dicom_xxxx0057 rdf:type owl:Class ; @@ -53997,7 +52692,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "The ability to specify an unknown length for a Data Element Value (of Value Representation SQ, UN, OW, or​ OB) or Item. Data Elements and Items of Undefined Length are delimited with Sequence Delimitation Items and Item Delimiter Data​ Elements, respectively.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0058 dicom:dicom_xxxx0058 rdf:type owl:Class ; @@ -54009,7 +52703,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A string of characters that uniquely identifies a wide variety of items; guaranteeing uniqueness across multiple​ countries, sites, vendors and equipment.​ (The acronym is UID)" . - ### http://purl.org/nidash/dicom#dicom_xxxx0059 dicom:dicom_xxxx0059 rdf:type owl:Class ; @@ -54021,7 +52714,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A component of a Value Field. A Value Field may consist of one or more of these components.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0060 dicom:dicom_xxxx0060 rdf:type owl:Class ; @@ -54033,7 +52725,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "The field within a Data Element that contains the Value(s) of that Data Element.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0061 dicom:dicom_xxxx0061 rdf:type owl:Class ; @@ -54045,7 +52736,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "The field within a Data Element that contains the length of the Value Field of the Data Element.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0062 dicom:dicom_xxxx0062 rdf:type owl:Class ; @@ -54057,7 +52747,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 " Specifies the number of Values contained in the Value Field of a Data Element.​ (VM)" . - ### http://purl.org/nidash/dicom#dicom_xxxx0063 dicom:dicom_xxxx0063 rdf:type owl:Class ; @@ -54069,7 +52758,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "Specifies the data type and format of the Value(s) contained in the Value Field of a Data Element.​ (VR)" . - ### http://purl.org/nidash/dicom#dicom_xxxx0064 dicom:dicom_xxxx0064 rdf:type owl:Class ; @@ -54081,7 +52769,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "The field where the Value Representation of a Data Element is stored in the encoding of a Data Element​ structure with explicit VR.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0065 dicom:dicom_xxxx0065 rdf:type owl:Class ; @@ -54095,7 +52782,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dicom:dicom_xxxx0058 . - ### http://purl.org/nidash/dicom#dicom_xxxx0066 dicom:dicom_xxxx0066 rdf:type owl:Class ; @@ -54107,7 +52793,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A Media Storage Application Profile defines a selection of choices at the various layers of the​ DICOM Media Storage Model that are applicable to a specific need or context in which the media​ interchange is intended to be performed.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0067 dicom:dicom_xxxx0067 rdf:type owl:Class ; @@ -54119,7 +52804,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "The DICOM File Service specifies a minimum abstract view of files to be provided by the Media​ Format Layer. Constraining access to the content of files by the Application Entities through such​ a DICOM File Service boundary ensures Media Format and Physical Media independence.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0068 dicom:dicom_xxxx0068 rdf:type owl:Class ; @@ -54133,7 +52817,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dicom:dicom_xxxx0070 . - ### http://purl.org/nidash/dicom#dicom_xxxx0069 dicom:dicom_xxxx0069 rdf:type owl:Class ; @@ -54147,7 +52830,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dicom:dicom_xxxx0068 . - ### http://purl.org/nidash/dicom#dicom_xxxx0070 dicom:dicom_xxxx0070 rdf:type owl:Class ; @@ -54161,7 +52843,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; dct:hasPart dicom:dicom_xxxx0073 . - ### http://purl.org/nidash/dicom#dicom_xxxx0071 dicom:dicom_xxxx0071 rdf:type owl:Class ; @@ -54175,7 +52856,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; dct:hasPart dicom:dicom_xxxx0072 . - ### http://purl.org/nidash/dicom#dicom_xxxx0072 dicom:dicom_xxxx0072 rdf:type owl:Class ; @@ -54187,7 +52867,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A string of one to eight characters of a defined character set.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0073 dicom:dicom_xxxx0073 rdf:type owl:Class ; @@ -54199,7 +52878,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "The File Meta Information includes identifying information on the encapsulated Data Set. It is a​ mandatory header at the beginning of every DICOM File.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0074 dicom:dicom_xxxx0074 rdf:type owl:Class ; @@ -54211,7 +52889,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A File-set is a collection of DICOM Files (and possibly non-DICOM Files) that share a common​ naming space within which File IDs are unique.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0075 dicom:dicom_xxxx0075 rdf:type owl:Class ; @@ -54223,7 +52900,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "An Application Entity that creates the DICOMDIR File (see Section 8.6) and zero or more DICOM​ Files.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0076 dicom:dicom_xxxx0076 rdf:type owl:Class ; @@ -54237,7 +52913,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; prov:used dicom:dicom_xxxx0074 . - ### http://purl.org/nidash/dicom#dicom_xxxx0077 dicom:dicom_xxxx0077 rdf:type owl:Class ; @@ -54251,7 +52926,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; prov:used dicom:dicom_xxxx0074 . - ### http://purl.org/nidash/dicom#dicom_xxxx0078 dicom:dicom_xxxx0078 rdf:type owl:Class ; @@ -54263,7 +52937,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "The DICOM File Format provides a means to encapsulate in a File the Data Set representing a​ SOP Instance related to a DICOM Information Object.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0079 dicom:dicom_xxxx0079 rdf:type owl:Class ; @@ -54275,7 +52948,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "Data structures and associated policies that organize the bit streams defined by the Physical Media​ format into data file structures and associated file directories.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0080 dicom:dicom_xxxx0080 rdf:type owl:Class ; @@ -54287,7 +52959,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "The DICOM Media Storage Model pertains to the data structures used at different layers to achieve​ interoperability through media interchange.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0081 dicom:dicom_xxxx0081 rdf:type owl:Class ; @@ -54299,7 +52970,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "DICOM Media Storage Services define a set of operations with media that facilitate storage to and​ retrieval from the media of DICOM SOP Instances.​" . - ### http://purl.org/nidash/dicom#dicom_xxxx0082 dicom:dicom_xxxx0082 rdf:type owl:Class ; @@ -54311,7 +52981,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 "A piece of material with recording capabilities for streams of bits. Characteristics of a Physical​ Media include form factor, mechanical characteristics, recording properties and rules for recording​ and organizing bit streams in accessible structures​." . - ### http://purl.org/nidash/dicom#dicom_xxxx0083 dicom:dicom_xxxx0083 rdf:type owl:Class ; @@ -54324,7 +52993,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dicom:dicom_xxxx0070 . - ### http://purl.org/nidash/dicom#dicom_xxxx0084 @@ -54339,7 +53007,6 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; rdfs:subClassOf dicom:dicom_xxxx0074 . - ### http://purl.org/nidash/dicom#dicom_xxxx0085 dicom:dicom_xxxx0085 rdf:type owl:Class ; @@ -54350,3 +53017,4 @@ dicom:dicom_00189064 rdf:type owl:DatatypeProperty ; obo:IAO_0000115 " A DICOM Media Storage Application Profile that requires a Secure File-set.​" . + diff --git a/vr_generate_dict.py b/vr_generate_dict.py new file mode 100644 index 0000000..bb8587c --- /dev/null +++ b/vr_generate_dict.py @@ -0,0 +1,249 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +# generate_dict_2015b.py + +""" + Reformat a dicom dictionary PS3.6 and PS3.7 docbook xml files (from e.g. standard docs) to Python syntax + Write the main DICOM dictionary elements as a python dict called main_attributes with format: + Tag: ('VR', 'VM', "Name", 'is_retired', 'Keyword') + Where + Tag is a 32-bit representation of the group, element as 0xggggeeee (e.g. 0x00181600) + VR is the Value Representation (e.g. 'OB' or 'OB or UI' or 'NONE') + VM is the Value Multiplicity (e.g. '1' or '2-2n' or '3-n' or '1-32') + Name is the DICOM Element Name (or Message Field for Command Elements) (e.g. 'Tomo Time' or 'Retired-blank' or 'Time Source') + is_retired is '' if not retired, 'Retired' otherwise (e.g. '' or 'Retired') + Keyword is the DICOM Keyword (e.g. 'TomoTime' or 'TimeSource') + Also write the repeating groups or elements (e.g. group "50xx") as a python dict called + mask_attributes as masks that can be tested later for tag lookups that didn't work + using format: + 'Tag': ('VR', 'VM', "Name", 'is_retired', 'Keyword') + Where + Tag is a string representation of the element (e.g. '002031xx' or '50xx0022') +""" + +# Based on Rickard Holmberg's docbook_to_dict2013.py +# http://code.google.com/r/rickardholmberg-pydicom/ +# but rewritten for not using bs4 (and slight change for standard v2015b) + +# Based on Rickard Holmberg's generate_dict_2015b.py - found online as part of the "pydicom" package. +# Note that this doesn't grab the definitions - the dictionary in Part 06 doesn't +# include them in the table that I pull info from. This code is used to generate a python +# dict that contains tags and VR's. I keep the code to get latest docbook from URL, +# but currently pull from offline/local version of latest docbook so I don't have to be online. +# Also not that this code pulls from the tables in Part 06 and the "Command Fields" +# and "Retired Command Fields" tables in Part 07. Originally, this was written out as two separate +# dictionaries in one named dictionary. I decided to simplify this to one single dictionary +# with no name, since I don't need the elements in the 2nd dict. +# K. Helmer +# Massachusetts General Hospital, 2018 + +import urllib2 +import xml.etree.ElementTree as ET +import os + +# pydict_filename = '../dicom/_dicom_dict.py' #this is the filename format expected for pydicom codebase +pydict_filename = 'dicom_dict_vr.dict' # KGH +main_dict_name = 'DicomDictionary' #KGH - not used; only want dict in file, not "name = " +mask_dict_name = 'RepeatersDictionary' + +def write_dict(f, dict_name, attributes, tagIsString): #KGH-write out the tag as a string in both cases + if tagIsString: + #entry_format = """'{Tag}': ('{VR}', '{VM}', '{Name}', '{Retired}', '{Keyword}')""" + entry_format = """"{Tag}": ("{VR}", "{VM}", "{Name}", "{Retired}", "{Keyword}")""" #KGH - try double quotes because some Names have apostrophe's in them, e.g., "Referring Physician's Name" + else: + #entry_format = """{Tag}: ('{VR}', '{VM}', '{Name}', '{Retired}', '{Keyword}')""" #original + #entry_format = """'{Tag}': ('{VR}', '{VM}', '{Name}', '{Retired}', '{Keyword}')""" #KGH - make tag a string + entry_format = """"{Tag}": ("{VR}", "{VM}", "{Name}", "{Retired}", "{Keyword}")""" #KGH - try double quotes because some Names have apostrophe's in them, e.g., "Referring Physician's Name" + + #f.write("\n%s = {\n " % dict_name) + #f.write("%s = {\n " % dict_name) #KGH - no initial newline necessary + don't want "name = {}" + f.write("{\n ") #KGH - just start with dict "{" + f.write(",\n ".join(entry_format.format(**attr) for attr in attributes)) + f.write("\n}\n") + + +def parse_docbook_table(book_root, caption, empty_field_name="Retired"): + """ Parses the given XML book_root for the table with caption matching caption for DICOM Element data + Returns a list of dicts with each dict representing the data for an Element from the table + """ + + br = '{http://docbook.org/ns/docbook}' # Shorthand variable for book_root + + # Find the table in book_root with caption + for table in book_root.iter('%stable' %br): + if table.find('%scaption' %br).text == caption: + + def parse_header(header_row): + """ Parses the table's thead/tr row, header_row, for the column headers """ + field_names = [] + + # The header_row should be ... + # Which leaves the following: + # Header 1 + # Header 2 + # etc... + # Note that for the part06 tables the last col header (Retired) is: + # + for x in header_row.iter('%sth' %br): + # If there is an emphasis tag under the para tag then its text is the column header + if x.find('%spara' %br).find('%semphasis' %br) is not None: + col_label = x.find('%spara' %br).find('%semphasis' %br).text + field_names.append(col_label) + + # If there isn't an emphasis tag under the para tag then it must be the Retired header + else: + field_names.append("Retired") + + return field_names + + # Get the column headers + field_names = parse_header(table.find('%sthead' %br).find('%str' %br)) + + def parse_row(field_names, row): + """ Parses the table's tbody tr row, row, for the DICOM Element data + Returns a list of dicts {header1 : val1, header2 : val2, ...} with each list an Element + """ + + cell_values = [] + + # The row should be ... + # Which leaves the following: + # Value 1 + # Value 2 + # etc... + # Some rows are + # Value 1 + # Value 2 + # etc... + # There are also some without text values + # + # + + for cell in row.iter('%spara' %br): + # If we have an emphasis tag under the para tag + emph_value = cell.find('%semphasis' %br) + if emph_value is not None: + # If there is a text value add it, otherwise add "" + if emph_value.text is not None: + cell_values.append(emph_value.text.strip().replace(u"\u200b", "")) #200b is a zero width space + else: + cell_values.append("") + # Otherwise just grab the para tag text + else: + if cell.text is not None: + cell_values.append(cell.text.strip().replace(u"\u200b", "")) + else: + cell_values.append("") + + return {key : value for key, value in zip(field_names, cell_values)} + + # Get all the Element data from the table + attrs = [parse_row(field_names, row) for row in table.find('%stbody' %br).iter('%str' %br)] + return attrs + +attrs = [] + +# KGH - first look in Part 06 for three specific tables (see attrs += statements for table names) +#url = 'http://medical.nema.org/medical/dicom/current/source/docbook/part06/part06.xml' +#response = urllib2.urlopen(url) +fLoc = '/home/karl/Work/INCF/DICOM_docbook_latest/source/docbook/part06/part06.xml' #KGH +response = open(fLoc) #KGH +tree = ET.parse(response) +root = tree.getroot() +response.close() # KGH + +attrs += parse_docbook_table(root, "Registry of DICOM Data Elements") +attrs += parse_docbook_table(root, "Registry of DICOM File Meta Elements") +attrs += parse_docbook_table(root, "Registry of DICOM Directory Structuring Elements") +#KGH --------------------------------------------------------------- + +#KGH - Then look at Part 07 that has the command field tables +fLoc = '/home/karl/Work/INCF/DICOM_docbook_latest/source/docbook/part07/part07.xml' #KGH +response = open(fLoc) #KGH +#url = 'http://medical.nema.org/medical/dicom/current/source/docbook/part07/part07.xml' +#response = urllib2.urlopen(url) +tree = ET.parse(response) +root = tree.getroot() + +command_attrs = parse_docbook_table(root, "Command Fields") # Changed from 2013 standard +for attr in command_attrs: + attr["Name"] = attr["Message Field"] + attr["Retired"] = "" + +retired_command_attrs = parse_docbook_table(root, "Retired Command Fields") +for attr in retired_command_attrs: + attr["Name"] = attr["Message Field"] + attr["Retired"] = "Retired" + +attrs += command_attrs +attrs += retired_command_attrs +#KGH ------------------------------------------------------------------------------- + + +# KGH - attrs dict now populated; sort by tag value +attrs = sorted(attrs, key=lambda x: x["Tag"]) + +main_attributes = [] +mask_attributes = [] + +#KGH -check to see format of attrs key-value pair +#print attrs[0]["Description of Field"] + +for attr in attrs: + group, elem = attr['Tag'][1:-1].split(",") + + #KGH - unused as tables in Part 06 doesn't include definitions in tables + #KGH check to see if Description of Field exists; if not create key and make value a blank string + #if 'Description of Field' in attr: + # pass + #else: + # attr['Description of Field'] = 'None' + + # e.g. (FFFE,E000) + if attr['VR'] == 'See Note': + attr['VR'] = 'NONE' + + # e.g. (0018,1153), (0018,8150) and (0018,8151) + attr["Name"] = attr["Name"].replace(u"µ", "u") # replace micro symbol + + # e.g. (0014,0023) and (0018,9445) + if attr['Retired'] in ['RET', 'RET - See Note']: + attr['Retired'] = 'Retired' + + # e.g. (0008,0102), (0014,0025), (0040, A170) + if attr['Retired'] in ['DICOS', 'DICONDE', 'See Note']: + attr['Retired'] = '' + + # e.g. (0028,1200) + attr['VM'] = attr['VM'].replace(" or ", " ") + + # If blank then add dummy vals + # e.g. (0018,9445) and (0028,0020) + if attr['VR'] == '' and attr['VM'] == '': + attr['VR'] = 'OB' + attr['VM'] = '1' + attr['Name'] = 'Retired-blank' + + # handle retired 'repeating group' tags + # e.g. (50xx,eeee) or (gggg,31xx) + if 'x' in group or 'x' in elem: + attr["Tag"] = group + elem + mask_attributes.append(attr) + else: + #attr["Tag"] = '0x%s%s' %(group, elem) + attr["Tag"] = '%s%s' %(group, elem) #KGH - writing out as string; don't need 32-bit value + main_attributes.append(attr) + +py_file = file(pydict_filename, "wb") +#KGH - the following 3 write lines are for pydicom only and not needed for NIDM +#py_file.write("# %s\n" % os.path.basename(pydict_filename)) +#py_file.write('"""DICOM data dictionary auto-generated by %s"""\n' % os.path.basename(__file__)) +#py_file.write('from __future__ import absolute_import\n') +write_dict(py_file, main_dict_name, main_attributes, tagIsString=False) +#write_dict(py_file, mask_dict_name, mask_attributes, tagIsString=True) + +py_file.close() + +print ("Finished creating python file %s containing the dicom dictionary" % pydict_filename) +print ("Wrote %d tags" % (len(main_attributes) + len(mask_attributes)))