<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.slicer.org/w/index.php?action=history&amp;feed=atom&amp;title=Slicer3%2Fstrawman_DICOM_Schema</id>
	<title>Slicer3/strawman DICOM Schema - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://www.slicer.org/w/index.php?action=history&amp;feed=atom&amp;title=Slicer3%2Fstrawman_DICOM_Schema"/>
	<link rel="alternate" type="text/html" href="https://www.slicer.org/w/index.php?title=Slicer3/strawman_DICOM_Schema&amp;action=history"/>
	<updated>2026-06-20T01:48:40Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.33.0</generator>
	<entry>
		<id>https://www.slicer.org/w/index.php?title=Slicer3/strawman_DICOM_Schema&amp;diff=12467&amp;oldid=prev</id>
		<title>Lorensen: moved Lorensen's strawman sqlite DICOM schema to Slicer3/strawman DICOM Schema</title>
		<link rel="alternate" type="text/html" href="https://www.slicer.org/w/index.php?title=Slicer3/strawman_DICOM_Schema&amp;diff=12467&amp;oldid=prev"/>
		<updated>2010-03-09T18:27:17Z</updated>

		<summary type="html">&lt;p&gt;moved &lt;a href=&quot;/wiki/Lorensen%27s_strawman_sqlite_DICOM_schema&quot; class=&quot;mw-redirect&quot; title=&quot;Lorensen&amp;#039;s strawman sqlite DICOM schema&quot;&gt;Lorensen&amp;#039;s strawman sqlite DICOM schema&lt;/a&gt; to &lt;a href=&quot;/wiki/Slicer3/strawman_DICOM_Schema&quot; title=&quot;Slicer3/strawman DICOM Schema&quot;&gt;Slicer3/strawman DICOM Schema&lt;/a&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;Revision as of 18:27, 9 March 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Lorensen</name></author>
		
	</entry>
	<entry>
		<id>https://www.slicer.org/w/index.php?title=Slicer3/strawman_DICOM_Schema&amp;diff=12466&amp;oldid=prev</id>
		<title>Lorensen: Created page with '&lt;pre&gt; DROP TABLE IF EXISTS main.Patient ; CREATE  TABLE IF NOT EXISTS main.Patient (   `idPatient` INTEGER,   `Name` VARCHAR(45) NULL ,   `ID` VARCHAR(50) NULL ,   `Birth Date` D…'</title>
		<link rel="alternate" type="text/html" href="https://www.slicer.org/w/index.php?title=Slicer3/strawman_DICOM_Schema&amp;diff=12466&amp;oldid=prev"/>
		<updated>2010-03-09T18:25:20Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;#039;&amp;lt;pre&amp;gt; DROP TABLE IF EXISTS main.Patient ; CREATE  TABLE IF NOT EXISTS main.Patient (   `idPatient` INTEGER,   `Name` VARCHAR(45) NULL ,   `ID` VARCHAR(50) NULL ,   `Birth Date` D…&amp;#039;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
DROP TABLE IF EXISTS main.Patient ;&lt;br /&gt;
CREATE  TABLE IF NOT EXISTS main.Patient (&lt;br /&gt;
  `idPatient` INTEGER,&lt;br /&gt;
  `Name` VARCHAR(45) NULL ,&lt;br /&gt;
  `ID` VARCHAR(50) NULL ,&lt;br /&gt;
  `Birth Date` DATE NULL ,&lt;br /&gt;
  `Sex` VARCHAR(1) DEFAULT 'X' ,&lt;br /&gt;
  PRIMARY KEY (`idPatient`),&lt;br /&gt;
  UNIQUE (Name,ID)&lt;br /&gt;
 );&lt;br /&gt;
&lt;br /&gt;
DROP TABLE IF EXISTS main.`Study` ;&lt;br /&gt;
CREATE  TABLE IF NOT EXISTS main.`Study` (&lt;br /&gt;
  `idStudy` INTEGER ,&lt;br /&gt;
  `UID` VARCHAR(64) NOT NULL ,&lt;br /&gt;
  `ID` VARCHAR(32) NULL ,&lt;br /&gt;
  `Description` VARCHAR(45) NULL,&lt;br /&gt;
  `Date` DATE NULL ,&lt;br /&gt;
  `Time` TIME NULL ,&lt;br /&gt;
  `Modality` VARCHAR(45) NULL ,&lt;br /&gt;
  `Manufacturer` VARCHAR(45) NULL ,&lt;br /&gt;
  `Institution Name` VARCHAR(45) NULL ,&lt;br /&gt;
  `Referring Physician` VARCHAR(45) NULL ,&lt;br /&gt;
  `Patient_idPatient` INT,&lt;br /&gt;
  FOREIGN KEY (Patient_idPatient) REFERENCES Patient(idPatient)&lt;br /&gt;
  PRIMARY KEY (`idStudy`),&lt;br /&gt;
  UNIQUE (UID))&lt;br /&gt;
;&lt;br /&gt;
&lt;br /&gt;
DROP TABLE IF EXISTS main.`Series` ;&lt;br /&gt;
CREATE  TABLE IF NOT EXISTS main.`Series` (&lt;br /&gt;
  `idSeries` INTEGER ,&lt;br /&gt;
  `UID` VARCHAR(64) NOT NULL ,&lt;br /&gt;
  `ID` VARCHAR(32) NULL ,&lt;br /&gt;
  `Description` VARCHAR(45) NULL ,&lt;br /&gt;
  `Image Type` VARCHAR(45) NULL ,&lt;br /&gt;
  `Date` DATE NULL ,&lt;br /&gt;
  `Time` TIME NULL ,&lt;br /&gt;
  `Study_idStudy` INT NOT NULL ,&lt;br /&gt;
  FOREIGN KEY (`Study_idStudy` ) REFERENCES `Study` (`idStudy` )&lt;br /&gt;
  PRIMARY KEY (`idSeries`),&lt;br /&gt;
  UNIQUE (UID))&lt;br /&gt;
;&lt;br /&gt;
DROP TABLE IF EXISTS main.`Image` ;&lt;br /&gt;
&lt;br /&gt;
CREATE  TABLE IF NOT EXISTS main.`Image` (&lt;br /&gt;
  `idImage` INTEGER ,&lt;br /&gt;
  `UID` VARCHAR(64) NOT NULL ,&lt;br /&gt;
  `Number` INT NULL ,&lt;br /&gt;
  `Image Position Patient` VARCHAR(64) NULL ,&lt;br /&gt;
  `Pixel Offset` INT NULL ,&lt;br /&gt;
  `Slice Location` FLOAT NULL ,&lt;br /&gt;
  `FileName` VARCHAR(4096) NULL ,&lt;br /&gt;
  `Series_idSeries` INT NOT NULL ,&lt;br /&gt;
  FOREIGN KEY (`Series_idSeries` ) REFERENCES `Series` (`idSeries` )&lt;br /&gt;
  PRIMARY KEY (`idImage`),&lt;br /&gt;
  UNIQUE (UID))&lt;br /&gt;
;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lorensen</name></author>
		
	</entry>
</feed>