Showing:

Annotations
Attributes
Diagrams
Facets
Identity Constraints
Instances
Model
Properties
Source
Used by
Imported schema SPW.xsd
Namespace http://www.openmicroscopy.org/Schemas/SPW/2015-01
Annotations
Open Microscopy Environment
Screen, Plate, and Well XML Schema
Author:	 Andrew J Patterson
Properties
attribute form default unqualified
element form default qualified
version 1
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Element Plate
Namespace http://www.openmicroscopy.org/Schemas/SPW/2015-01
Annotations
This element identifies microtiter plates within a screen.
A plate can belong to more than one screen.
The Screen(s) that a plate belongs to are specified by the ScreenRef element.
The Plate ID and Name attributes are required.
The Wells in a plate are numbers from the top-left corner in a grid starting at zero.
i.e. The top-left well of a plate is index (0,0)
Diagram
Diagram SPW_xsd.tmp#Plate_ID SPW_xsd.tmp#Plate_Name SPW_xsd.tmp#Plate_Status SPW_xsd.tmp#Plate_ExternalIdentifier SPW_xsd.tmp#Plate_ColumnNamingConvention SPW_xsd.tmp#Plate_RowNamingConvention SPW_xsd.tmp#Plate_WellOriginX SPW_xsd.tmp#Plate_WellOriginXUnit SPW_xsd.tmp#Plate_WellOriginY SPW_xsd.tmp#Plate_WellOriginYUnit SPW_xsd.tmp#Plate_Rows SPW_xsd.tmp#Plate_Columns SPW_xsd.tmp#Plate_FieldIndex SPW_xsd.tmp#Plate_Description SPW_xsd.tmp#Well SA_xsd.tmp#AnnotationRef SPW_xsd.tmp#PlateAcquisition
Properties
content complex
Used by
Element OME
Model
Children AnnotationRef, Description, PlateAcquisition, Well
Instance
<Plate ColumnNamingConvention="" Columns="" ExternalIdentifier="" FieldIndex="" ID="" Name="" RowNamingConvention="" Rows="" Status="" WellOriginX="" WellOriginXUnit="reference frame" WellOriginY="" WellOriginYUnit="reference frame" xmlns="http://www.openmicroscopy.org/Schemas/SPW/2015-01" xmlns:SA="http://www.openmicroscopy.org/Schemas/SA/2015-01">
  <Description>{0,1}</Description>
  <Well Color="-1" Column="" ExternalDescription="" ExternalIdentifier="" ID="" Row="" Type="">{0,unbounded}</Well>
  <SA:AnnotationRef ID="">{0,unbounded}</SA:AnnotationRef>
  <PlateAcquisition EndTime="" ID="" MaximumFieldCount="" Name="" StartTime="">{0,unbounded}</PlateAcquisition>
</Plate>
Attributes
QName Type Default Use Annotation
ColumnNamingConvention NamingConvention optional
The ColumnNamingConvention
Columns PositiveInt optional
The number of columns in the plate
ExternalIdentifier xsd:string optional
The ExternalIdentifier attribute may contain a reference to an external database.
FieldIndex NonNegativeInt optional
The index of the WellSample to display as the default Field
ID PlateID required
Name xsd:string optional
The Name identifies the plate to the user.
						It is used much like the ID, and so must be
						unique within the document.

						If a plate name is not available when one is needed
						it will be constructed in the following order:
						1. If name is available use it.
						2. If not use "Start time - End time"
						    (NOTE: Not a subtraction! A string representation
						    of the two times separated by a dash.)
						3. If these times are not available use the Plate ID.
RowNamingConvention NamingConvention optional
The RowNamingConvention
Rows PositiveInt optional
The number of rows in the plate
Status xsd:string optional
A textual annotation of the current state of the plate with respect to the
experiment work-flow; e.g.
1. Seed cell: done; 2. Transfection: done;	3. Gel doc: todo.
WellOriginX xsd:float optional
This defines the X position to use for the origin of the
						fields (individual images) taken in a well. It is used
						with the X in the WellSample to display the fields
						in the correct position relative to each other. Each Well
						in the plate has the same well origin. Units are set by WellOriginXUnit.

						In the OMERO clients by convention we display the WellOrigin
						in the center of the view.
WellOriginXUnit UnitsLength reference frame optional
The units of the well origin in X - default:reference frame.
WellOriginY xsd:float optional
This defines the Y position to use for the origin of the
						fields (individual images) taken in a well. It is used
						with the Y in the WellSample to display the fields
						in the correct position relative to each other. Each Well
						in the plate has the same well origin.  Units are set by WellOriginYUnit.

						In the OMERO clients by convention we display the WellOrigin
						in the center of the view.
WellOriginYUnit UnitsLength reference frame optional
The units of the well origin in Y - default:reference frame.
Source
<xsd:element name="Plate">
  <!-- top level definition -->
  <xsd:annotation>
    <xsd:appinfo>
      <xsdfu>
        <plural>Plates</plural>
      </xsdfu>
    </xsd:appinfo>
    <xsd:documentation>This element identifies microtiter plates within a screen. A plate can belong to more than one screen. The Screen(s) that a plate belongs to are specified by the ScreenRef element. The Plate ID and Name attributes are required. The Wells in a plate are numbers from the top-left corner in a grid starting at zero. i.e. The top-left well of a plate is index (0,0)</xsd:documentation>
  </xsd:annotation>
  <xsd:complexType>
    <xsd:sequence>
      <xsd:element name="Description" minOccurs="0" maxOccurs="1">
        <xsd:annotation>
          <xsd:documentation>A description for the plate.</xsd:documentation>
        </xsd:annotation>
        <xsd:simpleType>
          <xsd:restriction base="xsd:string">
            <xsd:whiteSpace value="preserve"/>
          </xsd:restriction>
        </xsd:simpleType>
      </xsd:element>
      <xsd:element ref="Well" minOccurs="0" maxOccurs="unbounded"/>
      <xsd:element ref="SA:AnnotationRef" minOccurs="0" maxOccurs="unbounded">
        <xsd:annotation>
          <xsd:appinfo>
            <xsdfu>
              <manytomany/>
            </xsdfu>
          </xsd:appinfo>
        </xsd:annotation>
      </xsd:element>
      <xsd:element ref="PlateAcquisition" minOccurs="0" maxOccurs="unbounded"/>
    </xsd:sequence>
    <xsd:attribute name="ID" use="required" type="PlateID"/>
    <xsd:attribute name="Name" use="optional" type="xsd:string">
      <xsd:annotation>
        <xsd:documentation>The Name identifies the plate to the user. It is used much like the ID, and so must be unique within the document. If a plate name is not available when one is needed it will be constructed in the following order: 1. If name is available use it. 2. If not use "Start time - End time" (NOTE: Not a subtraction! A string representation of the two times separated by a dash.) 3. If these times are not available use the Plate ID.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="Status" use="optional" type="xsd:string">
      <xsd:annotation>
        <xsd:documentation>A textual annotation of the current state of the plate with respect to the experiment work-flow; e.g. 1. Seed cell: done; 2. Transfection: done; 3. Gel doc: todo.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="ExternalIdentifier" use="optional" type="xsd:string">
      <xsd:annotation>
        <xsd:documentation>The ExternalIdentifier attribute may contain a reference to an external database.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="ColumnNamingConvention" use="optional" type="NamingConvention">
      <xsd:annotation>
        <xsd:documentation>The ColumnNamingConvention</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="RowNamingConvention" use="optional" type="NamingConvention">
      <xsd:annotation>
        <xsd:documentation>The RowNamingConvention</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="WellOriginX" use="optional" type="xsd:float">
      <xsd:annotation>
        <xsd:documentation>This defines the X position to use for the origin of the fields (individual images) taken in a well. It is used with the X in the WellSample to display the fields in the correct position relative to each other. Each Well in the plate has the same well origin. Units are set by WellOriginXUnit. In the OMERO clients by convention we display the WellOrigin in the center of the view.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="WellOriginXUnit" use="optional" default="reference frame" type="OME:UnitsLength">
      <xsd:annotation>
        <xsd:documentation>The units of the well origin in X - default:reference frame.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="WellOriginY" use="optional" type="xsd:float">
      <xsd:annotation>
        <xsd:documentation>This defines the Y position to use for the origin of the fields (individual images) taken in a well. It is used with the Y in the WellSample to display the fields in the correct position relative to each other. Each Well in the plate has the same well origin. Units are set by WellOriginYUnit. In the OMERO clients by convention we display the WellOrigin in the center of the view.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="WellOriginYUnit" use="optional" default="reference frame" type="OME:UnitsLength">
      <xsd:annotation>
        <xsd:documentation>The units of the well origin in Y - default:reference frame.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="Rows" use="optional" type="OME:PositiveInt">
      <xsd:annotation>
        <xsd:documentation>The number of rows in the plate</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="Columns" use="optional" type="OME:PositiveInt">
      <xsd:annotation>
        <xsd:documentation>The number of columns in the plate</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="FieldIndex" use="optional" type="OME:NonNegativeInt">
      <xsd:annotation>
        <xsd:documentation>The index of the WellSample to display as the default Field</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
  </xsd:complexType>
  <!-- Unique Indexes -->
  <xsd:key name="WellSampleIndex">
    <xsd:selector xpath="SPW:Well/SPW:WellSample"/>
    <xsd:field xpath="@Index"/>
  </xsd:key>
</xsd:element>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Element Plate / Description
Namespace http://www.openmicroscopy.org/Schemas/SPW/2015-01
Annotations
A description for the plate.
Diagram
Diagram
Type restriction of xsd:string
Properties
content simple
minOccurs 0
maxOccurs 1
Facets
whiteSpace preserve
Source
<xsd:element name="Description" minOccurs="0" maxOccurs="1">
  <xsd:annotation>
    <xsd:documentation>A description for the plate.</xsd:documentation>
  </xsd:annotation>
  <xsd:simpleType>
    <xsd:restriction base="xsd:string">
      <xsd:whiteSpace value="preserve"/>
    </xsd:restriction>
  </xsd:simpleType>
</xsd:element>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Element Well
Namespace http://www.openmicroscopy.org/Schemas/SPW/2015-01
Annotations
A Well is a component of the Well/Plate/Screen construct to describe screening applications.
A Well has a number of WellSample elements that link to the Images collected in this well.
The ReagentRef links any Reagents that were used in this Well. A well is part of only one Plate.
The origin for the row and column identifiers is the top left corner of the plate starting at zero.
i.e The top left well of a plate is index (0,0)
Diagram
Diagram SPW_xsd.tmp#Well_ID SPW_xsd.tmp#Well_Column SPW_xsd.tmp#Well_Row SPW_xsd.tmp#Well_ExternalDescription SPW_xsd.tmp#Well_ExternalIdentifier SPW_xsd.tmp#Well_Type SPW_xsd.tmp#Well_Color SPW_xsd.tmp#WellSample SPW_xsd.tmp#ReagentRef SA_xsd.tmp#AnnotationRef
Properties
content complex
Used by
Element Plate
Model
Children AnnotationRef, ReagentRef, WellSample
Instance
<Well Color="-1" Column="" ExternalDescription="" ExternalIdentifier="" ID="" Row="" Type="" xmlns="http://www.openmicroscopy.org/Schemas/SPW/2015-01" xmlns:SA="http://www.openmicroscopy.org/Schemas/SA/2015-01">
  <WellSample ID="" Index="" PositionX="" PositionXUnit="reference frame" PositionY="" PositionYUnit="reference frame" Timepoint="">{0,unbounded}</WellSample>
  <ReagentRef ID="">{0,1}</ReagentRef>
  <SA:AnnotationRef ID="">{0,unbounded}</SA:AnnotationRef>
</Well>
Attributes
QName Type Default Use Annotation
Color Color -1 optional
A marker color used to highlight the well - encoded as RGBA
The default value "-1" is #FFFFFFFF so solid white (it is a signed 32 bit value)
NOTE: Prior to the 2012-06 schema the default value was incorrect and produced a transparent red not solid white.
Column NonNegativeInt required
This is the column index of the well, the origin is the top left corner of the plate
with the first column of cells being column zero. i.e top left is (0,0)
The combination of Row, Column has to be unique for each well in a plate.
ExternalDescription xsd:string optional
A description of the externally defined identifier for this plate.
ExternalIdentifier xsd:string optional
The ExternalIdentifier attribute may contain a reference to an external database.
ID WellID required
Row NonNegativeInt required
This is the row index of the well, the origin is the top left corner of the plate
with the first row of wells being row zero. i.e top left is (0,0)
The combination of Row, Column has to be unique for each well in a plate.
Type xsd:string optional
A human readable identifier for the screening status.
e.g. empty, positive control, negative control, control, experimental, etc.
Source
<xsd:element name="Well">
  <!-- top level definition -->
  <xsd:annotation>
    <xsd:appinfo>
      <xsdfu>
        <plural>Wells</plural>
      </xsdfu>
    </xsd:appinfo>
    <xsd:documentation>A Well is a component of the Well/Plate/Screen construct to describe screening applications. A Well has a number of WellSample elements that link to the Images collected in this well. The ReagentRef links any Reagents that were used in this Well. A well is part of only one Plate. The origin for the row and column identifiers is the top left corner of the plate starting at zero. i.e The top left well of a plate is index (0,0)</xsd:documentation>
  </xsd:annotation>
  <xsd:complexType>
    <xsd:sequence>
      <xsd:element ref="WellSample" minOccurs="0" maxOccurs="unbounded">
        <xsd:annotation>
          <xsd:appinfo>
            <xsdfu>
              <ordered/>
            </xsdfu>
          </xsd:appinfo>
        </xsd:annotation>
      </xsd:element>
      <xsd:element ref="ReagentRef" minOccurs="0" maxOccurs="1"/>
      <xsd:element ref="SA:AnnotationRef" minOccurs="0" maxOccurs="unbounded">
        <xsd:annotation>
          <xsd:appinfo>
            <xsdfu>
              <manytomany/>
            </xsdfu>
          </xsd:appinfo>
        </xsd:annotation>
      </xsd:element>
    </xsd:sequence>
    <xsd:attribute name="ID" use="required" type="WellID"/>
    <xsd:attribute name="Column" use="required" type="OME:NonNegativeInt">
      <xsd:annotation>
        <xsd:documentation>This is the column index of the well, the origin is the top left corner of the plate with the first column of cells being column zero. i.e top left is (0,0) The combination of Row, Column has to be unique for each well in a plate.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="Row" use="required" type="OME:NonNegativeInt">
      <xsd:annotation>
        <xsd:documentation>This is the row index of the well, the origin is the top left corner of the plate with the first row of wells being row zero. i.e top left is (0,0) The combination of Row, Column has to be unique for each well in a plate.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="ExternalDescription" use="optional" type="xsd:string">
      <xsd:annotation>
        <xsd:documentation>A description of the externally defined identifier for this plate.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="ExternalIdentifier" use="optional" type="xsd:string">
      <xsd:annotation>
        <xsd:documentation>The ExternalIdentifier attribute may contain a reference to an external database.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="Type" use="optional" type="xsd:string">
      <xsd:annotation>
        <xsd:documentation>A human readable identifier for the screening status. e.g. empty, positive control, negative control, control, experimental, etc.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="Color" use="optional" type="OME:Color" default="-1">
      <xsd:annotation>
        <xsd:documentation>A marker color used to highlight the well - encoded as RGBA The default value "-1" is #FFFFFFFF so solid white (it is a signed 32 bit value) NOTE: Prior to the 2012-06 schema the default value was incorrect and produced a transparent red not solid white.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
  </xsd:complexType>
</xsd:element>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Element WellSample
Namespace http://www.openmicroscopy.org/Schemas/SPW/2015-01
Annotations
WellSample is an individual image that has been captured within a Well.
Diagram
Diagram SPW_xsd.tmp#WellSample_ID SPW_xsd.tmp#WellSample_PositionX SPW_xsd.tmp#WellSample_PositionXUnit SPW_xsd.tmp#WellSample_PositionY SPW_xsd.tmp#WellSample_PositionYUnit SPW_xsd.tmp#WellSample_Timepoint SPW_xsd.tmp#WellSample_Index ome_xsd.tmp#ImageRef
Properties
content complex
Used by
Element Well
Model
Children ImageRef
Instance
<WellSample ID="" Index="" PositionX="" PositionXUnit="reference frame" PositionY="" PositionYUnit="reference frame" Timepoint="" xmlns="http://www.openmicroscopy.org/Schemas/SPW/2015-01" xmlns:OME="http://www.openmicroscopy.org/Schemas/OME/2015-01">
  <OME:ImageRef ID="">{0,1}</OME:ImageRef>
</WellSample>
Attributes
QName Type Default Use Annotation
ID WellSampleID required
Index NonNegativeInt required
This records the order of the well samples. Each
index should be unique for a given plate but they do not
have to be sequential, there may be gaps if part of the
dataset is missing. In the user interface the displayed
value of the index will be calculated modulo the number
of PlateAcquisitions for the plate.
PositionX xsd:float optional
The X position of the field (image) within the well relative to
the well origin defined on the Plate. Units are set by PositionXUnit.
PositionXUnit UnitsLength reference frame optional
The units of the position in X - default:reference frame.
PositionY xsd:float optional
The Y position of the field (image) within the well relative to
the well origin defined on the Plate. Units are set by PositionYUnit.
PositionYUnit UnitsLength reference frame optional
The units of the position in Y - default:reference frame.
Timepoint xsd:dateTime optional
The time-point at which the image started to be collected
Source
<xsd:element name="WellSample">
  <!-- top level definition -->
  <xsd:annotation>
    <xsd:appinfo>
      <xsdfu>
        <plural>WellSamples</plural>
      </xsdfu>
    </xsd:appinfo>
    <xsd:documentation>WellSample is an individual image that has been captured within a Well.</xsd:documentation>
  </xsd:annotation>
  <xsd:complexType>
    <xsd:sequence>
      <xsd:element ref="OME:ImageRef" minOccurs="0" maxOccurs="1">
        <xsd:annotation>
          <xsd:appinfo>
            <xsdfu>
              <injected/>
            </xsdfu>
          </xsd:appinfo>
          <xsd:documentation>This is the main link to the core Image element</xsd:documentation>
        </xsd:annotation>
      </xsd:element>
    </xsd:sequence>
    <xsd:attribute name="ID" use="required" type="WellSampleID"/>
    <xsd:attribute name="PositionX" use="optional" type="xsd:float">
      <xsd:annotation>
        <xsd:documentation>The X position of the field (image) within the well relative to the well origin defined on the Plate. Units are set by PositionXUnit.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="PositionXUnit" use="optional" default="reference frame" type="OME:UnitsLength">
      <xsd:annotation>
        <xsd:documentation>The units of the position in X - default:reference frame.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="PositionY" use="optional" type="xsd:float">
      <xsd:annotation>
        <xsd:documentation>The Y position of the field (image) within the well relative to the well origin defined on the Plate. Units are set by PositionYUnit.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="PositionYUnit" use="optional" default="reference frame" type="OME:UnitsLength">
      <xsd:annotation>
        <xsd:documentation>The units of the position in Y - default:reference frame.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="Timepoint" use="optional" type="xsd:dateTime">
      <xsd:annotation>
        <xsd:documentation>The time-point at which the image started to be collected</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="Index" use="required" type="OME:NonNegativeInt">
      <xsd:annotation>
        <xsd:documentation>This records the order of the well samples. Each index should be unique for a given plate but they do not have to be sequential, there may be gaps if part of the dataset is missing. In the user interface the displayed value of the index will be calculated modulo the number of PlateAcquisitions for the plate.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
  </xsd:complexType>
</xsd:element>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Element ReagentRef
Namespace http://www.openmicroscopy.org/Schemas/SPW/2015-01
Diagram
Diagram ome_xsd.tmp#Reference SPW_xsd.tmp#ReagentRef_ID
Type extension of Reference
Type hierarchy
Properties
content complex
Used by
Element Well
Attributes
QName Type Use
ID ReagentID required
Source
<xsd:element name="ReagentRef">
  <!-- top level definition -->
  <xsd:complexType>
    <xsd:complexContent>
      <xsd:extension base="OME:Reference">
        <xsd:attribute name="ID" use="required" type="ReagentID"/>
      </xsd:extension>
    </xsd:complexContent>
  </xsd:complexType>
</xsd:element>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Element PlateAcquisition
Namespace http://www.openmicroscopy.org/Schemas/SPW/2015-01
Annotations
PlateAcquisition is used to describe a single acquisition run for a plate.
This object is used to record the set of images acquired in a single
acquisition run. The Images for this run are linked to PlateAcquisition
through WellSample.
Diagram
Diagram SPW_xsd.tmp#PlateAcquisition_ID SPW_xsd.tmp#PlateAcquisition_Name SPW_xsd.tmp#PlateAcquisition_EndTime SPW_xsd.tmp#PlateAcquisition_StartTime SPW_xsd.tmp#PlateAcquisition_MaximumFieldCount SPW_xsd.tmp#PlateAcquisition_Description SPW_xsd.tmp#WellSampleRef SA_xsd.tmp#AnnotationRef
Properties
content complex
Used by
Element Plate
Model
Children AnnotationRef, Description, WellSampleRef
Instance
<PlateAcquisition EndTime="" ID="" MaximumFieldCount="" Name="" StartTime="" xmlns="http://www.openmicroscopy.org/Schemas/SPW/2015-01" xmlns:SA="http://www.openmicroscopy.org/Schemas/SA/2015-01">
  <Description>{0,1}</Description>
  <WellSampleRef ID="">{0,unbounded}</WellSampleRef>
  <SA:AnnotationRef ID="">{0,unbounded}</SA:AnnotationRef>
</PlateAcquisition>
Attributes
QName Type Use Annotation
EndTime xsd:dateTime optional
Time when the last image of this acquisition was collected
ID PlateAcquisitionID required
MaximumFieldCount PositiveInt optional
The maximum number of fields (well samples) in any well
in this PlateAcquisition.
This is only used to speed up user interaction by stopping
the reading of every well sample.
Name xsd:string optional
StartTime xsd:dateTime optional
Time when the first image of this acquisition was collected
Source
<xsd:element name="PlateAcquisition">
  <!-- top level definition -->
  <xsd:annotation>
    <xsd:appinfo>
      <xsdfu>
        <plural>PlateAcquisitions</plural>
      </xsdfu>
    </xsd:appinfo>
    <xsd:documentation>PlateAcquisition is used to describe a single acquisition run for a plate. This object is used to record the set of images acquired in a single acquisition run. The Images for this run are linked to PlateAcquisition through WellSample.</xsd:documentation>
  </xsd:annotation>
  <xsd:complexType>
    <xsd:sequence>
      <xsd:element name="Description" minOccurs="0" maxOccurs="1">
        <xsd:annotation>
          <xsd:documentation>A description for the PlateAcquisition.</xsd:documentation>
        </xsd:annotation>
        <xsd:simpleType>
          <xsd:restriction base="xsd:string">
            <xsd:whiteSpace value="preserve"/>
          </xsd:restriction>
        </xsd:simpleType>
      </xsd:element>
      <xsd:element ref="WellSampleRef" minOccurs="0" maxOccurs="unbounded"/>
      <xsd:element ref="SA:AnnotationRef" minOccurs="0" maxOccurs="unbounded">
        <xsd:annotation>
          <xsd:appinfo>
            <xsdfu>
              <manytomany/>
            </xsdfu>
          </xsd:appinfo>
        </xsd:annotation>
      </xsd:element>
    </xsd:sequence>
    <xsd:attribute name="ID" use="required" type="PlateAcquisitionID"/>
    <xsd:attribute name="Name" use="optional" type="xsd:string"/>
    <xsd:attribute name="EndTime" use="optional" type="xsd:dateTime">
      <xsd:annotation>
        <xsd:documentation>Time when the last image of this acquisition was collected</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="StartTime" use="optional" type="xsd:dateTime">
      <xsd:annotation>
        <xsd:documentation>Time when the first image of this acquisition was collected</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="MaximumFieldCount" use="optional" type="OME:PositiveInt">
      <xsd:annotation>
        <xsd:documentation>The maximum number of fields (well samples) in any well in this PlateAcquisition. This is only used to speed up user interaction by stopping the reading of every well sample.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
  </xsd:complexType>
</xsd:element>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Element PlateAcquisition / Description
Namespace http://www.openmicroscopy.org/Schemas/SPW/2015-01
Annotations
A description for the PlateAcquisition.
Diagram
Diagram
Type restriction of xsd:string
Properties
content simple
minOccurs 0
maxOccurs 1
Facets
whiteSpace preserve
Source
<xsd:element name="Description" minOccurs="0" maxOccurs="1">
  <xsd:annotation>
    <xsd:documentation>A description for the PlateAcquisition.</xsd:documentation>
  </xsd:annotation>
  <xsd:simpleType>
    <xsd:restriction base="xsd:string">
      <xsd:whiteSpace value="preserve"/>
    </xsd:restriction>
  </xsd:simpleType>
</xsd:element>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Element WellSampleRef
Namespace http://www.openmicroscopy.org/Schemas/SPW/2015-01
Annotations
The WellSampleRef element is a reference to a WellSample element.
Diagram
Diagram ome_xsd.tmp#Reference SPW_xsd.tmp#WellSampleRef_ID
Type extension of Reference
Type hierarchy
Properties
content complex
Used by
Attributes
QName Type Use
ID WellSampleID required
Source
<xsd:element name="WellSampleRef">
  <!-- top level definition -->
  <xsd:annotation>
    <xsd:documentation>The WellSampleRef element is a reference to a WellSample element.</xsd:documentation>
  </xsd:annotation>
  <xsd:complexType>
    <xsd:complexContent>
      <xsd:extension base="OME:Reference">
        <xsd:attribute name="ID" use="required" type="WellSampleID"/>
      </xsd:extension>
    </xsd:complexContent>
  </xsd:complexType>
</xsd:element>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Element Screen
Namespace http://www.openmicroscopy.org/Schemas/SPW/2015-01
Annotations
The Screen element is a grouping for Plates.
The required attribute is the Screen's Name and ID - both must be unique within the document.
The Screen element may contain an ExternalRef attribute that refers to an external database.
A description of the screen may be specified in the Description element.
Screens may contain overlapping sets of Plates i.e.	 Screens and Plates have a many-to-many relationship.
Plates contain one or more ScreenRef elements to specify what screens they belong to.
Diagram
Diagram SPW_xsd.tmp#Screen_ID SPW_xsd.tmp#Screen_Name SPW_xsd.tmp#Screen_ProtocolIdentifier SPW_xsd.tmp#Screen_ProtocolDescription SPW_xsd.tmp#Screen_ReagentSetDescription SPW_xsd.tmp#Screen_ReagentSetIdentifier SPW_xsd.tmp#Screen_Type SPW_xsd.tmp#Screen_Description SPW_xsd.tmp#Reagent SPW_xsd.tmp#Screen_PlateRef SA_xsd.tmp#AnnotationRef
Properties
content complex
Used by
Element OME
Model
Children AnnotationRef, Description, PlateRef, Reagent
Instance
<Screen ID="" Name="" ProtocolDescription="" ProtocolIdentifier="" ReagentSetDescription="" ReagentSetIdentifier="" Type="" xmlns="http://www.openmicroscopy.org/Schemas/SPW/2015-01" xmlns:SA="http://www.openmicroscopy.org/Schemas/SA/2015-01">
  <Description>{0,1}</Description>
  <Reagent ID="" Name="" ReagentIdentifier="">{0,unbounded}</Reagent>
  <PlateRef ID="">{0,unbounded}</PlateRef>
  <SA:AnnotationRef ID="">{0,unbounded}</SA:AnnotationRef>
</Screen>
Attributes
QName Type Use Annotation
ID ScreenID required
Name xsd:string optional
ProtocolDescription xsd:string optional
A description of the screen protocol; may contain very detailed information to
reproduce some of that found in a screening database.
ProtocolIdentifier xsd:string optional
A pointer to an externally defined protocol, usually in a screening database.
ReagentSetDescription xsd:string optional
A description of the set of reagents; may contain very detailed information to
reproduce some of that information found in a screening database.
ReagentSetIdentifier xsd:string optional
A pointer to an externally defined set of reagents, usually in a screening
database/automation database.
Type xsd:string optional
A human readable identifier for the screen type; e.g. RNAi, cDNA, SiRNA, etc.
This string is likely to become an enumeration in future releases.
Source
<xsd:element name="Screen">
  <!-- top level definition -->
  <xsd:annotation>
    <xsd:appinfo>
      <xsdfu>
        <plural>Screens</plural>
      </xsdfu>
    </xsd:appinfo>
    <xsd:documentation>The Screen element is a grouping for Plates. The required attribute is the Screen's Name and ID - both must be unique within the document. The Screen element may contain an ExternalRef attribute that refers to an external database. A description of the screen may be specified in the Description element. Screens may contain overlapping sets of Plates i.e. Screens and Plates have a many-to-many relationship. Plates contain one or more ScreenRef elements to specify what screens they belong to.</xsd:documentation>
  </xsd:annotation>
  <xsd:complexType>
    <xsd:sequence>
      <xsd:element name="Description" minOccurs="0" maxOccurs="1">
        <xsd:annotation>
          <xsd:documentation>A description for the screen.</xsd:documentation>
        </xsd:annotation>
        <xsd:simpleType>
          <xsd:restriction base="xsd:string">
            <xsd:whiteSpace value="preserve"/>
          </xsd:restriction>
        </xsd:simpleType>
      </xsd:element>
      <xsd:element ref="Reagent" minOccurs="0" maxOccurs="unbounded"/>
      <xsd:element name="PlateRef" minOccurs="0" maxOccurs="unbounded">
        <xsd:annotation>
          <xsd:appinfo>
            <xsdfu>
              <manytomany/>
            </xsdfu>
          </xsd:appinfo>
          <xsd:documentation>The PlateRef element is a reference to a Plate element. Screen elements may have one or more PlateRef elements to define the plates that are part of the screen. Plates may belong to more than one screen.</xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:complexContent>
            <xsd:extension base="OME:Reference">
              <xsd:attribute name="ID" use="required" type="PlateID"/>
            </xsd:extension>
          </xsd:complexContent>
        </xsd:complexType>
      </xsd:element>
      <xsd:element ref="SA:AnnotationRef" minOccurs="0" maxOccurs="unbounded">
        <xsd:annotation>
          <xsd:appinfo>
            <xsdfu>
              <manytomany/>
            </xsdfu>
          </xsd:appinfo>
        </xsd:annotation>
      </xsd:element>
    </xsd:sequence>
    <xsd:attribute name="ID" use="required" type="ScreenID"/>
    <xsd:attribute name="Name" use="optional" type="xsd:string"/>
    <xsd:attribute name="ProtocolIdentifier" use="optional" type="xsd:string">
      <xsd:annotation>
        <xsd:documentation>A pointer to an externally defined protocol, usually in a screening database.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="ProtocolDescription" use="optional" type="xsd:string">
      <xsd:annotation>
        <xsd:documentation>A description of the screen protocol; may contain very detailed information to reproduce some of that found in a screening database.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="ReagentSetDescription" use="optional" type="xsd:string">
      <xsd:annotation>
        <xsd:documentation>A description of the set of reagents; may contain very detailed information to reproduce some of that information found in a screening database.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="ReagentSetIdentifier" use="optional" type="xsd:string">
      <xsd:annotation>
        <xsd:documentation>A pointer to an externally defined set of reagents, usually in a screening database/automation database.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="Type" use="optional" type="xsd:string">
      <xsd:annotation>
        <xsd:documentation>A human readable identifier for the screen type; e.g. RNAi, cDNA, SiRNA, etc. This string is likely to become an enumeration in future releases.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
  </xsd:complexType>
</xsd:element>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Element Screen / Description
Namespace http://www.openmicroscopy.org/Schemas/SPW/2015-01
Annotations
A description for the screen.
Diagram
Diagram
Type restriction of xsd:string
Properties
content simple
minOccurs 0
maxOccurs 1
Facets
whiteSpace preserve
Source
<xsd:element name="Description" minOccurs="0" maxOccurs="1">
  <xsd:annotation>
    <xsd:documentation>A description for the screen.</xsd:documentation>
  </xsd:annotation>
  <xsd:simpleType>
    <xsd:restriction base="xsd:string">
      <xsd:whiteSpace value="preserve"/>
    </xsd:restriction>
  </xsd:simpleType>
</xsd:element>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Element Reagent
Namespace http://www.openmicroscopy.org/Schemas/SPW/2015-01
Annotations
Reagent is used to describe a chemical or some other physical experimental parameter.
Diagram
Diagram SPW_xsd.tmp#Reagent_ID SPW_xsd.tmp#Reagent_Name SPW_xsd.tmp#Reagent_ReagentIdentifier SPW_xsd.tmp#Reagent_Description SA_xsd.tmp#AnnotationRef
Properties
content complex
Used by
Element Screen
Model
Children AnnotationRef, Description
Instance
<Reagent ID="" Name="" ReagentIdentifier="" xmlns="http://www.openmicroscopy.org/Schemas/SPW/2015-01" xmlns:SA="http://www.openmicroscopy.org/Schemas/SA/2015-01">
  <Description>{0,1}</Description>
  <SA:AnnotationRef ID="">{0,unbounded}</SA:AnnotationRef>
</Reagent>
Attributes
QName Type Use Annotation
ID ReagentID required
Name xsd:string optional
A short name for the reagent
ReagentIdentifier xsd:string optional
This is a reference to an external (to OME) representation of the Reagent.
It serves as a foreign key into an external database. - It is sometimes referred to as ExternalIdentifier.
Source
<xsd:element name="Reagent">
  <!-- top level definition -->
  <xsd:annotation>
    <xsd:appinfo>
      <xsdfu>
        <plural>Reagents</plural>
      </xsdfu>
    </xsd:appinfo>
    <xsd:documentation>Reagent is used to describe a chemical or some other physical experimental parameter.</xsd:documentation>
  </xsd:annotation>
  <xsd:complexType>
    <xsd:sequence>
      <xsd:element name="Description" minOccurs="0" maxOccurs="1">
        <xsd:annotation>
          <xsd:documentation>A long description for the reagent.</xsd:documentation>
        </xsd:annotation>
        <xsd:simpleType>
          <xsd:restriction base="xsd:string">
            <xsd:whiteSpace value="preserve"/>
          </xsd:restriction>
        </xsd:simpleType>
      </xsd:element>
      <xsd:element ref="SA:AnnotationRef" minOccurs="0" maxOccurs="unbounded">
        <xsd:annotation>
          <xsd:appinfo>
            <xsdfu>
              <manytomany/>
            </xsdfu>
          </xsd:appinfo>
        </xsd:annotation>
      </xsd:element>
    </xsd:sequence>
    <xsd:attribute name="ID" use="required" type="ReagentID"/>
    <xsd:attribute name="Name" use="optional" type="xsd:string">
      <xsd:annotation>
        <xsd:documentation>A short name for the reagent</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="ReagentIdentifier" use="optional" type="xsd:string">
      <xsd:annotation>
        <xsd:documentation>This is a reference to an external (to OME) representation of the Reagent. It serves as a foreign key into an external database. - It is sometimes referred to as ExternalIdentifier.</xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
  </xsd:complexType>
</xsd:element>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Element Reagent / Description
Namespace http://www.openmicroscopy.org/Schemas/SPW/2015-01
Annotations
A long description for the reagent.
Diagram
Diagram
Type restriction of xsd:string
Properties
content simple
minOccurs 0
maxOccurs 1
Facets
whiteSpace preserve
Source
<xsd:element name="Description" minOccurs="0" maxOccurs="1">
  <xsd:annotation>
    <xsd:documentation>A long description for the reagent.</xsd:documentation>
  </xsd:annotation>
  <xsd:simpleType>
    <xsd:restriction base="xsd:string">
      <xsd:whiteSpace value="preserve"/>
    </xsd:restriction>
  </xsd:simpleType>
</xsd:element>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Element Screen / PlateRef
Namespace http://www.openmicroscopy.org/Schemas/SPW/2015-01
Annotations
The PlateRef element is a reference to a Plate element.
Screen elements may have one or more PlateRef elements to define the plates that are part of the screen.
Plates may belong to more than one screen.
Diagram
Diagram ome_xsd.tmp#Reference SPW_xsd.tmp#Screen_Screen_PlateRef_ID
Type extension of Reference
Type hierarchy
Properties
content complex
minOccurs 0
maxOccurs unbounded
Attributes
QName Type Use
ID PlateID required
Source
<xsd:element name="PlateRef" minOccurs="0" maxOccurs="unbounded">
  <xsd:annotation>
    <xsd:appinfo>
      <xsdfu>
        <manytomany/>
      </xsdfu>
    </xsd:appinfo>
    <xsd:documentation>The PlateRef element is a reference to a Plate element. Screen elements may have one or more PlateRef elements to define the plates that are part of the screen. Plates may belong to more than one screen.</xsd:documentation>
  </xsd:annotation>
  <xsd:complexType>
    <xsd:complexContent>
      <xsd:extension base="OME:Reference">
        <xsd:attribute name="ID" use="required" type="PlateID"/>
      </xsd:extension>
    </xsd:complexContent>
  </xsd:complexType>
</xsd:element>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Simple Type WellSampleID
Namespace http://www.openmicroscopy.org/Schemas/SPW/2015-01
Diagram
Diagram ome_xsd.tmp#LSID
Type restriction of LSID
Type hierarchy
Facets
pattern ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:\S+:\S+)|(\S+:\S+)) & ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:WellSample:\S+)|(WellSample:\S+))
Used by
Source
<xsd:simpleType name="WellSampleID">
  <xsd:restriction base="OME:LSID">
    <xsd:pattern value="(urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:WellSample:\S+)|(WellSample:\S+)"/>
  </xsd:restriction>
</xsd:simpleType>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Simple Type ReagentID
Namespace http://www.openmicroscopy.org/Schemas/SPW/2015-01
Diagram
Diagram ome_xsd.tmp#LSID
Type restriction of LSID
Type hierarchy
Facets
pattern ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:\S+:\S+)|(\S+:\S+)) & ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:Reagent:\S+)|(Reagent:\S+))
Used by
Source
<xsd:simpleType name="ReagentID">
  <xsd:restriction base="OME:LSID">
    <xsd:pattern value="(urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:Reagent:\S+)|(Reagent:\S+)"/>
  </xsd:restriction>
</xsd:simpleType>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Simple Type WellID
Namespace http://www.openmicroscopy.org/Schemas/SPW/2015-01
Diagram
Diagram ome_xsd.tmp#LSID
Type restriction of LSID
Type hierarchy
Facets
pattern ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:\S+:\S+)|(\S+:\S+)) & ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:Well:\S+)|(Well:\S+))
Used by
Attribute Well/@ID
Source
<xsd:simpleType name="WellID">
  <xsd:restriction base="OME:LSID">
    <xsd:pattern value="(urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:Well:\S+)|(Well:\S+)"/>
  </xsd:restriction>
</xsd:simpleType>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Simple Type PlateAcquisitionID
Namespace http://www.openmicroscopy.org/Schemas/SPW/2015-01
Diagram
Diagram ome_xsd.tmp#LSID
Type restriction of LSID
Type hierarchy
Facets
pattern ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:\S+:\S+)|(\S+:\S+)) & ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:PlateAcquisition:\S+)|(PlateAcquisition:\S+))
Used by
Source
<xsd:simpleType name="PlateAcquisitionID">
  <xsd:restriction base="OME:LSID">
    <xsd:pattern value="(urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:PlateAcquisition:\S+)|(PlateAcquisition:\S+)"/>
  </xsd:restriction>
</xsd:simpleType>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Simple Type PlateID
Namespace http://www.openmicroscopy.org/Schemas/SPW/2015-01
Diagram
Diagram ome_xsd.tmp#LSID
Type restriction of LSID
Type hierarchy
Facets
pattern ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:\S+:\S+)|(\S+:\S+)) & ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:Plate:\S+)|(Plate:\S+))
Used by
Source
<xsd:simpleType name="PlateID">
  <xsd:restriction base="OME:LSID">
    <xsd:pattern value="(urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:Plate:\S+)|(Plate:\S+)"/>
  </xsd:restriction>
</xsd:simpleType>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Simple Type NamingConvention
Namespace http://www.openmicroscopy.org/Schemas/SPW/2015-01
Annotations
Predefined list of values for the well labels
Diagram
Diagram
Type restriction of xsd:string
Facets
enumeration letter
While the label type 'number' has a clear meaning the 'letter'
						type is more complex.

						If you have less than 26 values use letters A to Z.
						Once you get more than 26 values there are several different
						approaches in use.
						One we have see include:

						Single letter, then double letter each running A to Z, right first
						e.g. A, B, C, ... X, Y, Z, AA, AB, AC, ... AY, AZ, BA, BB, ...
						This is the format used by Microsoft Excel so users may be familiar with it.
						This is the approach we use in the OMERO client applications.

						CAPITALsmall, each running A to Z, small first
						e.g. Aa, Ab, Ac, ... Ax, Ay, Az, Ba, Bb, Bc, ... By, Bz, Ca, Cb, ...
						This is in use by some plate manufactures.

						Single letter, then double letter, then triple letter, and so on
						e.g. A, B, C, ... X, Y, Z, AA, BB, CC, ... YY, ZZ, AAA, BBB, ...
						This has the advantage that the first 26 are the same as the standard
						but has a problem an the labels get wider and wider leading to user
						interface problems.
enumeration number
1, 2, 3, ...
Used by
Source
<xsd:simpleType name="NamingConvention">
  <xsd:annotation>
    <xsd:documentation>Predefined list of values for the well labels</xsd:documentation>
  </xsd:annotation>
  <xsd:restriction base="xsd:string">
    <xsd:enumeration value="letter">
      <xsd:annotation>
        <xsd:documentation>While the label type 'number' has a clear meaning the 'letter' type is more complex. If you have less than 26 values use letters A to Z. Once you get more than 26 values there are several different approaches in use. One we have see include: Single letter, then double letter each running A to Z, right first e.g. A, B, C, ... X, Y, Z, AA, AB, AC, ... AY, AZ, BA, BB, ... This is the format used by Microsoft Excel so users may be familiar with it. This is the approach we use in the OMERO client applications. CAPITALsmall, each running A to Z, small first e.g. Aa, Ab, Ac, ... Ax, Ay, Az, Ba, Bb, Bc, ... By, Bz, Ca, Cb, ... This is in use by some plate manufactures. Single letter, then double letter, then triple letter, and so on e.g. A, B, C, ... X, Y, Z, AA, BB, CC, ... YY, ZZ, AAA, BBB, ... This has the advantage that the first 26 are the same as the standard but has a problem an the labels get wider and wider leading to user interface problems.</xsd:documentation>
      </xsd:annotation>
    </xsd:enumeration>
    <xsd:enumeration value="number">
      <xsd:annotation>
        <xsd:documentation>1, 2, 3, ...</xsd:documentation>
      </xsd:annotation>
    </xsd:enumeration>
  </xsd:restriction>
</xsd:simpleType>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Simple Type ScreenID
Namespace http://www.openmicroscopy.org/Schemas/SPW/2015-01
Diagram
Diagram ome_xsd.tmp#LSID
Type restriction of LSID
Type hierarchy
Facets
pattern ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:\S+:\S+)|(\S+:\S+)) & ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:Screen:\S+)|(Screen:\S+))
Used by
Attribute Screen/@ID
Source
<xsd:simpleType name="ScreenID">
  <xsd:restriction base="OME:LSID">
    <xsd:pattern value="(urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:Screen:\S+)|(Screen:\S+)"/>
  </xsd:restriction>
</xsd:simpleType>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute WellSample / @ID
Namespace No namespace
Type WellSampleID
Type hierarchy
Properties
use required
Facets
pattern ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:\S+:\S+)|(\S+:\S+)) & ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:WellSample:\S+)|(WellSample:\S+))
Used by
Element WellSample
Source
<xsd:attribute name="ID" use="required" type="WellSampleID"/>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute WellSample / @PositionX
Namespace No namespace
Annotations
The X position of the field (image) within the well relative to
the well origin defined on the Plate. Units are set by PositionXUnit.
Type xsd:float
Properties
use optional
Used by
Element WellSample
Source
<xsd:attribute name="PositionX" use="optional" type="xsd:float">
  <xsd:annotation>
    <xsd:documentation>The X position of the field (image) within the well relative to the well origin defined on the Plate. Units are set by PositionXUnit.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute WellSample / @PositionXUnit
Namespace No namespace
Annotations
The units of the position in X - default:reference frame.
Type UnitsLength
Properties
use optional
default reference frame
Facets
enumeration Ym
The length unit is yotta meters.
enumeration Zm
The length unit is zetta meters.
enumeration Em
The length unit is   exa meters.
enumeration Pm
The length unit is  peta meters.
enumeration Tm
The length unit is  tera meters.
enumeration Gm
The length unit is  giga meters.
enumeration Mm
The length unit is  mega meters.
enumeration km
The length unit is  kilo meters.
enumeration hm
The length unit is hecto meters.
enumeration dam
The length unit is  deca meters.
enumeration m
The length unit is       meters.
enumeration dm
The length unit is  deci meters.
enumeration cm
The length unit is centi meters.
enumeration mm
The length unit is milli meters.
enumeration µm
The length unit is micro meters.
enumeration nm
The length unit is  nano meters.
enumeration pm
The length unit is  pico meters.
enumeration fm
The length unit is femto meters.
enumeration am
The length unit is  atto meters.
enumeration zm
The length unit is zepto meters.
enumeration ym
The length unit is yocto meters.
enumeration Å
The length unit is    ångströms.
enumeration thou
The length unit is thou (or mil, 1/1000 of an inch).
enumeration li
The length unit is line (1/12 of an inch).
enumeration in
The length unit is inch.
enumeration ft
The length unit is foot.
enumeration yd
The length unit is yard.
enumeration mi
The length unit is terrestrial mile.
enumeration ua
The length unit is astronomical unit. The official term is ua as the SI standard assigned AU to absorbance unit.
enumeration ly
The length unit is light year.
enumeration pc
The length unit is parsec.
enumeration pt
The length unit is typography point. This unit should be limited to font sizes.
enumeration pixel
The length unit is pixel. This unit should be limited to the ROI objects. It can then be resolved to real units from the PhysicalSize units of the Image the ROI is attached to.
enumeration reference frame
The length unit is reference frame.
Used by
Element WellSample
Source
<xsd:attribute name="PositionXUnit" use="optional" default="reference frame" type="OME:UnitsLength">
  <xsd:annotation>
    <xsd:documentation>The units of the position in X - default:reference frame.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute WellSample / @PositionY
Namespace No namespace
Annotations
The Y position of the field (image) within the well relative to
the well origin defined on the Plate. Units are set by PositionYUnit.
Type xsd:float
Properties
use optional
Used by
Element WellSample
Source
<xsd:attribute name="PositionY" use="optional" type="xsd:float">
  <xsd:annotation>
    <xsd:documentation>The Y position of the field (image) within the well relative to the well origin defined on the Plate. Units are set by PositionYUnit.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute WellSample / @PositionYUnit
Namespace No namespace
Annotations
The units of the position in Y - default:reference frame.
Type UnitsLength
Properties
use optional
default reference frame
Facets
enumeration Ym
The length unit is yotta meters.
enumeration Zm
The length unit is zetta meters.
enumeration Em
The length unit is   exa meters.
enumeration Pm
The length unit is  peta meters.
enumeration Tm
The length unit is  tera meters.
enumeration Gm
The length unit is  giga meters.
enumeration Mm
The length unit is  mega meters.
enumeration km
The length unit is  kilo meters.
enumeration hm
The length unit is hecto meters.
enumeration dam
The length unit is  deca meters.
enumeration m
The length unit is       meters.
enumeration dm
The length unit is  deci meters.
enumeration cm
The length unit is centi meters.
enumeration mm
The length unit is milli meters.
enumeration µm
The length unit is micro meters.
enumeration nm
The length unit is  nano meters.
enumeration pm
The length unit is  pico meters.
enumeration fm
The length unit is femto meters.
enumeration am
The length unit is  atto meters.
enumeration zm
The length unit is zepto meters.
enumeration ym
The length unit is yocto meters.
enumeration Å
The length unit is    ångströms.
enumeration thou
The length unit is thou (or mil, 1/1000 of an inch).
enumeration li
The length unit is line (1/12 of an inch).
enumeration in
The length unit is inch.
enumeration ft
The length unit is foot.
enumeration yd
The length unit is yard.
enumeration mi
The length unit is terrestrial mile.
enumeration ua
The length unit is astronomical unit. The official term is ua as the SI standard assigned AU to absorbance unit.
enumeration ly
The length unit is light year.
enumeration pc
The length unit is parsec.
enumeration pt
The length unit is typography point. This unit should be limited to font sizes.
enumeration pixel
The length unit is pixel. This unit should be limited to the ROI objects. It can then be resolved to real units from the PhysicalSize units of the Image the ROI is attached to.
enumeration reference frame
The length unit is reference frame.
Used by
Element WellSample
Source
<xsd:attribute name="PositionYUnit" use="optional" default="reference frame" type="OME:UnitsLength">
  <xsd:annotation>
    <xsd:documentation>The units of the position in Y - default:reference frame.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute WellSample / @Timepoint
Namespace No namespace
Annotations
The time-point at which the image started to be collected
Type xsd:dateTime
Properties
use optional
Used by
Element WellSample
Source
<xsd:attribute name="Timepoint" use="optional" type="xsd:dateTime">
  <xsd:annotation>
    <xsd:documentation>The time-point at which the image started to be collected</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute WellSample / @Index
Namespace No namespace
Annotations
This records the order of the well samples. Each
index should be unique for a given plate but they do not
have to be sequential, there may be gaps if part of the
dataset is missing. In the user interface the displayed
value of the index will be calculated modulo the number
of PlateAcquisitions for the plate.
Type NonNegativeInt
Properties
use required
Facets
minInclusive 0
Used by
Element WellSample
Source
<xsd:attribute name="Index" use="required" type="OME:NonNegativeInt">
  <xsd:annotation>
    <xsd:documentation>This records the order of the well samples. Each index should be unique for a given plate but they do not have to be sequential, there may be gaps if part of the dataset is missing. In the user interface the displayed value of the index will be calculated modulo the number of PlateAcquisitions for the plate.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute ReagentRef / @ID
Namespace No namespace
Type ReagentID
Type hierarchy
Properties
use required
Facets
pattern ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:\S+:\S+)|(\S+:\S+)) & ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:Reagent:\S+)|(Reagent:\S+))
Used by
Element ReagentRef
Source
<xsd:attribute name="ID" use="required" type="ReagentID"/>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Well / @ID
Namespace No namespace
Type WellID
Type hierarchy
Properties
use required
Facets
pattern ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:\S+:\S+)|(\S+:\S+)) & ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:Well:\S+)|(Well:\S+))
Used by
Element Well
Source
<xsd:attribute name="ID" use="required" type="WellID"/>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Well / @Column
Namespace No namespace
Annotations
This is the column index of the well, the origin is the top left corner of the plate
with the first column of cells being column zero. i.e top left is (0,0)
The combination of Row, Column has to be unique for each well in a plate.
Type NonNegativeInt
Properties
use required
Facets
minInclusive 0
Used by
Element Well
Source
<xsd:attribute name="Column" use="required" type="OME:NonNegativeInt">
  <xsd:annotation>
    <xsd:documentation>This is the column index of the well, the origin is the top left corner of the plate with the first column of cells being column zero. i.e top left is (0,0) The combination of Row, Column has to be unique for each well in a plate.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Well / @Row
Namespace No namespace
Annotations
This is the row index of the well, the origin is the top left corner of the plate
with the first row of wells being row zero. i.e top left is (0,0)
The combination of Row, Column has to be unique for each well in a plate.
Type NonNegativeInt
Properties
use required
Facets
minInclusive 0
Used by
Element Well
Source
<xsd:attribute name="Row" use="required" type="OME:NonNegativeInt">
  <xsd:annotation>
    <xsd:documentation>This is the row index of the well, the origin is the top left corner of the plate with the first row of wells being row zero. i.e top left is (0,0) The combination of Row, Column has to be unique for each well in a plate.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Well / @ExternalDescription
Namespace No namespace
Annotations
A description of the externally defined identifier for this plate.
Type xsd:string
Properties
use optional
Used by
Element Well
Source
<xsd:attribute name="ExternalDescription" use="optional" type="xsd:string">
  <xsd:annotation>
    <xsd:documentation>A description of the externally defined identifier for this plate.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Well / @ExternalIdentifier
Namespace No namespace
Annotations
The ExternalIdentifier attribute may contain a reference to an external database.
Type xsd:string
Properties
use optional
Used by
Element Well
Source
<xsd:attribute name="ExternalIdentifier" use="optional" type="xsd:string">
  <xsd:annotation>
    <xsd:documentation>The ExternalIdentifier attribute may contain a reference to an external database.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Well / @Type
Namespace No namespace
Annotations
A human readable identifier for the screening status.
e.g. empty, positive control, negative control, control, experimental, etc.
Type xsd:string
Properties
use optional
Used by
Element Well
Source
<xsd:attribute name="Type" use="optional" type="xsd:string">
  <xsd:annotation>
    <xsd:documentation>A human readable identifier for the screening status. e.g. empty, positive control, negative control, control, experimental, etc.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Well / @Color
Namespace No namespace
Annotations
A marker color used to highlight the well - encoded as RGBA
The default value "-1" is #FFFFFFFF so solid white (it is a signed 32 bit value)
NOTE: Prior to the 2012-06 schema the default value was incorrect and produced a transparent red not solid white.
Type Color
Properties
use optional
default -1
Used by
Element Well
Source
<xsd:attribute name="Color" use="optional" type="OME:Color" default="-1">
  <xsd:annotation>
    <xsd:documentation>A marker color used to highlight the well - encoded as RGBA The default value "-1" is #FFFFFFFF so solid white (it is a signed 32 bit value) NOTE: Prior to the 2012-06 schema the default value was incorrect and produced a transparent red not solid white.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute WellSampleRef / @ID
Namespace No namespace
Type WellSampleID
Type hierarchy
Properties
use required
Facets
pattern ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:\S+:\S+)|(\S+:\S+)) & ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:WellSample:\S+)|(WellSample:\S+))
Used by
Element WellSampleRef
Source
<xsd:attribute name="ID" use="required" type="WellSampleID"/>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute PlateAcquisition / @ID
Namespace No namespace
Type PlateAcquisitionID
Type hierarchy
Properties
use required
Facets
pattern ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:\S+:\S+)|(\S+:\S+)) & ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:PlateAcquisition:\S+)|(PlateAcquisition:\S+))
Used by
Source
<xsd:attribute name="ID" use="required" type="PlateAcquisitionID"/>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute PlateAcquisition / @Name
Namespace No namespace
Type xsd:string
Properties
use optional
Used by
Source
<xsd:attribute name="Name" use="optional" type="xsd:string"/>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute PlateAcquisition / @EndTime
Namespace No namespace
Annotations
Time when the last image of this acquisition was collected
Type xsd:dateTime
Properties
use optional
Used by
Source
<xsd:attribute name="EndTime" use="optional" type="xsd:dateTime">
  <xsd:annotation>
    <xsd:documentation>Time when the last image of this acquisition was collected</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute PlateAcquisition / @StartTime
Namespace No namespace
Annotations
Time when the first image of this acquisition was collected
Type xsd:dateTime
Properties
use optional
Used by
Source
<xsd:attribute name="StartTime" use="optional" type="xsd:dateTime">
  <xsd:annotation>
    <xsd:documentation>Time when the first image of this acquisition was collected</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute PlateAcquisition / @MaximumFieldCount
Namespace No namespace
Annotations
The maximum number of fields (well samples) in any well
in this PlateAcquisition.
This is only used to speed up user interaction by stopping
the reading of every well sample.
Type PositiveInt
Properties
use optional
Facets
minInclusive 1
Used by
Source
<xsd:attribute name="MaximumFieldCount" use="optional" type="OME:PositiveInt">
  <xsd:annotation>
    <xsd:documentation>The maximum number of fields (well samples) in any well in this PlateAcquisition. This is only used to speed up user interaction by stopping the reading of every well sample.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Plate / @ID
Namespace No namespace
Type PlateID
Type hierarchy
Properties
use required
Facets
pattern ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:\S+:\S+)|(\S+:\S+)) & ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:Plate:\S+)|(Plate:\S+))
Used by
Element Plate
Source
<xsd:attribute name="ID" use="required" type="PlateID"/>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Plate / @Name
Namespace No namespace
Annotations
The Name identifies the plate to the user.
						It is used much like the ID, and so must be
						unique within the document.

						If a plate name is not available when one is needed
						it will be constructed in the following order:
						1. If name is available use it.
						2. If not use "Start time - End time"
						    (NOTE: Not a subtraction! A string representation
						    of the two times separated by a dash.)
						3. If these times are not available use the Plate ID.
Type xsd:string
Properties
use optional
Used by
Element Plate
Source
<xsd:attribute name="Name" use="optional" type="xsd:string">
  <xsd:annotation>
    <xsd:documentation>The Name identifies the plate to the user. It is used much like the ID, and so must be unique within the document. If a plate name is not available when one is needed it will be constructed in the following order: 1. If name is available use it. 2. If not use "Start time - End time" (NOTE: Not a subtraction! A string representation of the two times separated by a dash.) 3. If these times are not available use the Plate ID.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Plate / @Status
Namespace No namespace
Annotations
A textual annotation of the current state of the plate with respect to the
experiment work-flow; e.g.
1. Seed cell: done; 2. Transfection: done;	3. Gel doc: todo.
Type xsd:string
Properties
use optional
Used by
Element Plate
Source
<xsd:attribute name="Status" use="optional" type="xsd:string">
  <xsd:annotation>
    <xsd:documentation>A textual annotation of the current state of the plate with respect to the experiment work-flow; e.g. 1. Seed cell: done; 2. Transfection: done; 3. Gel doc: todo.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Plate / @ExternalIdentifier
Namespace No namespace
Annotations
The ExternalIdentifier attribute may contain a reference to an external database.
Type xsd:string
Properties
use optional
Used by
Element Plate
Source
<xsd:attribute name="ExternalIdentifier" use="optional" type="xsd:string">
  <xsd:annotation>
    <xsd:documentation>The ExternalIdentifier attribute may contain a reference to an external database.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Plate / @ColumnNamingConvention
Namespace No namespace
Annotations
The ColumnNamingConvention
Type NamingConvention
Properties
use optional
Facets
enumeration letter
While the label type 'number' has a clear meaning the 'letter'
						type is more complex.

						If you have less than 26 values use letters A to Z.
						Once you get more than 26 values there are several different
						approaches in use.
						One we have see include:

						Single letter, then double letter each running A to Z, right first
						e.g. A, B, C, ... X, Y, Z, AA, AB, AC, ... AY, AZ, BA, BB, ...
						This is the format used by Microsoft Excel so users may be familiar with it.
						This is the approach we use in the OMERO client applications.

						CAPITALsmall, each running A to Z, small first
						e.g. Aa, Ab, Ac, ... Ax, Ay, Az, Ba, Bb, Bc, ... By, Bz, Ca, Cb, ...
						This is in use by some plate manufactures.

						Single letter, then double letter, then triple letter, and so on
						e.g. A, B, C, ... X, Y, Z, AA, BB, CC, ... YY, ZZ, AAA, BBB, ...
						This has the advantage that the first 26 are the same as the standard
						but has a problem an the labels get wider and wider leading to user
						interface problems.
enumeration number
1, 2, 3, ...
Used by
Element Plate
Source
<xsd:attribute name="ColumnNamingConvention" use="optional" type="NamingConvention">
  <xsd:annotation>
    <xsd:documentation>The ColumnNamingConvention</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Plate / @RowNamingConvention
Namespace No namespace
Annotations
The RowNamingConvention
Type NamingConvention
Properties
use optional
Facets
enumeration letter
While the label type 'number' has a clear meaning the 'letter'
						type is more complex.

						If you have less than 26 values use letters A to Z.
						Once you get more than 26 values there are several different
						approaches in use.
						One we have see include:

						Single letter, then double letter each running A to Z, right first
						e.g. A, B, C, ... X, Y, Z, AA, AB, AC, ... AY, AZ, BA, BB, ...
						This is the format used by Microsoft Excel so users may be familiar with it.
						This is the approach we use in the OMERO client applications.

						CAPITALsmall, each running A to Z, small first
						e.g. Aa, Ab, Ac, ... Ax, Ay, Az, Ba, Bb, Bc, ... By, Bz, Ca, Cb, ...
						This is in use by some plate manufactures.

						Single letter, then double letter, then triple letter, and so on
						e.g. A, B, C, ... X, Y, Z, AA, BB, CC, ... YY, ZZ, AAA, BBB, ...
						This has the advantage that the first 26 are the same as the standard
						but has a problem an the labels get wider and wider leading to user
						interface problems.
enumeration number
1, 2, 3, ...
Used by
Element Plate
Source
<xsd:attribute name="RowNamingConvention" use="optional" type="NamingConvention">
  <xsd:annotation>
    <xsd:documentation>The RowNamingConvention</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Plate / @WellOriginX
Namespace No namespace
Annotations
This defines the X position to use for the origin of the
						fields (individual images) taken in a well. It is used
						with the X in the WellSample to display the fields
						in the correct position relative to each other. Each Well
						in the plate has the same well origin. Units are set by WellOriginXUnit.

						In the OMERO clients by convention we display the WellOrigin
						in the center of the view.
Type xsd:float
Properties
use optional
Used by
Element Plate
Source
<xsd:attribute name="WellOriginX" use="optional" type="xsd:float">
  <xsd:annotation>
    <xsd:documentation>This defines the X position to use for the origin of the fields (individual images) taken in a well. It is used with the X in the WellSample to display the fields in the correct position relative to each other. Each Well in the plate has the same well origin. Units are set by WellOriginXUnit. In the OMERO clients by convention we display the WellOrigin in the center of the view.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Plate / @WellOriginXUnit
Namespace No namespace
Annotations
The units of the well origin in X - default:reference frame.
Type UnitsLength
Properties
use optional
default reference frame
Facets
enumeration Ym
The length unit is yotta meters.
enumeration Zm
The length unit is zetta meters.
enumeration Em
The length unit is   exa meters.
enumeration Pm
The length unit is  peta meters.
enumeration Tm
The length unit is  tera meters.
enumeration Gm
The length unit is  giga meters.
enumeration Mm
The length unit is  mega meters.
enumeration km
The length unit is  kilo meters.
enumeration hm
The length unit is hecto meters.
enumeration dam
The length unit is  deca meters.
enumeration m
The length unit is       meters.
enumeration dm
The length unit is  deci meters.
enumeration cm
The length unit is centi meters.
enumeration mm
The length unit is milli meters.
enumeration µm
The length unit is micro meters.
enumeration nm
The length unit is  nano meters.
enumeration pm
The length unit is  pico meters.
enumeration fm
The length unit is femto meters.
enumeration am
The length unit is  atto meters.
enumeration zm
The length unit is zepto meters.
enumeration ym
The length unit is yocto meters.
enumeration Å
The length unit is    ångströms.
enumeration thou
The length unit is thou (or mil, 1/1000 of an inch).
enumeration li
The length unit is line (1/12 of an inch).
enumeration in
The length unit is inch.
enumeration ft
The length unit is foot.
enumeration yd
The length unit is yard.
enumeration mi
The length unit is terrestrial mile.
enumeration ua
The length unit is astronomical unit. The official term is ua as the SI standard assigned AU to absorbance unit.
enumeration ly
The length unit is light year.
enumeration pc
The length unit is parsec.
enumeration pt
The length unit is typography point. This unit should be limited to font sizes.
enumeration pixel
The length unit is pixel. This unit should be limited to the ROI objects. It can then be resolved to real units from the PhysicalSize units of the Image the ROI is attached to.
enumeration reference frame
The length unit is reference frame.
Used by
Element Plate
Source
<xsd:attribute name="WellOriginXUnit" use="optional" default="reference frame" type="OME:UnitsLength">
  <xsd:annotation>
    <xsd:documentation>The units of the well origin in X - default:reference frame.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Plate / @WellOriginY
Namespace No namespace
Annotations
This defines the Y position to use for the origin of the
						fields (individual images) taken in a well. It is used
						with the Y in the WellSample to display the fields
						in the correct position relative to each other. Each Well
						in the plate has the same well origin.  Units are set by WellOriginYUnit.

						In the OMERO clients by convention we display the WellOrigin
						in the center of the view.
Type xsd:float
Properties
use optional
Used by
Element Plate
Source
<xsd:attribute name="WellOriginY" use="optional" type="xsd:float">
  <xsd:annotation>
    <xsd:documentation>This defines the Y position to use for the origin of the fields (individual images) taken in a well. It is used with the Y in the WellSample to display the fields in the correct position relative to each other. Each Well in the plate has the same well origin. Units are set by WellOriginYUnit. In the OMERO clients by convention we display the WellOrigin in the center of the view.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Plate / @WellOriginYUnit
Namespace No namespace
Annotations
The units of the well origin in Y - default:reference frame.
Type UnitsLength
Properties
use optional
default reference frame
Facets
enumeration Ym
The length unit is yotta meters.
enumeration Zm
The length unit is zetta meters.
enumeration Em
The length unit is   exa meters.
enumeration Pm
The length unit is  peta meters.
enumeration Tm
The length unit is  tera meters.
enumeration Gm
The length unit is  giga meters.
enumeration Mm
The length unit is  mega meters.
enumeration km
The length unit is  kilo meters.
enumeration hm
The length unit is hecto meters.
enumeration dam
The length unit is  deca meters.
enumeration m
The length unit is       meters.
enumeration dm
The length unit is  deci meters.
enumeration cm
The length unit is centi meters.
enumeration mm
The length unit is milli meters.
enumeration µm
The length unit is micro meters.
enumeration nm
The length unit is  nano meters.
enumeration pm
The length unit is  pico meters.
enumeration fm
The length unit is femto meters.
enumeration am
The length unit is  atto meters.
enumeration zm
The length unit is zepto meters.
enumeration ym
The length unit is yocto meters.
enumeration Å
The length unit is    ångströms.
enumeration thou
The length unit is thou (or mil, 1/1000 of an inch).
enumeration li
The length unit is line (1/12 of an inch).
enumeration in
The length unit is inch.
enumeration ft
The length unit is foot.
enumeration yd
The length unit is yard.
enumeration mi
The length unit is terrestrial mile.
enumeration ua
The length unit is astronomical unit. The official term is ua as the SI standard assigned AU to absorbance unit.
enumeration ly
The length unit is light year.
enumeration pc
The length unit is parsec.
enumeration pt
The length unit is typography point. This unit should be limited to font sizes.
enumeration pixel
The length unit is pixel. This unit should be limited to the ROI objects. It can then be resolved to real units from the PhysicalSize units of the Image the ROI is attached to.
enumeration reference frame
The length unit is reference frame.
Used by
Element Plate
Source
<xsd:attribute name="WellOriginYUnit" use="optional" default="reference frame" type="OME:UnitsLength">
  <xsd:annotation>
    <xsd:documentation>The units of the well origin in Y - default:reference frame.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Plate / @Rows
Namespace No namespace
Annotations
The number of rows in the plate
Type PositiveInt
Properties
use optional
Facets
minInclusive 1
Used by
Element Plate
Source
<xsd:attribute name="Rows" use="optional" type="OME:PositiveInt">
  <xsd:annotation>
    <xsd:documentation>The number of rows in the plate</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Plate / @Columns
Namespace No namespace
Annotations
The number of columns in the plate
Type PositiveInt
Properties
use optional
Facets
minInclusive 1
Used by
Element Plate
Source
<xsd:attribute name="Columns" use="optional" type="OME:PositiveInt">
  <xsd:annotation>
    <xsd:documentation>The number of columns in the plate</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Plate / @FieldIndex
Namespace No namespace
Annotations
The index of the WellSample to display as the default Field
Type NonNegativeInt
Properties
use optional
Facets
minInclusive 0
Used by
Element Plate
Source
<xsd:attribute name="FieldIndex" use="optional" type="OME:NonNegativeInt">
  <xsd:annotation>
    <xsd:documentation>The index of the WellSample to display as the default Field</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Reagent / @ID
Namespace No namespace
Type ReagentID
Type hierarchy
Properties
use required
Facets
pattern ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:\S+:\S+)|(\S+:\S+)) & ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:Reagent:\S+)|(Reagent:\S+))
Used by
Element Reagent
Source
<xsd:attribute name="ID" use="required" type="ReagentID"/>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Reagent / @Name
Namespace No namespace
Annotations
A short name for the reagent
Type xsd:string
Properties
use optional
Used by
Element Reagent
Source
<xsd:attribute name="Name" use="optional" type="xsd:string">
  <xsd:annotation>
    <xsd:documentation>A short name for the reagent</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Reagent / @ReagentIdentifier
Namespace No namespace
Annotations
This is a reference to an external (to OME) representation of the Reagent.
It serves as a foreign key into an external database. - It is sometimes referred to as ExternalIdentifier.
Type xsd:string
Properties
use optional
Used by
Element Reagent
Source
<xsd:attribute name="ReagentIdentifier" use="optional" type="xsd:string">
  <xsd:annotation>
    <xsd:documentation>This is a reference to an external (to OME) representation of the Reagent. It serves as a foreign key into an external database. - It is sometimes referred to as ExternalIdentifier.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Screen / PlateRef / @ID
Namespace No namespace
Type PlateID
Type hierarchy
Properties
use required
Facets
pattern ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:\S+:\S+)|(\S+:\S+)) & ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:Plate:\S+)|(Plate:\S+))
Used by
Element Screen/PlateRef
Source
<xsd:attribute name="ID" use="required" type="PlateID"/>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Screen / @ID
Namespace No namespace
Type ScreenID
Type hierarchy
Properties
use required
Facets
pattern ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:\S+:\S+)|(\S+:\S+)) & ((urn:lsid:([\w\-\.]+\.[\w\-\.]+)+:Screen:\S+)|(Screen:\S+))
Used by
Element Screen
Source
<xsd:attribute name="ID" use="required" type="ScreenID"/>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Screen / @Name
Namespace No namespace
Type xsd:string
Properties
use optional
Used by
Element Screen
Source
<xsd:attribute name="Name" use="optional" type="xsd:string"/>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Screen / @ProtocolIdentifier
Namespace No namespace
Annotations
A pointer to an externally defined protocol, usually in a screening database.
Type xsd:string
Properties
use optional
Used by
Element Screen
Source
<xsd:attribute name="ProtocolIdentifier" use="optional" type="xsd:string">
  <xsd:annotation>
    <xsd:documentation>A pointer to an externally defined protocol, usually in a screening database.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Screen / @ProtocolDescription
Namespace No namespace
Annotations
A description of the screen protocol; may contain very detailed information to
reproduce some of that found in a screening database.
Type xsd:string
Properties
use optional
Used by
Element Screen
Source
<xsd:attribute name="ProtocolDescription" use="optional" type="xsd:string">
  <xsd:annotation>
    <xsd:documentation>A description of the screen protocol; may contain very detailed information to reproduce some of that found in a screening database.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Screen / @ReagentSetDescription
Namespace No namespace
Annotations
A description of the set of reagents; may contain very detailed information to
reproduce some of that information found in a screening database.
Type xsd:string
Properties
use optional
Used by
Element Screen
Source
<xsd:attribute name="ReagentSetDescription" use="optional" type="xsd:string">
  <xsd:annotation>
    <xsd:documentation>A description of the set of reagents; may contain very detailed information to reproduce some of that information found in a screening database.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Screen / @ReagentSetIdentifier
Namespace No namespace
Annotations
A pointer to an externally defined set of reagents, usually in a screening
database/automation database.
Type xsd:string
Properties
use optional
Used by
Element Screen
Source
<xsd:attribute name="ReagentSetIdentifier" use="optional" type="xsd:string">
  <xsd:annotation>
    <xsd:documentation>A pointer to an externally defined set of reagents, usually in a screening database/automation database.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd
Attribute Screen / @Type
Namespace No namespace
Annotations
A human readable identifier for the screen type; e.g. RNAi, cDNA, SiRNA, etc.
This string is likely to become an enumeration in future releases.
Type xsd:string
Properties
use optional
Used by
Element Screen
Source
<xsd:attribute name="Type" use="optional" type="xsd:string">
  <xsd:annotation>
    <xsd:documentation>A human readable identifier for the screen type; e.g. RNAi, cDNA, SiRNA, etc. This string is likely to become an enumeration in future releases.</xsd:documentation>
  </xsd:annotation>
</xsd:attribute>
Schema location http://www.openmicroscopy.org/Schemas/SPW/2015-01/SPW.xsd