<?xml version='1.0'?><?xml-stylesheet href='/static/xsl/oai.xsl' type='text/xsl'?><oai:OAI-PMH xmlns:oai="http://www.openarchives.org/OAI/2.0/" xmlns:ri="http://www.ivoa.net/xml/RegistryInterface/v1.0" xmlns:tr="http://www.ivoa.net/xml/TAPRegExt/v1.0" xmlns:vg="http://www.ivoa.net/xml/VORegistry/v1.0" xmlns:vr="http://www.ivoa.net/xml/VOResource/v1.0" xmlns:vs="http://www.ivoa.net/xml/VODataService/v1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/ http://vo.ari.uni-heidelberg.de/docs/schemata/OAI-PMH.xsd http://www.ivoa.net/xml/RegistryInterface/v1.0 http://vo.ari.uni-heidelberg.de/docs/schemata/RegistryInterface-v1.0.xsd http://www.ivoa.net/xml/TAPRegExt/v1.0 http://vo.ari.uni-heidelberg.de/docs/schemata/TAPRegExt-v1.0.xsd http://www.ivoa.net/xml/VORegistry/v1.0 http://vo.ari.uni-heidelberg.de/docs/schemata/VORegistry-v1.0.xsd http://www.ivoa.net/xml/VOResource/v1.0 http://vo.ari.uni-heidelberg.de/docs/schemata/VOResource-v1.1.xsd http://www.ivoa.net/xml/VODataService/v1.1 http://vo.ari.uni-heidelberg.de/docs/schemata/VODataService-v1.1.xsd"><oai:responseDate>2026-04-18T05:23:57.472144</oai:responseDate><oai:metadata><ri:Resource created="2009-12-01T10:00:00" status="active" updated="2017-04-19T08:09:49" xsi:type="vs:CatalogService"><title>AIASCR VO Services TAP service</title><shortName>AIASCR TAP</shortName><identifier>ivo://asu.cas.cz/tap</identifier><curation><publisher>Stellar Department of Astronomical Institute of the Academy of
Sciences of the Czech Republic</publisher><creator><name>Stellar Department, Czech Acad. of Sciences</name><logo>logo-long.png</logo></creator><date role="updated">2017-04-19T08:09:49</date><contact><name>Petr Skoda</name><address>Fricova 298, 251 65 Ondrejov, Czech Republic</address><email>skoda@sunstel.asu.cas.cz</email><telephone>+420 323620361</telephone></contact></curation><content><subject>Virtual observatory</subject><subject>Catalogs</subject><subject>ADQL</subject><description>The AIASCR VO Services's TAP end point. The Table Access
Protocol (TAP) lets you execute queries against our database tables,
inspect various metadata, and upload your own data. It is thus the
VO's premier way to access public data holdings.

Tables exposed through this endpoint include: data from the ccd700 schema, columns, groups, key_columns, keys, schemas, tables from the tap_schema schema, data from the lamost schema, data from the heros schema, data from the lamost_dr1 schema, emptyobscore, obscore from the ivoa schema.</description><referenceURL>http://voarchive.asu.cas.cz/__system__/tap/run/info</referenceURL></content><capability standardID="ivo://ivoa.net/std/TAP" xsi:type="tr:TableAccess"><interface role="std" xsi:type="vs:ParamHTTP"><accessURL use="base">http://voarchive.asu.cas.cz/tap</accessURL></interface><dataModel ivo-id="ivo://ivoa.net/std/ObsCore/v1.0">Obscore-1.0</dataModel><language><name>ADQL</name><version ivo-id="ivo://ivoa.net/std/ADQL#v2.0">2.0</version><description>ADQL 2.0</description><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-udf"><feature><form>gavo_match(pattern TEXT, string TEXT) -&gt; INTEGER</form><description>gavo_match returns 1 if the POSIX regular expression pattern
matches anything in string, 0 otherwise.</description></feature><feature><form>ivo_healpix_center(hpxOrder INTEGER, hpxIndex BIGINT) -&gt; POINT</form><description>returns a POINT corresponding to the center of the healpix with
the given index at the given order.</description></feature><feature><form>ivo_string_agg(expression TEXT, delimiter TEXT) -&gt; TEXT</form><description>An aggregate function returning all values of
expression within a GROUP contcatenated with delimiter</description></feature><feature><form>gavo_to_jd(d TIMESTAMP) -&gt; DOUBLE PRECISION</form><description>The function converts a postgres timestamp to julian date.
This is naive; no corrections for timezones, let alone time
scales or the like are done; you can thus not expect this to be
good to second-precision unless you are careful in the construction
of the timestamp.</description></feature><feature><form>gavo_to_mjd(d TIMESTAMP) -&gt; DOUBLE PRECISION</form><description>The function converts a postgres timestamp to modified julian date.
This is naive; no corrections for timezones, let alone time
scales or the like are done; you can thus not expect this to be
good to second-precision unless you are careful in the construction
of the timestamp.</description></feature><feature><form>ivo_healpix_index(order INTEGER, ra DOUBLE PRECISION, dec DOUBLE PRECISION) -&gt; BIGINT</form><description>Returns the index of the (nest) healpix with order containing the 
spherical point (ra, dec).

An alternative, 2-argument form 

ivo_healpix_index(order INTEGER, p POINT) -&gt; BIGINT

is also available.</description></feature><feature><form>ivo_hashlist_has(hashlist TEXT, item TEXT) -&gt; INTEGER</form><description>The function takes two strings; the first is a list of words not
containing the hash sign (#), concatenated by hash signs, the second is
a word not containing the hash sign.  It returns 1 if, compared
case-insensitively, the second argument is in the list of words coded in
the first argument.  The behaviour in case the the second
argument contains a hash sign is unspecified.</description></feature><feature><form>ivo_apply_pm(ra DOUBLE PRECISION, dec DOUBLE PRECISION, pmra DOUBLE PRECISION, pmde DOUBLE PRECISON, epdist DOUBLE PRECISION) -&gt; POINT</form><description>Returns a POINT (in the UNDEFINED reference frame) for the position
an object at ra/dec with proper motion pmra/pmde has after epdist years.

positions must be in degrees, PMs in should be in julian years (i.e., proper
motions are expected in degrees/year).  pmra is assumed to contain 
cos(delta).

NOTE: This currently is a crappy approximation that does *not* go
through the tangential plane.  If you use it, let the operators know
so we replace it with something real.</description></feature><feature><form>ivo_nocasematch(value TEXT, pattern TEXT) -&gt; INTEGER</form><description>ivo_nocasematch returns 1 if pattern matches value, 0 otherwise.
pattern is defined as for the SQL LIKE operator, but the
match is performed case-insensitively.  This function in effect
provides a surrogate for the ILIKE SQL operator that is missing from
ADQL.

On this site, this is actually implemented using python's and SQL's
LOWER, so for everything except ASCII, your milage will vary.</description></feature><feature><form>ivo_hasword(haystack TEXT, needle TEXT) -&gt; INTEGER</form><description>gavo_hasword returns 1 if needle shows up in haystack, 0 otherwise.  This
is for "google-like"-searches in text-like fields.  In word, you can
actually employ a fairly complex query language; see
http://www.postgresql.org/docs/8.3/static/textsearch.html
for details.</description></feature></languageFeatures><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adqlgeo"><feature><form>BOX</form></feature><feature><form>POINT</form></feature><feature><form>CIRCLE</form></feature><feature><form>POLYGON</form></feature><feature><form>REGION</form></feature><feature><form>CENTROID</form></feature><feature><form>COORD1</form></feature><feature><form>COORD2</form></feature><feature><form>DISTANCE</form></feature><feature><form>CONTAINS</form></feature><feature><form>INTERSECTS</form></feature><feature><form>AREA</form></feature></languageFeatures></language><outputFormat ivo-id="ivo://ivoa.net/std/TAPRegExt#output-votable-binary"><mime>text/xml</mime></outputFormat><outputFormat><mime>text/html</mime><alias>html</alias></outputFormat><outputFormat ivo-id="ivo://ivoa.net/std/TAPRegExt#output-votable-binary2"><mime>application/x-votable+xml;serialization=binary2</mime><alias>votable/b2</alias></outputFormat><outputFormat><mime>application/geo-json</mime><alias>geojson</alias></outputFormat><outputFormat><mime>application/fits</mime><alias>fits</alias></outputFormat><outputFormat><mime>text/csv</mime></outputFormat><outputFormat><mime>text/csv;header=present</mime><alias>csv</alias></outputFormat><outputFormat ivo-id="ivo://ivoa.net/std/TAPRegEXT#output-votable-td"><mime>application/x-votable+xml;serialization=tabledata</mime><alias>votable/td</alias></outputFormat><outputFormat><mime>application/json</mime><alias>json</alias></outputFormat><outputFormat ivo-id="ivo://ivoa.net/std/TAPRegExt#output-votable-binary"><mime>application/x-votable+xml</mime><alias>votable</alias></outputFormat><outputFormat><mime>text/plain</mime></outputFormat><outputFormat><mime>text/tab-separated-values</mime><alias>tsv</alias></outputFormat><uploadMethod ivo-id="ivo://ivoa.net/std/TAPRegExt#upload-https"/><uploadMethod ivo-id="ivo://ivoa.net/std/TAPRegExt#upload-ftp"/><uploadMethod ivo-id="ivo://ivoa.net/std/TAPRegExt#upload-inline"/><uploadMethod ivo-id="ivo://ivoa.net/std/TAPRegExt#upload-http"/><retentionPeriod><default>172800</default></retentionPeriod><executionDuration><default>3600</default></executionDuration><outputLimit><default unit="row">2000</default><hard unit="row">20000000</hard></outputLimit><uploadLimit><hard unit="byte">20000000</hard></uploadLimit></capability><capability standardID="ivo://ivoa.net/std/VOSI#availability"><interface xsi:type="vs:ParamHTTP"><accessURL use="full">http://voarchive.asu.cas.cz/__system__/tap/run/availability</accessURL></interface></capability><capability standardID="ivo://ivoa.net/std/VOSI#capabilities"><interface xsi:type="vs:ParamHTTP"><accessURL use="full">http://voarchive.asu.cas.cz/__system__/tap/run/capabilities</accessURL></interface></capability><capability standardID="ivo://ivoa.net/std/VOSI#tables"><interface xsi:type="vs:ParamHTTP"><accessURL use="full">http://voarchive.asu.cas.cz/__system__/tap/run/tableMetadata</accessURL></interface></capability><tableset><schema><name>ccd700</name><title>CCD700 Ondrejov Spectra</title><table><name>ccd700.data</name><column><name>accref</name><description>Access key for the data</description><ucd>meta.ref.url;meta.dataset</ucd><utype>ssa:Access.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>owner</name><description>Owner of the data</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>embargo</name><description>Date the data will become/became public</description><unit>a</unit><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>mime</name><description>MIME type of the file served</description><utype>ssa:Access.Format</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>accsize</name><description>Size of the data in bytes</description><unit>byte</unit><ucd>VOX:Image_FileSize</ucd><utype>ssa:Access.Size</utype><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>ssa_dstitle</name><description>Title or the dataset (usually, spectrum)</description><ucd>meta.title;meta.dataset</ucd><utype>ssa:DataID.Title</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_creatordid</name><description>Dataset identifier assigned by the creator</description><ucd>meta.id</ucd><utype>ssa:DataID.CreatorDID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_pubdid</name><description>Dataset identifier assigned by the publisher</description><utype>ssa:Curation.PublisherDID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_cdate</name><description>Processing/Creation date</description><ucd>time;meta.dataset</ucd><utype>ssa:DataID.Date</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_pdate</name><description>Date last published.</description><utype>ssa:Curation.Date</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_bandpass</name><description>Bandpass (i.e., rough spectral location) of this dataset; use something generic like 'Optical' here.</description><ucd>instr.bandpass</ucd><utype>ssa:DataID.Bandpass</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_cversion</name><description>Creator assigned version for this dataset (will be incremented when this particular item is changed).</description><ucd>meta.version;meta.dataset</ucd><utype>ssa:DataID.Version</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_targname</name><description>Common name of object observed.</description><ucd>meta.id;src</ucd><utype>ssa:Target.Name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column><column><name>ssa_targclass</name><description>Object class (star, QSO,...; use Simbad object classification http://simbad.u-strasbg.fr/simbad/sim-display?data=otypes if at all possible)</description><ucd>src.class</ucd><utype>ssa:Target.Class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_redshift</name><description>Redshift of target object</description><ucd>src.redshift</ucd><utype>ssa:Target.Redshift</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_targetpos</name><description>Equatorial (ICRS) position of the target object.</description><ucd>pos.eq;src</ucd><utype>ssa:Target.pos.spoint</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_snr</name><description>Signal-to-noise ratio estimated for this dataset</description><ucd>stat.snr</ucd><utype>ssa:Derived.SNR</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_location</name><description>ICRS location of aperture center</description><unit>deg</unit><ucd>pos.eq</ucd><utype>stc:AstroCoords.Position2D.Value2</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_aperture</name><description>Angular diameter of aperture</description><unit>deg</unit><ucd>instr.fov</ucd><utype>ssa:Char.SpatialAxis.Coverage.Bounds.Extent</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_dateobs</name><description>Midpoint of exposure</description><unit>d</unit><ucd>time.epoch</ucd><utype>ssa:Char.TimeAxis.Coverage.Location.Value</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>ssa_timeext</name><description>Exposure duration</description><unit>s</unit><ucd>time.duration</ucd><utype>ssa:Char.TimeAxis.Coverage.Bounds.Extent</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specmid</name><description>Midpoint of region covered in this dataset</description><unit>m</unit><ucd>em.wl;instr.bandpass</ucd><utype>ssa:Char.SpectralAxis.Coverage.Location.Value</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specext</name><description>Width of the spectrum</description><unit>m</unit><ucd>em.wl;instr.bandwidth</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Extent</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specstart</name><description>Lower value of spectral coordinate</description><unit>m</unit><ucd>em.wl;stat.min</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Start</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specend</name><description>Upper value of spectral coordinate</description><unit>m</unit><ucd>em.wl;stat.max</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Stop</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_length</name><description>Number of points in the spectrum</description><utype>ssa:Dataset.Length</utype><dataType arraysize="1" xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>raj2000</name><description>Observed RA of the object</description><ucd>pos.eq.ra;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>dej2000</name><description>Main value of declination</description><ucd>pos.eq.dec;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>obj_name</name><description>Unique identifier of 1 object.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>observer</name><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>mhjd</name><description>Heliocentric Julian Date</description><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>vhelio</name><description>Heliocentric correction applied on spectrum</description><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>grat_angle</name><description>Grating tilt</description><unit>deg</unit><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>spg_setup</name><description>Spectrograph setup (Dichroic mirror/Spectral filter)</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>detector</name><description>Detector used to capture spectrum</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>instrument</name><description>Instrument used to capture spectrum</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>telescope</name><description>Telescope used to capture spectrum</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>expval</name><description>Photon counts (Mcount)</description><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column></table></schema><schema><name>heros</name><title>Ondrejov H Spectra</title><table><name>heros.data</name><column><name>accref</name><description>Access key for the data</description><ucd>meta.ref.url;meta.dataset</ucd><utype>ssa:Access.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>owner</name><description>Owner of the data</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>embargo</name><description>Date the data will become/became public</description><unit>a</unit><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>mime</name><description>MIME type of the file served</description><utype>ssa:Access.Format</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>accsize</name><description>Size of the data in bytes</description><unit>byte</unit><ucd>VOX:Image_FileSize</ucd><utype>ssa:Access.Size</utype><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>ssa_dstitle</name><description>Title or the dataset (usually, spectrum)</description><ucd>meta.title;meta.dataset</ucd><utype>ssa:DataID.Title</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_creatordid</name><description>Dataset identifier assigned by the creator</description><ucd>meta.id</ucd><utype>ssa:DataID.CreatorDID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_pubdid</name><description>Dataset identifier assigned by the publisher</description><utype>ssa:Curation.PublisherDID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_cdate</name><description>Processing/Creation date</description><ucd>time;meta.dataset</ucd><utype>ssa:DataID.Date</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_pdate</name><description>Date last published.</description><utype>ssa:Curation.Date</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_bandpass</name><description>Bandpass (i.e., rough spectral location) of this dataset; use something generic like 'Optical' here.</description><ucd>instr.bandpass</ucd><utype>ssa:DataID.Bandpass</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_cversion</name><description>Creator assigned version for this dataset (will be incremented when this particular item is changed).</description><ucd>meta.version;meta.dataset</ucd><utype>ssa:DataID.Version</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_targname</name><description>Common name of object observed.</description><ucd>meta.id;src</ucd><utype>ssa:Target.Name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column><column><name>ssa_targclass</name><description>Object class (star, QSO,...; use Simbad object classification http://simbad.u-strasbg.fr/simbad/sim-display?data=otypes if at all possible)</description><ucd>src.class</ucd><utype>ssa:Target.Class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_redshift</name><description>Redshift of target object</description><ucd>src.redshift</ucd><utype>ssa:Target.Redshift</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_targetpos</name><description>Equatorial (ICRS) position of the target object.</description><ucd>pos.eq;src</ucd><utype>ssa:Target.pos.spoint</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_snr</name><description>Signal-to-noise ratio estimated for this dataset</description><ucd>stat.snr</ucd><utype>ssa:Derived.SNR</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_location</name><description>ICRS location of aperture center</description><unit>deg</unit><ucd>pos.eq</ucd><utype>stc:AstroCoords.Position2D.Value2</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_aperture</name><description>Angular diameter of aperture</description><unit>deg</unit><ucd>instr.fov</ucd><utype>ssa:Char.SpatialAxis.Coverage.Bounds.Extent</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_dateobs</name><description>Midpoint of exposure</description><unit>d</unit><ucd>time.epoch</ucd><utype>ssa:Char.TimeAxis.Coverage.Location.Value</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>ssa_timeext</name><description>Exposure duration</description><unit>s</unit><ucd>time.duration</ucd><utype>ssa:Char.TimeAxis.Coverage.Bounds.Extent</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specmid</name><description>Midpoint of region covered in this dataset</description><unit>m</unit><ucd>em.wl;instr.bandpass</ucd><utype>ssa:Char.SpectralAxis.Coverage.Location.Value</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specext</name><description>Width of the spectrum</description><unit>m</unit><ucd>em.wl;instr.bandwidth</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Extent</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specstart</name><description>Lower value of spectral coordinate</description><unit>m</unit><ucd>em.wl;stat.min</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Start</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specend</name><description>Upper value of spectral coordinate</description><unit>m</unit><ucd>em.wl;stat.max</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Stop</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_length</name><description>Number of points in the spectrum</description><utype>ssa:Dataset.Length</utype><dataType arraysize="1" xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>ssa_fluxcalib</name><description>Type of flux calibration</description><utype>Spectrum.Char.FluxAxis.Calibration</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table></schema><schema><name>ivoa</name><description>Definition and support code for the ObsCore data model and table.</description><table><name>ivoa.emptyobscore</name><description>An empty table having all columns of the obscore table. Useful
internally, and sometimes for tricky queries.</description><column><name>dataproduct_type</name><description>High level scientific classification of the data product, taken from an enumeration</description><ucd>meta.id</ucd><utype>obscore:obs.dataproducttype</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>dataproduct_subtype</name><description>Data product specific type</description><ucd>meta.id</ucd><utype>obscore:obs.dataproductsubtype</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>calib_level</name><description>Amount of data processing that has been applied to the data</description><ucd>meta.code;obs.calib</ucd><utype>obscore:obs.caliblevel</utype><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType></column><column><name>obs_collection</name><description>Name of a data collection (e.g., project name) this data belongs to</description><ucd>meta.id</ucd><utype>obscore:dataid.collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>obs_id</name><description>Unique identifier for an observation</description><ucd>meta.id</ucd><utype>obscore:DataID.observationID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>obs_title</name><description>Free-from title of the data set</description><ucd>meta.title;obs</ucd><utype>obscore:dataid.title</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>obs_publisher_did</name><description>Dataset identifier assigned by the publisher.</description><ucd>meta.ref.url;meta.curation</ucd><utype>obscore:curation.publisherdid</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>obs_creator_did</name><description>Dataset identifier assigned by the creator.</description><ucd>meta.id</ucd><utype>obscore:dataid.creatordid</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_url</name><description>The URL at which to obtain the data set.</description><ucd>meta.ref.url</ucd><utype>obscore:access.reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_format</name><description>MIME type of the resource at access_url</description><ucd>meta.code.mime</ucd><utype>obscore:access.format</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_estsize</name><description>Estimated size of data product</description><unit>kbyte</unit><ucd>phys.size;meta.file</ucd><utype>obscore:access.size</utype><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>target_name</name><description>Object a targeted observation targeted</description><ucd>meta.id;src</ucd><utype>obscore:target.name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>target_class</name><description>Class of the target object (star, QSO, ...)</description><ucd>src.class</ucd><utype>obscore:target.class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>s_ra</name><description>RA of (center of) observation, ICRS</description><unit>deg</unit><ucd>pos.eq.ra</ucd><utype>obscore:char.spatialaxis.coverage.location.coord.position2d.value2.c1</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>s_dec</name><description>Dec of (center of) observation, ICRS</description><unit>deg</unit><ucd>pos.eq.dec</ucd><utype>obscore:char.spatialaxis.coverage.location.coord.position2d.value2.c2</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>s_fov</name><description>Approximate spatial extent for the region covered by the observation</description><unit>deg</unit><ucd>phys.angSize;instr.fov</ucd><utype>obscore:char.spatialaxis.coverage.bounds.extent.diameter</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>s_region</name><description>Region covered by the observation, as a polygon</description><ucd>phys.angArea;obs</ucd><utype>obscore:char.spatialaxis.coverage.support.area</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>s_resolution</name><description>Best spatial resolution within the data set</description><unit>arcsec</unit><ucd>pos.angResolution</ucd><utype>obscore:Char.SpatialAxis.Resolution.refval</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>t_min</name><description>Lower bound of times represented in the data set, as MJD</description><unit>d</unit><ucd>time.start;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.interval.starttime</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>t_max</name><description>Upper bound of times represented in the data set, as MJD</description><unit>d</unit><ucd>time.end;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.interval.stoptime</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>t_exptime</name><description>Total exporure time</description><unit>s</unit><ucd>time.duration;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.support.extent</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>t_resolution</name><description>Minimal significant time interval along the time axis</description><unit>s</unit><ucd>time.resolution</ucd><utype>obscore:char.timeaxis.resolution.refval</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>em_min</name><description>Minimal wavelength represented within the data set</description><unit>m</unit><ucd>em.wl;stat.min</ucd><utype>obscore:char.spectralaxis.coverage.bounds.limits.interval.lolim</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>em_max</name><description>Maximal wavelength represented within the data set</description><unit>m</unit><ucd>em.wl;stat.max</ucd><utype>obscore:char.spectralaxis.coverage.bounds.limits.interval.hilim</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>em_res_power</name><description>Spectral resolving power delta lambda/lamda</description><ucd>spect.resolution</ucd><utype>obscore:char.spectralaxis.resolution.resolpower.refval</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>o_ucd</name><description>UCD for the product's observable</description><ucd>meta.ucd</ucd><utype>obscore:char.observableaxis.ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>pol_states</name><description>List of polarization states in the data set</description><ucd>meta.code;phys.polarization</ucd><utype>obscore:Char.PolarizationAxis.stateList</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>facility_name</name><description>Name of the facility at which data was taken</description><ucd>meta.id;instr.tel</ucd><utype>obscore:Provenance.ObsConfig.facility.name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>instrument_name</name><description>Name of the instrument that produced the data</description><ucd>meta.id;instr</ucd><utype>obscore:Provenance.ObsConfig.instrument.name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>s_xel1</name><description>Number of elements (typically pixels) along the first spatial axis.</description><ucd>meta.number</ucd><utype>obscore:Char.SpatialAxis.numBins1</utype><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>s_xel2</name><description>Number of elements (typically pixels) along the second spatial axis.</description><ucd>meta.number</ucd><utype>obscore:Char.SpatialAxis.numBins1</utype><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>t_xel</name><description>Number of elements (typically pixels) along the time axis.</description><ucd>meta.number</ucd><utype>obscore:Char.TimeAxis.numBins</utype><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>em_xel</name><description>Number of elements (typically pixels) along the spectral axis.</description><ucd>meta.number</ucd><utype>obscore:Char.SpectralAxis.numBins</utype><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>pol_xel</name><description>Number of elements (typically pixels) along the polarization axis.</description><ucd>meta.number</ucd><utype>obscore:Char.SpectralAxis.numBins</utype><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>s_pixel_scale</name><description>Sampling period in world coordinate units along the spatial axis</description><unit>arcsec</unit><ucd>phys.angSize;instr.pixel</ucd><utype>obscore:Char.SpatialAxis.Sampling.RefVal.SamplingPeriod</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>em_ucd</name><description>Nature of the product's spectral axis</description><ucd>meta.ucd</ucd><utype>obscore:Char.SpectralAxis.ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>ivoa.obscore</name><description>The IVOA-defined obscore table, containing generic metadata for
datasets within this datacenter.</description><column><name>dataproduct_type</name><description>High level scientific classification of the data product, taken from an enumeration</description><ucd>meta.id</ucd><utype>obscore:obs.dataproducttype</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>dataproduct_subtype</name><description>Data product specific type</description><ucd>meta.id</ucd><utype>obscore:obs.dataproductsubtype</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>calib_level</name><description>Amount of data processing that has been applied to the data</description><ucd>meta.code;obs.calib</ucd><utype>obscore:obs.caliblevel</utype><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType></column><column><name>obs_collection</name><description>Name of a data collection (e.g., project name) this data belongs to</description><ucd>meta.id</ucd><utype>obscore:dataid.collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>obs_id</name><description>Unique identifier for an observation</description><ucd>meta.id</ucd><utype>obscore:DataID.observationID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>obs_title</name><description>Free-from title of the data set</description><ucd>meta.title;obs</ucd><utype>obscore:dataid.title</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>obs_publisher_did</name><description>Dataset identifier assigned by the publisher.</description><ucd>meta.ref.url;meta.curation</ucd><utype>obscore:curation.publisherdid</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>obs_creator_did</name><description>Dataset identifier assigned by the creator.</description><ucd>meta.id</ucd><utype>obscore:dataid.creatordid</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_url</name><description>The URL at which to obtain the data set.</description><ucd>meta.ref.url</ucd><utype>obscore:access.reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_format</name><description>MIME type of the resource at access_url</description><ucd>meta.code.mime</ucd><utype>obscore:access.format</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_estsize</name><description>Estimated size of data product</description><unit>kbyte</unit><ucd>phys.size;meta.file</ucd><utype>obscore:access.size</utype><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>target_name</name><description>Object a targeted observation targeted</description><ucd>meta.id;src</ucd><utype>obscore:target.name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>target_class</name><description>Class of the target object (star, QSO, ...)</description><ucd>src.class</ucd><utype>obscore:target.class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>s_ra</name><description>RA of (center of) observation, ICRS</description><unit>deg</unit><ucd>pos.eq.ra</ucd><utype>obscore:char.spatialaxis.coverage.location.coord.position2d.value2.c1</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>s_dec</name><description>Dec of (center of) observation, ICRS</description><unit>deg</unit><ucd>pos.eq.dec</ucd><utype>obscore:char.spatialaxis.coverage.location.coord.position2d.value2.c2</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>s_fov</name><description>Approximate spatial extent for the region covered by the observation</description><unit>deg</unit><ucd>phys.angSize;instr.fov</ucd><utype>obscore:char.spatialaxis.coverage.bounds.extent.diameter</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>s_region</name><description>Region covered by the observation, as a polygon</description><ucd>phys.angArea;obs</ucd><utype>obscore:char.spatialaxis.coverage.support.area</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>s_resolution</name><description>Best spatial resolution within the data set</description><unit>arcsec</unit><ucd>pos.angResolution</ucd><utype>obscore:Char.SpatialAxis.Resolution.refval</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>t_min</name><description>Lower bound of times represented in the data set, as MJD</description><unit>d</unit><ucd>time.start;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.interval.starttime</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>t_max</name><description>Upper bound of times represented in the data set, as MJD</description><unit>d</unit><ucd>time.end;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.interval.stoptime</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>t_exptime</name><description>Total exporure time</description><unit>s</unit><ucd>time.duration;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.support.extent</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>t_resolution</name><description>Minimal significant time interval along the time axis</description><unit>s</unit><ucd>time.resolution</ucd><utype>obscore:char.timeaxis.resolution.refval</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>em_min</name><description>Minimal wavelength represented within the data set</description><unit>m</unit><ucd>em.wl;stat.min</ucd><utype>obscore:char.spectralaxis.coverage.bounds.limits.interval.lolim</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>em_max</name><description>Maximal wavelength represented within the data set</description><unit>m</unit><ucd>em.wl;stat.max</ucd><utype>obscore:char.spectralaxis.coverage.bounds.limits.interval.hilim</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>em_res_power</name><description>Spectral resolving power delta lambda/lamda</description><ucd>spect.resolution</ucd><utype>obscore:char.spectralaxis.resolution.resolpower.refval</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>o_ucd</name><description>UCD for the product's observable</description><ucd>meta.ucd</ucd><utype>obscore:char.observableaxis.ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>pol_states</name><description>List of polarization states in the data set</description><ucd>meta.code;phys.polarization</ucd><utype>obscore:Char.PolarizationAxis.stateList</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>facility_name</name><description>Name of the facility at which data was taken</description><ucd>meta.id;instr.tel</ucd><utype>obscore:Provenance.ObsConfig.facility.name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>instrument_name</name><description>Name of the instrument that produced the data</description><ucd>meta.id;instr</ucd><utype>obscore:Provenance.ObsConfig.instrument.name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>s_xel1</name><description>Number of elements (typically pixels) along the first spatial axis.</description><ucd>meta.number</ucd><utype>obscore:Char.SpatialAxis.numBins1</utype><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>s_xel2</name><description>Number of elements (typically pixels) along the second spatial axis.</description><ucd>meta.number</ucd><utype>obscore:Char.SpatialAxis.numBins1</utype><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>t_xel</name><description>Number of elements (typically pixels) along the time axis.</description><ucd>meta.number</ucd><utype>obscore:Char.TimeAxis.numBins</utype><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>em_xel</name><description>Number of elements (typically pixels) along the spectral axis.</description><ucd>meta.number</ucd><utype>obscore:Char.SpectralAxis.numBins</utype><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>pol_xel</name><description>Number of elements (typically pixels) along the polarization axis.</description><ucd>meta.number</ucd><utype>obscore:Char.SpectralAxis.numBins</utype><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>s_pixel_scale</name><description>Sampling period in world coordinate units along the spatial axis</description><unit>arcsec</unit><ucd>phys.angSize;instr.pixel</ucd><utype>obscore:Char.SpatialAxis.Sampling.RefVal.SamplingPeriod</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>em_ucd</name><description>Nature of the product's spectral axis</description><ucd>meta.ucd</ucd><utype>obscore:Char.SpectralAxis.ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table></schema><schema><name>lamost</name><title>LAMOST PILOT survey spectra</title><table><name>lamost.data</name><column><name>accref</name><description>Access key for the data</description><ucd>meta.ref.url;meta.dataset</ucd><utype>ssa:Access.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>owner</name><description>Owner of the data</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>embargo</name><description>Date the data will become/became public</description><unit>a</unit><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>mime</name><description>MIME type of the file served</description><utype>ssa:Access.Format</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>accsize</name><description>Size of the data in bytes</description><unit>byte</unit><ucd>VOX:Image_FileSize</ucd><utype>ssa:Access.Size</utype><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>ssa_dstitle</name><description>Title or the dataset (usually, spectrum)</description><ucd>meta.title;meta.dataset</ucd><utype>ssa:DataID.Title</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_creatordid</name><description>Dataset identifier assigned by the creator</description><ucd>meta.id</ucd><utype>ssa:DataID.CreatorDID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_pubdid</name><description>Dataset identifier assigned by the publisher</description><utype>ssa:Curation.PublisherDID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_cdate</name><description>Processing/Creation date</description><ucd>time;meta.dataset</ucd><utype>ssa:DataID.Date</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_pdate</name><description>Date last published.</description><utype>ssa:Curation.Date</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_bandpass</name><description>Bandpass (i.e., rough spectral location) of this dataset; use something generic like 'Optical' here.</description><ucd>instr.bandpass</ucd><utype>ssa:DataID.Bandpass</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_cversion</name><description>Creator assigned version for this dataset (will be incremented when this particular item is changed).</description><ucd>meta.version;meta.dataset</ucd><utype>ssa:DataID.Version</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_targname</name><description>Common name of object observed.</description><ucd>meta.id;src</ucd><utype>ssa:Target.Name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column><column><name>ssa_targclass</name><description>Object class (star, QSO,...; use Simbad object classification http://simbad.u-strasbg.fr/simbad/sim-display?data=otypes if at all possible)</description><ucd>src.class</ucd><utype>ssa:Target.Class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_redshift</name><description>Redshift of target object</description><ucd>src.redshift</ucd><utype>ssa:Target.Redshift</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_targetpos</name><description>Equatorial (ICRS) position of the target object.</description><ucd>pos.eq;src</ucd><utype>ssa:Target.pos.spoint</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_snr</name><description>Signal-to-noise ratio estimated for this dataset</description><ucd>stat.snr</ucd><utype>ssa:Derived.SNR</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_location</name><description>ICRS location of aperture center</description><unit>deg</unit><ucd>pos.eq</ucd><utype>stc:AstroCoords.Position2D.Value2</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_aperture</name><description>Angular diameter of aperture</description><unit>deg</unit><ucd>instr.fov</ucd><utype>ssa:Char.SpatialAxis.Coverage.Bounds.Extent</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_dateobs</name><description>Midpoint of exposure</description><unit>d</unit><ucd>time.epoch</ucd><utype>ssa:Char.TimeAxis.Coverage.Location.Value</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>ssa_timeext</name><description>Exposure duration</description><unit>s</unit><ucd>time.duration</ucd><utype>ssa:Char.TimeAxis.Coverage.Bounds.Extent</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specmid</name><description>Midpoint of region covered in this dataset</description><unit>m</unit><ucd>em.wl;instr.bandpass</ucd><utype>ssa:Char.SpectralAxis.Coverage.Location.Value</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specext</name><description>Width of the spectrum</description><unit>m</unit><ucd>em.wl;instr.bandwidth</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Extent</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specstart</name><description>Lower value of spectral coordinate</description><unit>m</unit><ucd>em.wl;stat.min</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Start</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specend</name><description>Upper value of spectral coordinate</description><unit>m</unit><ucd>em.wl;stat.max</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Stop</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_length</name><description>Number of points in the spectrum</description><utype>ssa:Dataset.Length</utype><dataType arraysize="1" xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>raj2000</name><description>Observed RA of the object</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>dej2000</name><description>Main value of declination</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>ssa_targsubclass</name><description>Object subclass</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table></schema><schema><name>lamost_dr1</name><title>LAMOST DR1 survey spectra</title><table><name>lamost_dr1.data</name><column><name>accref</name><description>Access key for the data</description><ucd>meta.ref.url;meta.dataset</ucd><utype>ssa:Access.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>owner</name><description>Owner of the data</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>embargo</name><description>Date the data will become/became public</description><unit>a</unit><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>mime</name><description>MIME type of the file served</description><utype>ssa:Access.Format</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>accsize</name><description>Size of the data in bytes</description><unit>byte</unit><ucd>VOX:Image_FileSize</ucd><utype>ssa:Access.Size</utype><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>ssa_dstitle</name><description>Title or the dataset (usually, spectrum)</description><ucd>meta.title;meta.dataset</ucd><utype>ssa:DataID.Title</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_creatordid</name><description>Dataset identifier assigned by the creator</description><ucd>meta.id</ucd><utype>ssa:DataID.CreatorDID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_pubdid</name><description>Dataset identifier assigned by the publisher</description><utype>ssa:Curation.PublisherDID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_cdate</name><description>Processing/Creation date</description><ucd>time;meta.dataset</ucd><utype>ssa:DataID.Date</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_pdate</name><description>Date last published.</description><utype>ssa:Curation.Date</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_bandpass</name><description>Bandpass (i.e., rough spectral location) of this dataset; use something generic like 'Optical' here.</description><ucd>instr.bandpass</ucd><utype>ssa:DataID.Bandpass</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_cversion</name><description>Creator assigned version for this dataset (will be incremented when this particular item is changed).</description><ucd>meta.version;meta.dataset</ucd><utype>ssa:DataID.Version</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_targname</name><description>Common name of object observed.</description><ucd>meta.id;src</ucd><utype>ssa:Target.Name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column><column><name>ssa_targclass</name><description>Object class (star, QSO,...; use Simbad object classification http://simbad.u-strasbg.fr/simbad/sim-display?data=otypes if at all possible)</description><ucd>src.class</ucd><utype>ssa:Target.Class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_redshift</name><description>Redshift of target object</description><ucd>src.redshift</ucd><utype>ssa:Target.Redshift</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_targetpos</name><description>Equatorial (ICRS) position of the target object.</description><ucd>pos.eq;src</ucd><utype>ssa:Target.pos.spoint</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_snr</name><description>Signal-to-noise ratio estimated for this dataset</description><ucd>stat.snr</ucd><utype>ssa:Derived.SNR</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_location</name><description>ICRS location of aperture center</description><unit>deg</unit><ucd>pos.eq</ucd><utype>stc:AstroCoords.Position2D.Value2</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_aperture</name><description>Angular diameter of aperture</description><unit>deg</unit><ucd>instr.fov</ucd><utype>ssa:Char.SpatialAxis.Coverage.Bounds.Extent</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_dateobs</name><description>Midpoint of exposure</description><unit>d</unit><ucd>time.epoch</ucd><utype>ssa:Char.TimeAxis.Coverage.Location.Value</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>ssa_timeext</name><description>Exposure duration</description><unit>s</unit><ucd>time.duration</ucd><utype>ssa:Char.TimeAxis.Coverage.Bounds.Extent</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specmid</name><description>Midpoint of region covered in this dataset</description><unit>m</unit><ucd>em.wl;instr.bandpass</ucd><utype>ssa:Char.SpectralAxis.Coverage.Location.Value</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specext</name><description>Width of the spectrum</description><unit>m</unit><ucd>em.wl;instr.bandwidth</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Extent</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specstart</name><description>Lower value of spectral coordinate</description><unit>m</unit><ucd>em.wl;stat.min</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Start</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specend</name><description>Upper value of spectral coordinate</description><unit>m</unit><ucd>em.wl;stat.max</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Stop</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_length</name><description>Number of points in the spectrum</description><utype>ssa:Dataset.Length</utype><dataType arraysize="1" xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>raj2000</name><description>Observed RA of the object</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>dej2000</name><description>Main value of declination</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>ssa_targsubclass</name><description>Object subclass</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table></schema><schema><name>tap_schema</name><description> AIASCR VO Services's Table Access Protocol (TAP) service with
table metadata.</description><table><name>tap_schema.schemas</name><description>Schemas containing tables available for ADQL querying.</description><column><name>schema_name</name><description>Fully qualified schema name</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>description</name><description>Brief description of the schema</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>utype</name><description>utype if schema corresponds to a data model</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>tap_schema.tables</name><description>Tables available for ADQL querying.</description><column><name>schema_name</name><description>Fully qualified schema name</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>table_name</name><description>Fully qualified table name</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>table_type</name><description>One of: table, view</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>description</name><description>Brief description of the table</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>utype</name><description>utype if the table corresponds to a data model</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>sourcerd</name><description>Id of the originating rd (local information)</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>tap_schema.columns</name><description>Columns in tables available for ADQL querying.</description><column><name>table_name</name><description>Fully qualified table name</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>column_name</name><description>Column name</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>description</name><description>Brief description of column</description><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>nullable</flag></column><column><name>unit</name><description>Unit in VO standard format</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ucd</name><description>UCD of column if any</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>utype</name><description>Utype of column if any</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>datatype</name><description>ADQL datatype</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>"size"</name><description>Length of variable length datatypes</description><dataType arraysize="1" xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>principal</name><description>Is column principal?</description><dataType arraysize="1" xsi:type="vs:VOTableType">int</dataType></column><column><name>indexed</name><description>Is there an index on this column?</description><dataType arraysize="1" xsi:type="vs:VOTableType">int</dataType></column><column><name>std</name><description>Is this a standard column?</description><dataType arraysize="1" xsi:type="vs:VOTableType">int</dataType></column><column><name>sourcerd</name><description>Id of the originating rd (local information)</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>column_index</name><description>1-based index of the column in database order.</description><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><foreignKey><targetTable>tap_schema.tables</targetTable><fkColumn><fromColumn>table_name</fromColumn><targetColumn>table_name</targetColumn></fkColumn></foreignKey></table><table><name>tap_schema.keys</name><description>Foreign key relationships between tables available for ADQL querying.</description><column><name>key_id</name><description>Unique key identifier</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>from_table</name><description>Fully qualified table name</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>target_table</name><description>Fully qualified table name</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>description</name><description>Description of this key</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>utype</name><description>Utype of this key</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>sourcerd</name><description>Id of the originating rd (local information)</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>tap_schema.key_columns</name><description>Columns participating in foreign key relationships between tables
available for ADQL querying.</description><column><name>key_id</name><description>Key identifier from TAP_SCHEMA.keys</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>from_column</name><description>Key column name in the from table</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>target_column</name><description>Key column in the target table</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>sourcerd</name><description>Id of the originating rd (local information)</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>tap_schema.groups</name><description>Columns that are part of groups within tables available for ADQL
querying.</description><column><name>table_name</name><description>Fully qualified table name</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>column_name</name><description>Name of a column belonging to the group</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>column_utype</name><description>utype the column withing the group</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>group_name</name><description>Name of the group</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>group_utype</name><description>utype of the group</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>sourcerd</name><description>Id of the originating rd (local information)</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><foreignKey><targetTable>tap_schema.tables</targetTable><fkColumn><fromColumn>table_name</fromColumn><targetColumn>table_name</targetColumn></fkColumn></foreignKey></table></schema></tableset></ri:Resource></oai:metadata></oai:OAI-PMH>