<?xml version='1.0'?><?xml-stylesheet href='/static/xsl/oai.xsl' type='text/xsl'?><ri:Resource created="2009-12-01T10:00:00Z" status="active" updated="2024-07-17T11:34:42Z" version="1.2" xmlns:g-colstat="http://dc.g-vo.org/ColStats-1" 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://dc.g-vo.org/ColStats-1 http://vo.ari.uni-heidelberg.de/docs/schemata/Colstats.xsd http://www.ivoa.net/xml/RegistryInterface/v1.0 http://vo.ari.uni-heidelberg.de/docs/schemata/RegistryInterface.xsd http://www.ivoa.net/xml/TAPRegExt/v1.0 http://vo.ari.uni-heidelberg.de/docs/schemata/TAPRegExt.xsd http://www.ivoa.net/xml/VORegistry/v1.0 http://vo.ari.uni-heidelberg.de/docs/schemata/VORegistry.xsd http://www.ivoa.net/xml/VOResource/v1.0 http://vo.ari.uni-heidelberg.de/docs/schemata/VOResource.xsd http://www.ivoa.net/xml/VODataService/v1.1 http://vo.ari.uni-heidelberg.de/docs/schemata/VODataService.xsd" xsi:type="vs:CatalogService"><title>AIP DaCHS TAP service</title><shortName>AIP GAVO TAP</shortName><identifier>ivo://aip.gavo.org/tap</identifier><curation><publisher>GAVO at Leibniz-Institute for Astrophysics Potsdam</publisher><creator><name>The GAVO data center team</name><logo>http://vo.ari.uni-heidelberg.de/docs/GavoTiny.png</logo></creator><contact><name>Harry Enke</name><address>Leibnitz-Institut fr Astrophysik</address><email>henke@aip.de</email><telephone>++49 6221 541837</telephone></contact></curation><content><subject>virtual-observatories</subject><subject>catalogs</subject><description>The AIP DaCHS'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: dens256, fof, redshifts from the bolshoi schema, columns, services, tables from the glots schema, fof, fofmtree, fofparticles, particles85, redshifts, treesnapnums from the mdr1 schema, rave_dr4 from the ravedr4 schema, alt_identifier, authorities, capability, g_num_stat, interface, intf_param, registries, relationship, res_date, res_detail, res_role, res_schema, res_subject, res_table, resource, stc_spatial, stc_spectral, stc_temporal, subject_uat, table_column, tap_table, validation from the rr schema, columns, groups, key_columns, keys, schemas, tables from the tap_schema schema.</description><referenceURL>http://gavo.aip.de/__system__/tap/run/info</referenceURL><relationship><relationshipType>IsServiceFor</relationshipType><relatedResource ivo-id="ivo://aip.gavo.org/rr/q/create">GAVO RegTAP Service (Potsdam mirror)</relatedResource><relatedResource ivo-id="ivo://aip.gavo.org/glots/q/createTables">GloTS, the Global TAP Schema</relatedResource><relatedResource ivo-id="ivo://aip.gavo.org/__system__/obscore/ObsCore">AIP DaCHS Obscore Table</relatedResource></relationship></content><capability standardID="ivo://ivoa.net/std/TAP" xsi:type="tr:TableAccess"><interface role="std" version="1.1" xsi:type="vs:ParamHTTP"><accessURL use="full">http://gavo.aip.de/tap</accessURL></interface><dataModel ivo-id="ivo://ivoa.net/std/regtap#1.2">Registry 1.2</dataModel><dataModel ivo-id="ivo://org.gavo.dc/std/glots#tables-1.0">GloTS 1.0</dataModel><language><name>ADQL</name><version ivo-id="ivo://ivoa.net/std/ADQL#v2.0">2.0</version><version ivo-id="ivo://ivoa.net/std/ADQL#v2.1">2.1</version><description>The Astronomical Data Query Language is the standard IVOA dialect of SQL; it contains a very general SELECT statement as well as some extensions for spherical geometry and higher mathematics.</description><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-udf"><feature><form>gavo_getauthority(ivoid TEXT) -&gt; TEXT</form><description>returns the authority part of an ivoid (or, more generally a URI).
So, ivo://org.gavo.dc/foo/bar#baz becomes org.gavo.dc.

The behaviour for anything that's not a full URI is undefined.</description></feature><feature><form>gavo_ipix(long REAL, lat REAL) -&gt; BIGINT</form><description>gavo_ipix returns the q3c ipix for a long/lat pair (it simply wraps
the 13c_ang2ipix function).

This is probably only relevant when you play tricks with indices or
PPMXL ids.</description></feature><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>gavo_mocintersect(moc1 MOC, moc2 MOC) -&gt; MOC</form><description>returns the intersection of two MOCs.</description></feature><feature><form>gavo_mocunion(moc1 MOC, moc2 MOC) -&gt; MOC</form><description>returns the union of two MOCs.</description></feature><feature><form>gavo_specconv(expr DOUBLE PRECISION, dest_unit TEXT) -&gt; DOUBLE PRECISION</form><description>returns the spectral value expr converted to dest_unit.

expr has to be in either energy, wavelength, or frequency, and dest_unit
must be a VOUnit giving another spectral unit (e.g., MHz, keV, nm, or
Angstrom). This is intended to let users express spectral constraints
in their preferred unit independently of the choice of unit in the
database.  Examples::

	gavo_specconv(obscore.em_min, "keV") &gt; 300
	gavo_specconv(obscore.em_max, "MHz") &gt; 30
	gavo_specconv(spectral_start, "Angstrom") &gt; 4000

There is a variant of gavo_specconv accepting expr's unit in a third
argument.</description></feature><feature><form>gavo_specconv(expr NUMERIC, expr_unit TEXT, dest_unit TEXT) -&gt; NUMERIC</form><description>returns expr assumed to be in expr_unit expressed in dest_unit.

		This is a variant of the two-argument gavo_specconv for when
		the unit of expr is not known to the ADQL translator, either because
		it because it is a literal or because it does not look like
		a spectral unit.  Examples::

			gavo_specconv(656, 'nm', 'J') BETWEEN spectral_start AND spectral_end
			gavo_specconv(arccos(phi)*incidence, 'Hz', 'eV')
		
		Clearly, overriding known units is likely to yield bad results;
		the translator therefore warns if an existing unit is overridden
		with a different unit.</description></feature><feature><form>gavo_vocmatch(vocname TEXT, term TEXT, matchagainst TEXT) -&gt; INTEGER</form><description>returns 1 if matchagainst is term or narrower in the IVOA vocabulary
vocname, 0 otherwise.

This is intended for semantic querying.  For instance,
gavo_vocmatch('datalink/core', 'calibration', semantics) would be 1
if semantics is any of calibration, bias, dark, or flat.

For RDF-flavoured vocabularies (strict trees), term will expand to the
entire branch rooted in term.  For SKOS-flavoured vocabularies (where
narrower is not transitive), only directly narrower terms will be included.

Both the term and the vocabulary name must be string literals (i.e.,
constants).  matchagainst can be any string-valued expression.</description></feature><feature><form>ivo_geom_transform(from_sys TEXT, to_sys TEXT, geo GEOMETRY) -&gt; GEOMETRY</form><description>The function transforms ADQL geometries between various reference systems.
geo can be a POINT, a CIRCLE, or a POLYGON, and the function will return a
geometry of the same type.  In the current implementation, from_sys and
to_sys must be literal strings (i.e., they cannot be computed through
expressions or be taken from database columns).

All transforms are just simple rotations, which is only a rough
approximation to the actual relationships between reference systems
(in particular between FK4 and ICRS-based ones).  Note that, in particular,
the epoch is not changed (i.e., no proper motions are applied).

We currently support the following reference frames: ICRS, FK5 (which
is treated as ICRS), FK4 (for B1950. without epoch-dependent corrections),
GALACTIC.  Reference frame names are case-sensitive.</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_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
https://www.postgresql.org/docs/current/textsearch.html
for details.</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_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_histogram(val REAL, lower REAL, upper REAL, nbins INTEGER) -&gt; INTEGER[]</form><description>The aggregate function returns a histogram of val with nbins+2 elements.
Assuming 0-based arrays, result[0] contains the number of underflows (i.e.,
val&lt;lower), result[nbins+1] the number of overflows.  Elements 1..nbins
are the counts in nbins bins of width (upper-lower)/nbins.  Clients
will have to convert back to physical units using some external
communication, there currently is no (meta-) data as lower and upper in
the TAP response.</description></feature><feature><form>ivo_interval_has(val NUMERIC, iv INTERVAL) -&gt; INTEGER</form><description>The function returns 1 if the interval iv contains val, 0 otherwise.
The lower limit is always included in iv, behaviour on the upper
limit is column-specific.</description></feature><feature><form>ivo_interval_overlaps(l1 NUMERIC, h1 NUMERIC, l2 NUMERIC, h2 NUMERIC) -&gt; INTEGER</form><description>The function returns 1 if the interval [l1...h1] overlaps with
the interval [l2...h2].  For the purposes of this function,
the case l1=h2 or l2=h1 is treated as overlap.  The function
returns 0 for non-overlapping intervals.</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 mileage will vary.</description></feature><feature><form>ivo_normal_random(mu REAL, sigma REAL) -&gt; REAL</form><description>The function returns a random number drawn from a normal distribution
with mean mu and width sigma.

Implementation note: Right now, the Gaussian is approximated by
summing up and scaling ten calls to random.  This, hence, is not
very precise or fast.  It might work for some use cases, and we
will provide a better implementation if this proves inadequate.</description></feature><feature><form>ivo_simbadpoint(identifier TEXT) -&gt; POINT</form><description>gavo_simbadpoint queries simbad for an identifier and returns the
corresponding point.  Note that identifier can only be a literal,
i.e., as simple string rather than a column name. This is because
our database cannot query simbad, and we probably wouldn't want
to fire off millions of simbad queries anyway; use simbad's own
TAP service for this kind of application.</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>ivo_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>ivo_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></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><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adql-conditional"><feature><form>COALESCE</form></feature></languageFeatures><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adql-string"><feature><form>LOWER</form></feature><feature><form>ILIKE</form></feature><feature><form>UPPER</form></feature></languageFeatures><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adql-offset"><feature><form>OFFSET</form></feature></languageFeatures><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adql-type"><feature><form>CAST</form></feature></languageFeatures><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adql-unit"><feature><form>IN_UNIT</form></feature></languageFeatures><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adql-common-table"><feature><form>WITH</form></feature></languageFeatures><languageFeatures type="ivo://org.gavo.dc/std/exts#extra-adql-keywords"><feature><form>TABLESAMPLE</form><description>Written after a table reference, TABLESAMPLE(10) will make the database only use 10% of the rows; these are `somewhat random' in that the system will use random blocks.  This should be good enough when just testing queries (and much better than using TOP n).</description></feature><feature><form>MOC</form><description>A geometry function creating MOCs.  It either takes a string argument with an ASCII MOC ('4/13 17-18 8/3002'), or an order and another geometry.</description></feature><feature><form>VECTORMATH</form><description>You can compute with vectors here. See https://wiki.ivoa.net/twiki/bin/view/IVOA/ADQLVectorMath for an overview of the functions and operators available.</description></feature><feature><form>CASE</form><description>The SQL92 CASE expression</description></feature></languageFeatures><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adql-sets"><feature><form>UNION</form></feature><feature><form>EXCEPT</form></feature><feature><form>INTERSECT</form></feature></languageFeatures></language><outputFormat><mime>text/tab-separated-values</mime><alias>tsv</alias></outputFormat><outputFormat><mime>text/plain</mime><alias>txt</alias></outputFormat><outputFormat><mime>text/csv</mime><alias>csv_bare</alias></outputFormat><outputFormat><mime>text/csv;header=present</mime><alias>csv</alias></outputFormat><outputFormat><mime>application/json</mime><alias>json</alias></outputFormat><outputFormat><mime>application/geo+json</mime><alias>geojson</alias></outputFormat><outputFormat ivo-id="ivo://ivoa.net/std/TAPRegExt#output-votable-binary"><mime>application/x-votable+xml</mime><alias>votable</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><alias>votableb2</alias></outputFormat><outputFormat ivo-id="ivo://ivoa.net/std/TAPRegExt#output-votable-td"><mime>application/x-votable+xml;serialization=TABLEDATA</mime><alias>text/xml</alias><alias>votable/td</alias><alias>votabletd</alias></outputFormat><outputFormat><mime>application/x-votable+xml;serialization=TABLEDATA;version=1.1</mime><alias>text/xml</alias><alias>votabletd1.1</alias></outputFormat><outputFormat><mime>application/x-votable+xml;version=1.1</mime><alias>text/xml</alias><alias>votable1.1</alias></outputFormat><outputFormat><mime>application/x-votable+xml;serialization=TABLEDATA;version=1.2</mime><alias>text/xml</alias><alias>votabletd1.2</alias></outputFormat><outputFormat><mime>application/x-votable+xml;serialization=TABLEDATA;version=1.6</mime><alias>vodml</alias></outputFormat><outputFormat><mime>application/x-votable+xml;version=1.6</mime><alias>vodmlb</alias></outputFormat><outputFormat><mime>text/html</mime><alias>html</alias></outputFormat><outputFormat><mime>application/fits</mime><alias>fits</alias></outputFormat><uploadMethod ivo-id="ivo://ivoa.net/std/TAPRegExt#upload-inline"/><uploadMethod ivo-id="ivo://ivoa.net/std/TAPRegExt#upload-http"/><uploadMethod ivo-id="ivo://ivoa.net/std/TAPRegExt#upload-https"/><uploadMethod ivo-id="ivo://ivoa.net/std/TAPRegExt#upload-ftp"/><retentionPeriod><default>172800</default></retentionPeriod><executionDuration><default>3600</default></executionDuration><outputLimit><default unit="row">20000</default><hard unit="row">20000000</hard></outputLimit><uploadLimit><hard unit="byte">20000000</hard></uploadLimit></capability><capability standardID="ivo://ivoa.net/std/VOSI#availability"><interface role="std" xsi:type="vs:ParamHTTP"><accessURL use="full">http://gavo.aip.de/__system__/tap/run/availability</accessURL></interface></capability><capability standardID="ivo://ivoa.net/std/VOSI#capabilities"><interface role="std" xsi:type="vs:ParamHTTP"><accessURL use="full">http://gavo.aip.de/__system__/tap/run/capabilities</accessURL></interface></capability><capability standardID="ivo://ivoa.net/std/VOSI#tables"><interface role="std" version="1.1" xsi:type="vs:ParamHTTP"><accessURL use="full">http://gavo.aip.de/__system__/tap/run/tableMetadata</accessURL></interface></capability><capability standardID="ivo://ivoa.net/std/DALI#examples"><interface xsi:type="vr:WebBrowser"><accessURL use="full">http://gavo.aip.de/__system__/tap/run/examples</accessURL></interface></capability><tableset><schema><name>tap_schema</name><description> AIP DaCHS's Table Access Protocol (TAP) service with
table metadata.</description><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">unicodeChar</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>table_index</name><description>Suggested position this table should take in a sorted list of tables from this data center</description><dataType xsi:type="vs:VOTableType">int</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><column><name>nrows</name><description>The approximate size of the table in rows</description><dataType xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><foreignKey><targetTable>tap_schema.schemas</targetTable><fkColumn><fromColumn>schema_name</fromColumn><targetColumn>schema_name</targetColumn></fkColumn></foreignKey></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>arraysize</name><description>Arraysize in VOTable notation</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>xtype</name><description>VOTable extended type information (for special interpretation of data content, e.g., timestamps or points)</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>"size"</name><description>Legacy length (ignore if you can).</description><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>principal</name><description>Is column principal?</description><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>indexed</name><description>Is there an index on this column?</description><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>std</name><description>Is this a standard column?</description><dataType 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 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.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">unicodeChar</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><column><name>schema_index</name><description>Suggested position this schema should take in a sorted list of schemas from this data center.</description><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column></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">unicodeChar</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><foreignKey><targetTable>tap_schema.tables</targetTable><fkColumn><fromColumn>from_table</fromColumn><targetColumn>table_name</targetColumn></fkColumn></foreignKey><foreignKey><targetTable>tap_schema.tables</targetTable><fkColumn><fromColumn>target_table</fromColumn><targetColumn>table_name</targetColumn></fkColumn></foreignKey></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><foreignKey><targetTable>tap_schema.keys</targetTable><fkColumn><fromColumn>key_id</fromColumn><targetColumn>key_id</targetColumn></fkColumn></foreignKey></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 within 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><schema><name>rr</name><title>GAVO RegTAP Service (Potsdam mirror)</title><description>
Tables containing the information in the IVOA Registry.  To query
these tables, use `our TAP service`_.

For more information and example queries, see the
`RegTAP specification`_.

.. _our TAP service: /__system__/tap/run/info
.. _RegTAP specification: http://www.ivoa.net/documents/RegTAP/</description><utype>ivo://ivoa.net/std/regtap#1.2</utype><table><name>rr.resource</name><description> The resources (like services, data collections, organizations)
present in this registry.</description><utype>xpath:/</utype><column><name>ivoid</name><description>Unambiguous reference to the resource conforming to the IVOA standard for identifiers.</description><utype>xpath:identifier</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>res_type</name><description>Resource type (something like vg:authority, vs:catalogservice, etc).</description><utype>xpath:@xsi:type</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>created</name><description>The UTC date and time this resource metadata description was created.</description><utype>xpath:@created</utype><dataType arraysize="19" extendedType="timestamp" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>short_name</name><description>A short name or abbreviation given to something, for presentation in space-constrained fields (up to 16 characters).</description><utype>xpath:shortName</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>res_title</name><description>The full name given to the resource.</description><utype>xpath:title</utype><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>updated</name><description>The UTC date this resource metadata description was last updated.</description><utype>xpath:@updated</utype><dataType arraysize="19" extendedType="timestamp" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>content_level</name><description>A hash-separated list of content levels specifying the intended audience.</description><utype>xpath:content/contentLevel</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>res_description</name><description>An account of the nature of the resource.</description><utype>xpath:content/description</utype><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>reference_url</name><description>URL pointing to a human-readable document describing this resource.</description><utype>xpath:content/referenceURL</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>creator_seq</name><description>The creator(s) of the resource in the order given by the resource record author, separated by semicolons.</description><utype>xpath:curation/creator/name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>content_type</name><description>A hash-separated list of natures or genres of the content of the resource.</description><utype>xpath:content/type</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>source_format</name><description>The format of source_value. This, in particular, can be ``bibcode''.</description><utype>xpath:content/source/@format</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>source_value</name><description>A bibliographic reference from which the present resource is derived or extracted.</description><utype>xpath:content/source</utype><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>nullable</flag></column><column><name>res_version</name><description>Label associated with creation or availablilty of a version of a resource.</description><utype>xpath:curation/version</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>region_of_regard</name><description>A single numeric value representing the angle, given in decimal degrees, by which a positional query against this resource should be ``blurred'' in order to get an appropriate match.</description><unit>deg</unit><utype>xpath:coverage/regionOfRegard</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>waveband</name><description>A hash-separated list of regions of the electro-magnetic spectrum that the resource's spectral coverage overlaps with.</description><utype>xpath:coverage/waveband</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>rights</name><description>A statement of usage conditions (license, attribution, embargo, etc).</description><utype>xpath:/rights</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>rights_uri</name><description>A URI identifying a license the data is made available under.</description><utype>xpath:/rights/@rightsURI</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>harvested_from</name><description>IVOID of the registry this record came from.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><foreignKey><targetTable>rr.registries</targetTable><fkColumn><fromColumn>harvested_from</fromColumn><targetColumn>ivoid</targetColumn></fkColumn></foreignKey></table><table><name>rr.capability</name><description> Pieces of behaviour of a resource.</description><utype>xpath:/capability/</utype><column><name>ivoid</name><description>The parent resource.</description><utype>xpath:/identifier</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>cap_index</name><description>An arbitrary identifier of this capability within the resource.</description><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>cap_type</name><description>The type of capability covered here. If looking for endpoints implementing a certain standard, you should not use this column but rather match against standard_id.</description><utype>xpath:@xsi:type</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>cap_description</name><description>A human-readable description of what this capability provides as part of the over-all service.</description><utype>xpath:description</utype><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>nullable</flag></column><column><name>standard_id</name><description>A URI for a standard this capability conforms to.</description><utype>xpath:@standardID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><foreignKey><targetTable>rr.resource</targetTable><fkColumn><fromColumn>ivoid</fromColumn><targetColumn>ivoid</targetColumn></fkColumn></foreignKey></table><table><name>rr.tap_table</name><description> TAP-queriable tables.</description><utype>ivo://ivoa.net/std/regtap#1.2</utype><column><name>resid</name><description>IVOA identifier of the resource this table was taken from (where there is a dedicated resource containing this table in its tableset, that resource is preferred over a TAP service).</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>svcid</name><description>IVOA identifier of the TAP service making this table queriable.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>table_name</name><description>The fully qualified name of the table. As per VODataService, this includes all catalog or schema prefixes needed to distinguish it in a query, and it comes with SQL delimiters where necessary.</description><utype>xpath:name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>table_title</name><description>A descriptive, human-interpretable name for the table.</description><utype>xpath:title</utype><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>table_description</name><description>A free-text description of the table's contents.</description><utype>xpath:description</utype><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>table_utype</name><description>An identifier for a concept in a data model that the data in this table as a whole represent.</description><utype>xpath:utype</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>rr.stc_spatial</name><description> The spatial coverage of resources. This table associates footprints
(ADQL geometries) with ivoids. The footprints are intended for
resource discovery; a reasonable expectation for the resolution thus
is something like a degree.</description><utype>xpath:/coverage/spatial</utype><column><name>ivoid</name><description>The parent resource.</description><utype>xpath:/identifier</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>coverage</name><description>A geometry representing the area a resource contains data for; this should be tight at least with a resolution of degrees.</description><ucd>pos</ucd><utype>xpath:.</utype><dataType arraysize="*" extendedType="moc" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ref_system_name</name><description>The reference frame coverage is written in. This is currently reserved and fixed to NULL. Clients should always add a constraint to NULL for this to avoid matching non-celestial resources later.</description><ucd>pos.frame</ucd><utype>xpath:@frame</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><foreignKey><targetTable>rr.resource</targetTable><fkColumn><fromColumn>ivoid</fromColumn><targetColumn>ivoid</targetColumn></fkColumn></foreignKey></table><table><name>rr.stc_temporal</name><description> The temporal coverage of resources, given as one or more intervals.
The total coverage is (a subset of) the union of all intervals given
for a resource. All times are understood as MJD for TDB at the solar
system barycenter.</description><utype>xpath:/coverage/temporal</utype><column><name>ivoid</name><description>The parent resource.</description><utype>xpath:/identifier</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>time_start</name><description>Lower limit of a time interval covered by the resource in MJD.</description><unit>d</unit><utype>xpath:.</utype><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>time_end</name><description>Upper limit of a time interval covered by the resource in MJD.</description><unit>d</unit><utype>xpath:.</utype><dataType xsi:type="vs:VOTableType">float</dataType></column><foreignKey><targetTable>rr.resource</targetTable><fkColumn><fromColumn>ivoid</fromColumn><targetColumn>ivoid</targetColumn></fkColumn></foreignKey></table><table><name>rr.stc_spectral</name><description> The spectral coverage of resources, given as one or more intervals.
The total coverage is (a subset of) the union of all intervals given
for a resource. The spectral values are given as messenger energy.</description><utype>xpath:/coverage/spectral</utype><column><name>ivoid</name><description>The parent resource.</description><utype>xpath:/identifier</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>spectral_start</name><description>Lower limit (in Joules) of messenger energy interval covered by the resource (for the solar system barycenter).</description><unit>J</unit><utype>xpath:.</utype><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>spectral_end</name><description>Upper limit (in Joules) of messenger energy interval covered by the resource (for the solar system barycenter).</description><unit>J</unit><utype>xpath:.</utype><dataType xsi:type="vs:VOTableType">float</dataType></column><foreignKey><targetTable>rr.resource</targetTable><fkColumn><fromColumn>ivoid</fromColumn><targetColumn>ivoid</targetColumn></fkColumn></foreignKey></table><table><name>rr.registries</name><description> Administrative table: publishing registries we harvest, together with
the dates of last full and incremental harvests.</description><utype>ivo://ivoa.net/std/regtap#1.2</utype><column><name>ivoid</name><description>IVOID of the registry.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>accessurl</name><description>URL of the registry's OAI-PMH endpoint.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>title</name><description>Name of the registry.</description><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>nullable</flag></column><column><name>last_full_harvest</name><description>Date and time of the last full harvest of the registry.</description><dataType arraysize="19" extendedType="timestamp" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>last_inc_harvest</name><description>Date and time of the last incremental harvest of the registry.</description><dataType arraysize="19" extendedType="timestamp" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>rr.authorities</name><description> A mapping between the registries and the authorities they claim to
manage.</description><utype>ivo://ivoa.net/std/regtap#1.2</utype><column><name>ivoid</name><description>IVOID of the registry.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>managed_authority</name><description>An authority this registry claims to serve.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</flag></column><foreignKey><targetTable>rr.registries</targetTable><fkColumn><fromColumn>ivoid</fromColumn><targetColumn>ivoid</targetColumn></fkColumn></foreignKey></table><table><name>rr.res_role</name><description> Entities (persons or organizations) operating on resources: creators,
contacts, publishers, contributors.</description><utype>ivo://ivoa.net/std/regtap#1.2</utype><column><name>ivoid</name><description>The parent resource.</description><utype>xpath:/identifier</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>role_name</name><description>The real-world name or title of a person or organization.</description><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>role_ivoid</name><description>An IVOA identifier of a person or organization.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>street_address</name><description>A mailing address for a person or organization.</description><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>nullable</flag></column><column><name>email</name><description>An email address the entity can be reached at.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>telephone</name><description>A telephone number the entity can be reached at.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>logo</name><description>URL pointing to a graphical logo, which may be used to help identify the entity.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>base_role</name><description>The role played by this entity; this is one of contact, publisher, contributor, or creator.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>alt_identifier</name><description>A non-IVOA identifier for the entity, for instance an ORCID or a ROR id. See the RegTAP document for the notations for the various identifier types.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><foreignKey><targetTable>rr.resource</targetTable><fkColumn><fromColumn>ivoid</fromColumn><targetColumn>ivoid</targetColumn></fkColumn></foreignKey></table><table><name>rr.res_subject</name><description> Topics, object types, or other descriptive keywords about the
resource.</description><utype>xpath:/content/</utype><column><name>ivoid</name><description>The parent resource.</description><utype>xpath:/identifier</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>res_subject</name><description>Topics, object types, or other descriptive keywords about the resource.</description><utype>xpath:subject</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><foreignKey><targetTable>rr.resource</targetTable><fkColumn><fromColumn>ivoid</fromColumn><targetColumn>ivoid</targetColumn></fkColumn></foreignKey></table><table><name>rr.subject_uat</name><description> res_subject mapped to the UAT. This is based on a manual mapping of
keywords found in 2020, where subjects not mappable were dropped. This
is a non-standard, local extension. Don't base your procedures on it,
we will tear it down once there is sufficient takeup of the UAT in the
VO.</description><utype>ivo://ivoa.net/std/regtap#1.2</utype><column><name>ivoid</name><description>The parent resource.</description><utype>xpath:/identifier</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>uat_concept</name><description>Term from http://www.ivoa.net/rdf/uat; most of these resulted from mapping non-UAT designations.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><foreignKey><targetTable>rr.resource</targetTable><fkColumn><fromColumn>ivoid</fromColumn><targetColumn>ivoid</targetColumn></fkColumn></foreignKey></table><table><name>rr.res_schema</name><description> Sets of tables related to resources.</description><utype>xpath:/tableset/schema/</utype><column><name>ivoid</name><description>The parent resource.</description><utype>xpath:/identifier</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>schema_index</name><description>An arbitrary identifier for the res_schema rows belonging to a resource.</description><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>schema_description</name><description>A free text description of the tableset explaining in general how all of the tables are related.</description><utype>xpath:description</utype><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>nullable</flag></column><column><name>schema_name</name><description>A name for the set of tables.</description><utype>xpath:name </utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>schema_title</name><description>A descriptive, human-interpretable name for the table set.</description><utype>xpath:title</utype><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>nullable</flag></column><column><name>schema_utype</name><description>An identifier for a concept in a data model that the data in this schema as a whole represent.</description><utype>xpath:utype</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><foreignKey><targetTable>rr.resource</targetTable><fkColumn><fromColumn>ivoid</fromColumn><targetColumn>ivoid</targetColumn></fkColumn></foreignKey></table><table><name>rr.res_table</name><description> (Relational) tables that are part of schemata or resources.</description><utype>xpath:/(tableset/schema/|)table/</utype><column><name>ivoid</name><description>The parent resource.</description><utype>xpath:/identifier</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>schema_index</name><description>Index of the schema this table belongs to, if it belongs to a schema (otherwise NULL).</description><dataType xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><column><name>table_description</name><description>A free-text description of the table's contents.</description><utype>xpath:description</utype><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>nullable</flag></column><column><name>table_name</name><description>The fully qualified name of the table. As per VODataService, this includes all catalog or schema prefixes needed to distinguish it in a query, and it comes with SQL delimiters where necessary.</description><utype>xpath:name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>table_index</name><description>An arbitrary identifier for the tables belonging to a resource.</description><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>table_title</name><description>A descriptive, human-interpretable name for the table.</description><utype>xpath:title</utype><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>nullable</flag></column><column><name>table_type</name><description>A name for the role this table plays. Recognized values include "output", indicating this table is output from a query; "base_table", indicating a table whose records represent the main subjects of its schema; and "view", indicating that the table represents a useful combination or subset of other tables. Other values are allowed.</description><utype>xpath:@type</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>table_utype</name><description>An identifier for a concept in a data model that the data in this table as a whole represent.</description><utype>xpath:utype</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>nrows</name><description>An estimate for the number of rows in the table.</description><utype>xpath:nrows</utype><dataType xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><foreignKey><targetTable>rr.resource</targetTable><fkColumn><fromColumn>ivoid</fromColumn><targetColumn>ivoid</targetColumn></fkColumn></foreignKey></table><table><name>rr.table_column</name><description> Metadata on columns of a resource's tables.</description><utype>xpath:/(tableset/schema/|)/table/column/</utype><column><name>ivoid</name><description>The parent resource.</description><utype>xpath:/identifier</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>table_index</name><description>Index of the table this column belongs to.</description><dataType xsi:type="vs:VOTableType">short</dataType></column><column><name>name</name><description>The name of the column.</description><utype>xpath:name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ucd</name><description>A unified content descriptor that describes the scientific content of the column.</description><utype>xpath:ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>unit</name><description>The unit associated with all values in the column.</description><utype>xpath:unit</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>utype</name><description>An identifier for a role in a data model that the data in this column represents.</description><utype>xpath:utype</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>std</name><description>If 1, the meaning and use of this column is reserved and defined by a standard model. If 0, it represents a database-specific column that effectively extends beyond the standard.</description><utype>xpath:@std</utype><dataType xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><column><name>datatype</name><description>The type of the data contained in the column.</description><utype>xpath:dataType</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>extended_schema</name><description>An identifier for the schema that the value given by the extended attribute is drawn from.</description><utype>xpath:dataType/@extendedSchema</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>extended_type</name><description>A custom type for the values this column contains.</description><utype>xpath:dataType/@extendedType</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>arraysize</name><description>The shape of the array that constitutes the value, e.g., 4, *, 4*, 5x4, or 5x*, as specified by VOTable.</description><utype>xpath:dataType/@arraysize</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>delim</name><description>The string that is used to delimit elements of an array value when arraysize is not '1'.</description><utype>xpath:dataType/@delim</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>type_system</name><description>The type system used, as a QName with a canonical prefix; this will ususally be one of vs:simpledatatype, vs:votabletype, and vs:taptype.</description><utype>xpath:dataType/@xsi:type</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>flag</name><description>Hash-separated keywords representing traits of the column. Recognized values include "indexed", "primary", and "nullable".</description><utype>xpath:flag</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>column_description</name><description>A free-text description of the column's contents.</description><utype>xpath:description</utype><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>indexed</flag><flag>nullable</flag></column><foreignKey><targetTable>rr.res_table</targetTable><fkColumn><fromColumn>ivoid</fromColumn><targetColumn>ivoid</targetColumn></fkColumn><fkColumn><fromColumn>table_index</fromColumn><targetColumn>table_index</targetColumn></fkColumn></foreignKey></table><table><name>rr.g_num_stat</name><description> An experimental table containing advanced statistics for numeric
table columns. This is only available for very few tables at this
point.

Note that the values reported here may be estimates based on a subeset
of the table rows.</description><utype>ivo://ivoa.net/std/regtap#1.2</utype><column><name>ivoid</name><description>The parent resource.</description><utype>xpath:/identifier</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>table_index</name><description>Index of the table this column belongs to.</description><dataType xsi:type="vs:VOTableType">short</dataType></column><column><name>name</name><description>Name of the column (see rr.table_column for more metadata).</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>fill_factor</name><description>An estimate for the ratio of non-NULL values in this column to the number of rows in the table.</description><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>min_value</name><description>The largest value found in the column.</description><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>percentile03</name><description>An estimate for the value in the 3rd percentile of the column's distribution (for a Gaussian, roughly the lower limit of a 2σ interval).</description><dataType xsi:type="vs:VOTableType">float</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>median</name><description>An estimate for the median value (or 50th percentile) of the column's distribution</description><dataType xsi:type="vs:VOTableType">float</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>percentile97</name><description>An estimate for the value in the 97th percentile of the column's distribution (for a Gaussian, roughly the upper limit of a 2σ interval).</description><dataType xsi:type="vs:VOTableType">float</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>max_value</name><description>The largest value found in the column.</description><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><foreignKey><targetTable>rr.res_table</targetTable><fkColumn><fromColumn>ivoid</fromColumn><targetColumn>ivoid</targetColumn></fkColumn><fkColumn><fromColumn>table_index</fromColumn><targetColumn>table_index</targetColumn></fkColumn></foreignKey></table><table><name>rr.res_detail</name><description> XPath-value pairs for members of resource or capability and their
derivations that are less used and/or from VOResource extensions. The
pairs refer to a resource if cap_index is NULL, to the referenced
capability otherwise.</description><utype>ivo://ivoa.net/std/regtap#1.2</utype><column><name>ivoid</name><description>The parent resource.</description><utype>xpath:/identifier</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>cap_index</name><description>The index of the parent capability; if NULL the xpath-value pair describes a member of the entire resource.</description><dataType xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><column><name>detail_xpath</name><description>The xpath of the data item.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>detail_value</name><description>(Atomic) value of the member.</description><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>nullable</flag></column><foreignKey><targetTable>rr.resource</targetTable><fkColumn><fromColumn>ivoid</fromColumn><targetColumn>ivoid</targetColumn></fkColumn></foreignKey></table><table><name>rr.interface</name><description> Information on access modes of a capability.</description><utype>xpath:/capability/interface/</utype><column><name>ivoid</name><description>The parent resource.</description><utype>xpath:/identifier</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>cap_index</name><description>The index of the parent capability.</description><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag></column><column><name>intf_index</name><description>An arbitrary identifier for the interfaces of a resource.</description><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>intf_type</name><description>The type of the interface (vr:webbrowser, vs:paramhttp, etc).</description><utype>xpath:@xsi:type</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>intf_role</name><description>An identifier for the role the interface plays in the particular capability. If the value is equal to "std" or begins with "std:", then the interface refers to a standard interface defined by the standard referred to by the capability's standardID attribute.</description><utype>xpath:@role</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>std_version</name><description>The version of a standard interface specification that this interface complies with. When the interface is provided in the context of a Capability element, then the standard being refered to is the one identified by the Capability's standardID element.</description><utype>xpath:@version</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>query_type</name><description>Hash-joined list of expected HTTP method (get or post) supported by the service.</description><utype>xpath:queryType</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>result_type</name><description>The MIME type of a document returned in the HTTP response.</description><utype>xpath:resultType</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>wsdl_url</name><description>The location of the WSDL that describes this Web Service. If NULL, the location can be assumed to be the accessURL with '?wsdl' appended.</description><utype>xpath:wsdlURL</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>url_use</name><description>A flag indicating whether this should be interpreted as a base URL ('base'), a full URL ('full'), or a URL to a directory that will produce a listing of files ('dir').</description><utype>xpath:accessURL/@use</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_url</name><description>The URL at which the interface is found.</description><utype>xpath:accessURL</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>mirror_url</name><description>Secondary access URLs of this interface, separated by hash characters.</description><utype>xpath:mirrorURL</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>authenticated_only</name><description>A flag for whether an interface is available for anonymous use (=0) or only authenticated clients are served (=1).</description><dataType xsi:type="vs:VOTableType">short</dataType></column><column><name>security_method_id</name><description>This column was mentioned in drafts of RegTAP 1.1 but was abandoned before RegTAP 1.1 REC. Do not use any more. This is just here to avoid a flag day for clients that experimentally used this column. This is always NULL here.</description><utype>not mapped</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><foreignKey><targetTable>rr.capability</targetTable><fkColumn><fromColumn>ivoid</fromColumn><targetColumn>ivoid</targetColumn></fkColumn><fkColumn><fromColumn>cap_index</fromColumn><targetColumn>cap_index</targetColumn></fkColumn></foreignKey></table><table><name>rr.relationship</name><description> Relationships between resources (like mirroring, derivation, serving
a data collection).</description><utype>xpath:/content/relationship/</utype><column><name>ivoid</name><description>The parent resource.</description><utype>xpath:/identifier</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>relationship_type</name><description>The type of the relationship; these terms are drawn from a controlled vocabulary and are DataCite-compatible.</description><utype>xpath:relationshipType</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>related_id</name><description>The IVOA identifier for the resource referred to.</description><utype>xpath:relatedResource/@ivo-id</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>related_name</name><description>The name of resource that this resource is related to.</description><utype>xpath:relatedResource</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>related_alt_identifier</name><description>A non-IVOA identifier for the related resource. This will typically be a DOI in URI form (“doi:10...”)</description><utype>xpath:relatedResource/@altIdentifier</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><foreignKey><targetTable>rr.resource</targetTable><fkColumn><fromColumn>ivoid</fromColumn><targetColumn>ivoid</targetColumn></fkColumn></foreignKey></table><table><name>rr.intf_param</name><description> Input parameters for services.</description><utype>xpath:/capability/interface/param/</utype><column><name>ivoid</name><description>The parent resource.</description><utype>xpath:/identifier</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>intf_index</name><description>The index of the interface this parameter belongs to.</description><dataType xsi:type="vs:VOTableType">short</dataType></column><column><name>name</name><description>The name of the parameter.</description><utype>xpath:name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ucd</name><description>A unified content descriptor that describes the scientific content of the parameter.</description><utype>xpath:ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>unit</name><description>The unit associated with all values in the parameter.</description><utype>xpath:unit</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>utype</name><description>An identifier for a role in a data model that the data in this parameter represents.</description><utype>xpath:utype</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>std</name><description>If 1, the meaning and use of this parameter is reserved and defined by a standard model. If 0, it represents a database-specific parameter that effectively extends beyond the standard.</description><utype>xpath:@std</utype><dataType xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><column><name>datatype</name><description>The type of the data contained in the parameter.</description><utype>xpath:dataType</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>extended_schema</name><description>An identifier for the schema that the value given by the extended attribute is drawn from.</description><utype>xpath:dataType/@extendedSchema</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>extended_type</name><description>A custom type for the values this parameter contains.</description><utype>xpath:dataType/@extendedType</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>arraysize</name><description>The shape of the array that constitutes the value, e.g., 4, *, 4*, 5x4, or 5x*, as specified by VOTable.</description><utype>xpath:dataType/@arraysize</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>delim</name><description>The string that is used to delimit elements of an array value when arraysize is not '1'.</description><utype>xpath:dataType/@delim</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>param_use</name><description>An indication of whether this parameter is required to be provided for the application or service to work properly (one of required, optional, ignored, or NULL).</description><utype>xpath:@use</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>param_description</name><description>A free-text description of the parameter's contents.</description><utype>xpath:description</utype><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>nullable</flag></column><foreignKey><targetTable>rr.interface</targetTable><fkColumn><fromColumn>ivoid</fromColumn><targetColumn>ivoid</targetColumn></fkColumn><fkColumn><fromColumn>intf_index</fromColumn><targetColumn>intf_index</targetColumn></fkColumn></foreignKey></table><table><name>rr.validation</name><description>Validation levels for resources and capabilities.</description><utype>xpath:/(capability/|)validationLevel</utype><column><name>ivoid</name><description>The parent resource.</description><utype>xpath:/identifier</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>validated_by</name><description>The IVOA ID of the registry or organisation that assigned the validation level.</description><utype>xpath:validationLevel/@validatedBy</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>val_level</name><description>A numeric grade describing the quality of the resource description, when applicable, to be used to indicate the confidence an end-user can put in the resource as part of a VO application or research study.</description><utype>xpath:validationLevel</utype><dataType xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><column><name>cap_index</name><description>If non-NULL, the validation only refers to the capability referenced here.</description><dataType xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><foreignKey><targetTable>rr.resource</targetTable><fkColumn><fromColumn>ivoid</fromColumn><targetColumn>ivoid</targetColumn></fkColumn></foreignKey><foreignKey><targetTable>rr.resource</targetTable><fkColumn><fromColumn>ivoid</fromColumn><targetColumn>ivoid</targetColumn></fkColumn></foreignKey></table><table><name>rr.res_date</name><description> A date associated with an event in the life cycle of the resource.
This could be creation or update. The role column can be used to
clarify.</description><utype>xpath:/curation/</utype><column><name>ivoid</name><description>The parent resource.</description><utype>xpath:/identifier</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>date_value</name><description>A date associated with an event in the life cycle of the resource.</description><utype>xpath:date</utype><dataType arraysize="19" extendedType="timestamp" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>value_role</name><description>A string indicating what the date refers to, e.g., created, availability, updated. This value is generally drawn from a controlled vocabulary.</description><utype>xpath:date/@role</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><foreignKey><targetTable>rr.resource</targetTable><fkColumn><fromColumn>ivoid</fromColumn><targetColumn>ivoid</targetColumn></fkColumn></foreignKey></table><table><name>rr.alt_identifier</name><description> An alternate identifier associated with this record. This can be a
resiource identifier like a DOI (in URI form, e.g.,
doi:10.1016/j.epsl.2011.11.037).</description><utype>xpath:/(curation/creator/|)altIdentifier</utype><column><name>ivoid</name><description>The parent resource.</description><utype>xpath:/identifier</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>alt_identifier</name><description>An identifier for the resource or an entity related to the resource in URI form.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><foreignKey><targetTable>rr.resource</targetTable><fkColumn><fromColumn>ivoid</fromColumn><targetColumn>ivoid</targetColumn></fkColumn></foreignKey></table></schema><schema><name>bolshoi</name><title>Bolshoi</title><description> This is an extract of the Bolshoi simulation data. It is used for
testing and demonstration purposes only. The full data is available at
https://www.cosmosim.org/.</description><table><name>bolshoi.dens256</name><description>Densities for 256^3 grid cells; for some snapnums</description><column><name>webid</name><description>unique id for the entry in the database table, corresponds to the line number in the original file, starting with 0 at first line</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>ix</name><description>spatial grid index, x-direction; ix= floor(x/nx); multiply/divide by factors of 2 when comparing with a finer/coarser grid</description><ucd>pos.cartesian.x</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>indexed</flag></column><column><name>iy</name><description>spatial grid index, y-direction; iy = floor(y/ny)</description><ucd>pos.cartesian.y</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>indexed</flag></column><column><name>iz</name><description>spatial grid index, z-direction; iz = floor(z/nz)</description><ucd>pos.cartesian.z</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>indexed</flag></column><column><name>phkey</name><description>Peano-Hilbert key; multiply/divide by factors of 8 when comparing with a finer/coarser grid</description><dataType xsi:type="vs:VOTableType">int</dataType><flag>indexed</flag></column><column><name>dens</name><description>overdensity, dens = (rho - rho_b)/rho_b, rho_b = mean background density of matter</description><ucd>phys.density;arith.ratio</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>indexed</flag></column><column><name>snapnum</name><description>unique id for the entry in the database table, corresponds to the line number in the original file, starting with 0 at first line</description><ucd>time.epoch</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column></table><table><name>bolshoi.fof</name><description>Friends-of-Friends halo catalogue, level 0 with relative linking
length 0.17</description><column><name>fofid</name><description>unique id for FOF-group</description><ucd>meta.id;meta.main</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>snapnum</name><description>number of snapshot; look into redshifts-table to find the corresponding redshift</description><ucd>time.epoch</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag></column><column><name>level</name><description>level of substructure, indicates the different linking lengths</description><dataType xsi:type="vs:VOTableType">short</dataType></column><column><name>ninfile</name><description>line number of FOF-group in original catalogue file (= rank in file)</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>x</name><description>comoving position, x-component</description><unit>h-1.Mpc</unit><ucd>pos.cartesian.x</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>y</name><description>comoving position, y-component</description><unit>h-1.Mpc</unit><ucd>pos.cartesian.y</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>z</name><description>comoving position, z-component</description><unit>h-1.Mpc</unit><ucd>pos.cartesian.z</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>vx</name><description>peculiar velocity, x-component</description><unit>km/s</unit><ucd>phys.veloc;pos.cartesian.x</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>vy</name><description>peculiar velocity, y-component</description><unit>km/s</unit><ucd>phys.veloc;pos.cartesian.y</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>vz</name><description>peculiar velocity, z-component</description><unit>km/s</unit><ucd>phys.veloc;pos.cartesian.z</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>np</name><description>number of particles inside the FOF group ('halo')</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>mass</name><description>total mass of the FOF group</description><unit>h-1.solMass</unit><ucd>phys.mass</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag></column><column><name>size</name><description>'radius' of the FOF group, if it were a sphere, computed based on the volume</description><unit>h-1.Mpc</unit><ucd>phys.size.radius</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>disp</name><description>dispersion</description><unit>h-1.Mpc</unit><ucd>phys.dispMeasure</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>disp_v</name><description>velocity dispersion</description><unit>km/s</unit><ucd>phys.veloc.dispersion</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>delta</name><description>overdensity (mass/volume) in terms of mean background density rho_b</description><ucd>phys.density;arith.ratio</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>spin</name><description>spin parameter (Gottloeber and Yepes 2007, ApJ 664, 117)</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>angmom_x</name><description>angular momentum, x-component</description><unit>h-2.solMass.Mpc.km/s</unit><ucd>phys.angMomentum;pos.cartesian.x</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>angmom_y</name><description>angular momentum, y-component</description><unit>h-2.solMass.Mpc.km/s</unit><ucd>phys.angMomentum;pos.cartesian.y</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>angmom_z</name><description>angular momentum, z-component</description><unit>h-2.solMass.Mpc.km/s</unit><ucd>phys.angMomentum;pos.cartesian.z</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>angmom</name><description>absolute value of angular momentum</description><unit>h-2.solMass.Mpc.km/s</unit><ucd>phys.angMomentum</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>axis1</name><description>major axis of the ellipsoidal shape, not normalized</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>axis2</name><description>intermediate axis of the ellipsoidal shape, not normalized</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>axis3</name><description>minor axis of the ellipsoidal shape, not normalized</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>axis1_x</name><description>direction of major axis, unit eigenvector of the inertia tensor, x-component</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>axis1_y</name><description>direction of major axis, y-component</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>axis1_z</name><description>direction of major axis, z-component</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>axis2_x</name><description>direction of intermediate axis, unit eigenvector of the inertia tensor, x-component</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>axis2_y</name><description>direction of intermediate axis, y-component</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>axis2_z</name><description>direction of intermediate axis, z-component</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>axis3_x</name><description>direction of minor axis, unit eigenvector of the inertia tensor, x-component</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>axis3_y</name><description>direction of minor axis, y-component</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>axis3_z</name><description>direction of minor axis, z-component</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>ix</name><description>spatial index, x-direction</description><ucd>pos.cartesian.x</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>iy</name><description>spatial index, y-direction</description><ucd>pos.cartesian.y</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>iz</name><description>spatial index, z-direction</description><ucd>pos.cartesian.z</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>phkey</name><description>Peano-Hilbert key</description><dataType xsi:type="vs:VOTableType">int</dataType><flag>indexed</flag></column></table><table><name>bolshoi.redshifts</name><description>Redshifts for snapshot numbers</description><column><name>snapnum</name><description>snapshot number</description><ucd>time.epoch</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>aexp</name><description>expansion factor of the universe</description><ucd>time.epoch</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>zred</name><description>corresponding redshift</description><ucd>time.epoch</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column></table></schema><schema><name>glots</name><title>GloTS, the Global TAP Schema</title><description>
The global TAP schema collects information on
tables and columns from known TAP servers.  This facilitates locating
queriable data by physics (via UCD) or keywords (via description).

Note that this shouldn't really be necessary as all information
present here should be exposed through Registry records.  However,
in reality data providers currently are much more liable to give
column metadata in their tap_schema than in their Registry records.
Hence, for the time being, we maintain this service by harvesting
tap_schemas about monthly.</description><table><name>glots.services</name><description>A table of TAP services harvested from the registry (and some
spoon-fed).</description><column><name>ivoid</name><description>IVOA identifier of providing service</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>accessurl</name><description>Base URL of TAP endpoint</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>nextharvest</name><description>Next scheduled harvest of data</description><dataType arraysize="19" extendedType="timestamp" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>harvestinterval</name><description>Approximate interval of harvest</description><unit>d</unit><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>lastsuccess</name><description>Last successful harvest of this service</description><dataType arraysize="19" extendedType="timestamp" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>glots.tables</name><description>A table of tables accesible through the TAP services known to
glots.services.</description><column><name>ivoid</name><description>IVOA identifier of providing service</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</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_desc</name><description>Brief description of the table</description><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>indexed</flag><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><foreignKey><targetTable>glots.services</targetTable><fkColumn><fromColumn>ivoid</fromColumn><targetColumn>ivoid</targetColumn></fkColumn></foreignKey></table><table><name>glots.columns</name><description>A table of columns within the tables listed in glots.tables.</description><column><name>ivoid</name><description>IVOA identifier of providing service</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</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>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">char</dataType><flag>indexed</flag><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 (some services still have 1.0 UCDs).</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>utype</name><description>Utype of column</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 xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>principal</name><description>Is column principal?</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>indexed</name><description>Is there an index on this column?</description><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>std</name><description>Is this a standard column?</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><foreignKey><targetTable>glots.tables</targetTable><fkColumn><fromColumn>ivoid</fromColumn><targetColumn>ivoid</targetColumn></fkColumn><fkColumn><fromColumn>table_name</fromColumn><targetColumn>table_name</targetColumn></fkColumn></foreignKey></table></schema><schema><name>mdr1</name><title>MDR1 - MultiDark Run 1</title><description> This is an extract of the MultiDark Run 1 simulation data. It is used
for testing and demonstration purposes only. The full data is
available at https://www.cosmosim.org/.</description><table><name>mdr1.fof</name><description>Friends-of-Friends halo catalogue, level 0 with relative linking
length 0.17</description><column><name>fofid</name><description>unique id for FOF-group</description><ucd>meta.id;meta.main</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>snapnum</name><description>number of snapshot; look into redshifts-table to find the corresponding redshift</description><ucd>time.epoch</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag></column><column><name>level</name><description>level of substructure, indicates the different linking lengths</description><dataType xsi:type="vs:VOTableType">short</dataType></column><column><name>ninfile</name><description>line number of FOF-group in original catalogue file (= rank in file)</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>x</name><description>comoving position, x-component</description><unit>h-1.Mpc</unit><ucd>pos.cartesian.x</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>y</name><description>comoving position, y-component</description><unit>h-1.Mpc</unit><ucd>pos.cartesian.y</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>z</name><description>comoving position, z-component</description><unit>h-1.Mpc</unit><ucd>pos.cartesian.z</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>vx</name><description>peculiar velocity, x-component</description><unit>km/s</unit><ucd>phys.veloc;pos.cartesian.x</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>vy</name><description>peculiar velocity, y-component</description><unit>km/s</unit><ucd>phys.veloc;pos.cartesian.y</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>vz</name><description>peculiar velocity, z-component</description><unit>km/s</unit><ucd>phys.veloc;pos.cartesian.z</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>np</name><description>number of particles inside the FOF group ('halo')</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>mass</name><description>total mass of the FOF group</description><unit>h-1.solMass</unit><ucd>phys.mass</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag></column><column><name>size</name><description>'radius' of the FOF group, if it were a sphere, computed based on the volume</description><unit>h-1.Mpc</unit><ucd>phys.size.radius</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>disp</name><description>dispersion</description><unit>h-1.Mpc</unit><ucd>phys.dispMeasure</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>disp_v</name><description>velocity dispersion</description><unit>km/s</unit><ucd>phys.veloc.dispersion</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>delta</name><description>overdensity (mass/volume) in terms of mean background density rho_b</description><ucd>phys.density;arith.ratio</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>spin</name><description>spin parameter (Gottloeber and Yepes 2007, ApJ 664, 117)</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>angmom_x</name><description>angular momentum, x-component</description><unit>h-2.solMass.Mpc.km/s</unit><ucd>phys.angMomentum;pos.cartesian.x</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>angmom_y</name><description>angular momentum, y-component</description><unit>h-2.solMass.Mpc.km/s</unit><ucd>phys.angMomentum;pos.cartesian.y</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>angmom_z</name><description>angular momentum, z-component</description><unit>h-2.solMass.Mpc.km/s</unit><ucd>phys.angMomentum;pos.cartesian.z</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>angmom</name><description>absolute value of angular momentum</description><unit>h-2.solMass.Mpc.km/s</unit><ucd>phys.angMomentum</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>axis1</name><description>major axis of the ellipsoidal shape, not normalized</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>axis2</name><description>intermediate axis of the ellipsoidal shape, not normalized</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>axis3</name><description>minor axis of the ellipsoidal shape, not normalized</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>axis1_x</name><description>direction of major axis, unit eigenvector of the inertia tensor, x-component</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>axis1_y</name><description>direction of major axis, y-component</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>axis1_z</name><description>direction of major axis, z-component</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>axis2_x</name><description>direction of intermediate axis, unit eigenvector of the inertia tensor, x-component</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>axis2_y</name><description>direction of intermediate axis, y-component</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>axis2_z</name><description>direction of intermediate axis, z-component</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>axis3_x</name><description>direction of minor axis, unit eigenvector of the inertia tensor, x-component</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>axis3_y</name><description>direction of minor axis, y-component</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>axis3_z</name><description>direction of minor axis, z-component</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>ix</name><description>spatial index, x-direction</description><ucd>pos.cartesian.x</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>iy</name><description>spatial index, y-direction</description><ucd>pos.cartesian.y</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>iz</name><description>spatial index, z-direction</description><ucd>pos.cartesian.z</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>phkey</name><description>Peano-Hilbert key</description><dataType xsi:type="vs:VOTableType">int</dataType></column></table><table><name>mdr1.treesnapnums</name><description>Snapshot numbers of merger tree data</description><column><name>treesnapnum</name><description>snapshot number in FOF merger tree</description><unit>-</unit><ucd>time.epoch</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>snapnum</name><description>snapshot number (in full snapshot sample)</description><unit>-</unit><ucd>time.epoch</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>aexp</name><description>expansion factor of the universe</description><unit>-</unit><ucd>time.epoch</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>zred</name><description>corresponding redshift</description><unit>-</unit><ucd>time.epoch</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column></table><table><name>mdr1.fofmtree</name><description>Merger trees for FOF-objects</description><column><name>foftreeid</name><description>unique id for FOF-group = treeRootId + rank in merger tree (depth first order)</description><ucd>meta.id;meta.main</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>fofid</name><description>corresponding id of this FOF group in the FOF table</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag></column><column><name>treesnapnum</name><description>subsequent number of snapshot used for creating the merger tree, not the same number as in FOF table</description><ucd>time.epoch</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag></column><column><name>descendantid</name><description>fofTreeId for direct descendant (to which the FOF group will merge in the next timestep)</description><ucd>meta.id.assoc</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag></column><column><name>lastprogid</name><description>fofTreeId of last progenitor in depth-first order</description><ucd>meta.id.assoc</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag></column><column><name>mainleafid</name><description>fofTreeId of last leaf on main branch, which is defined by the most massive progenitors</description><ucd>meta.id.assoc</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag></column><column><name>treerootid</name><description>root in merger tree</description><ucd>meta.id.assoc</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag></column><column><name>x</name><description>comoving position, x-component</description><unit>h-1.Mpc</unit><ucd>pos.cartesian.x</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>y</name><description>comoving position, y-component</description><unit>h-1.Mpc</unit><ucd>pos.cartesian.y</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>z</name><description>comoving position, z-component</description><unit>h-1.Mpc</unit><ucd>pos.cartesian.z</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>vx</name><description>comoving velocity, x-component</description><unit>km/s</unit><ucd>phys.veloc;pos.cartesian.x</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>vy</name><description>comoving velocity, y-component</description><unit>km/s</unit><ucd>phys.veloc;pos.cartesian.y</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>vz</name><description>comoving velocity, z-component</description><unit>km/s</unit><ucd>phys.veloc;pos.cartesian.z</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>np</name><description>number of particles inside the FOF group</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>mass</name><description>total mass of the FOF group</description><unit>h-1.solMass</unit><ucd>phys.mass</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>size</name><description>'radius' of the FOF group, if it were a sphere, computed based on the volume</description><unit>h-1.Mpc</unit><ucd>phys.size.radius</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>spin</name><description>spin parameter (Gottloeber and Yepes 2007, ApJ 664, 117)</description><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>ix</name><description>spatial index, x-direction</description><ucd>pos.cartesian.x</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>iy</name><description>spatial index, y-direction</description><ucd>pos.cartesian.y</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>iz</name><description>spatial index, z-direction</description><ucd>pos.cartesian.z</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>phkey</name><description>Peano-Hilbert key</description><dataType xsi:type="vs:VOTableType">int</dataType><flag>indexed</flag></column></table><table><name>mdr1.fofparticles</name><description>Links between FOF groups at z=0 (snapnum=85) and their particles</description><column><name>fofparticleid</name><description>unique id for each record (for usage as primary key), combined from fofId and particleId</description><ucd>meta.id;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>fofid</name><description>id of the FOF group, same as fofId in corresponding FOF-table</description><ucd>meta.id;meta.main</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag></column><column><name>particleid</name><description>id for particle, same as particleId in particles-table</description><ucd>meta.id;meta.main</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag></column><column><name>snapnum</name><description>number of snapshot</description><ucd>time.epoch</ucd><dataType xsi:type="vs:VOTableType">short</dataType></column></table><table><name>mdr1.particles85</name><description>Snapshot of the simulation at redshift z=0, list of simulation
particles</description><column><name>particleid</name><description>unique id for particle</description><ucd>meta.id;meta.main</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>x</name><description>comoving position, x-component</description><unit>h-1.Mpc</unit><ucd>pos.cartesian.x</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>y</name><description>comoving position, y-component</description><unit>h-1.Mpc</unit><ucd>pos.cartesian.y</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>z</name><description>comoving position, z-component</description><unit>h-1.Mpc</unit><ucd>pos.cartesian.z</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>vx</name><description>peculiar velocity, x-component</description><unit>km/s</unit><ucd>phys.veloc;pos.cartesian.x</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>vy</name><description>peculiar velocity, y-component</description><unit>km/s</unit><ucd>phys.veloc;pos.cartesian.y</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>vz</name><description>peculiar velocity, z-component</description><unit>km/s</unit><ucd>phys.veloc;pos.cartesian.z</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>phkey</name><description>Peano-Hilbert key</description><dataType xsi:type="vs:VOTableType">int</dataType><flag>indexed</flag></column></table></schema><schema><name>ravedr4</name><title>RAVE - 4th data release</title><description> This service gives access to the 4th data release of RAVE (RAdial
Velocity Experiment). It contains radial velocities of stars, stellar
atmospheric parameters, some abundances and distances.</description><table><name>ravedr4.rave_dr4</name><description>This is the main DR4 table, containing a summary of most values from
the other tables.</description><column><name>rave_obs_id</name><description>Unique Identifier for RAVE objects: Observation Date, Fieldname, Fibernumber</description><ucd>meta.id;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>raveid</name><description>(J2000 GCS) $RA_h,$RA_m,(int(10*$RA_s+0.51))/10.0,$DEsign,$DE_h,$DE_m,int($DE_s+0.51)) RA(hh:mm:ss) Dec(hh:mm:ss) from fits file</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>radeg</name><description>Right Ascension (J2000 GCS)</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>dedeg</name><description>Declination (J2000 GCS)</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>glon</name><description>Longitude (J2000 GCS)</description><unit>deg</unit><ucd>pos.galactic.lon</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>glat</name><description>Latitude (J2000 GCS)</description><unit>deg</unit><ucd>pos.galactic.lat</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>hrv</name><description>Heliocentric radial velocity</description><unit>km/s</unit><ucd>spect.dopplerVeloc;pos.heliocentric</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ehrv</name><description>Error of Heliocentric radial velocity stat.error</description><unit>km/s</unit><ucd>stat.error;spect.dopplerVeloc;pos.heliocentric</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>correlationcoeff</name><description>Tonry-Davis $R$ correlation coefficient</description><unit>(R+)</unit><ucd>stat.correlation</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>peakheight</name><description>Height of correlation peak</description><unit>[0,1]</unit><ucd>stat.correlation;stat.value</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>peakwidth</name><description>Width of correlation peak</description><unit>km/s</unit><ucd>stat.correlation;stat.value</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>correctionrv</name><description>Zero point correction applied Heliocentric Radial Velocity</description><unit>km/s</unit><ucd>spect.dopplerVeloc;arith.zp</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>skyhrv</name><description>Measured Sky Heliocentric Radial Velocity</description><unit>km/s</unit><ucd>spect.dopplerVeloc</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>eskyhrv</name><description>Error of Measured Sky Heliocentric Radial Velocity</description><unit>km/s</unit><ucd>spect.dopplerVeloc</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>skycorrelationcoeff</name><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>zeropointflag</name><description>Quality Flag for ZeroPoint correction (see DR3, Note )</description><ucd>meta.code.qual</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>stn_sparv</name><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>id_tycho2</name><description>TYCHO2 designation</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>dist_tycho2</name><description>Center Distance Target-Catalog [orig. period, approx. formula] (see Note XQFL)</description><unit>arcsec</unit><ucd>pos.angDistance</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>xidqualityflag_tycho2</name><description>Cross-Identification Flag (see Note XQFL)</description><ucd>meta.code.qual</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>pmra_tycho2</name><description>Proper Motion (Right Ascension)</description><unit>mas/yr</unit><ucd>pos.pm</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>epmra_tycho2</name><description>Proper Motion error (Right Ascension)</description><unit>mas/yr</unit><ucd>stat.error;pos.pm</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>pmde_tycho2</name><description>Proper Motion (Declination)</description><unit>mas/yr</unit><ucd>pos.pm</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>epmde_tycho2</name><description>Proper Motion error (Declination)</description><unit>mas/yr</unit><ucd>stat.error;pos.pm</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>id_ucac2</name><description>UCAC2 designation</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>dist_ucac2</name><description>Center Distance Target-Catalog [J2000] (see Note XQFL)</description><unit>arcsec</unit><ucd>pos.angDistance</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>xidqualityflag_ucac2</name><description>Cross-Identification Flag (see Note XQFL)</description><ucd>meta.code.qual</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>pmra_ucac2</name><description>Proper Motion (Right Ascension)</description><unit>mas/yr</unit><ucd>pos.pm</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>epmra_ucac2</name><description>Proper Motion error (Right Ascension)</description><unit>mas/yr</unit><ucd>stat.error;pos.pm</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>pmde_ucac2</name><description>Proper Motion (Declination)</description><unit>mas/yr</unit><ucd>pos.pm</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>epmde_ucac2</name><description>Proper Motion error (Declination)</description><unit>mas/yr</unit><ucd>stat.error;pos.pm</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>id_ucac3</name><description>UCAC3 designation</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>dist_ucac3</name><description>Center Distance Target-Catalog [J2000] (see Note XQFL)</description><unit>arcsec</unit><ucd>pos.angDistance</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>xidqualityflag_ucac3</name><description>Cross-Identification Flag (see Note XQFL)</description><ucd>meta.code.qual</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>pmra_ucac3</name><description>Proper Motion (Right Ascension)</description><unit>mas/yr</unit><ucd>pos.pm</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>epmra_ucac3</name><description>Proper Motion error (Right Ascension)</description><unit>mas/yr</unit><ucd>stat.error;pos.pm</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>pmde_ucac3</name><description>Proper Motion (Declination)</description><unit>mas/yr</unit><ucd>pos.pm</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>epmde_ucac3</name><description>Proper Motion error (Declination)</description><unit>mas/yr</unit><ucd>stat.error;pos.pm</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>id_ucac4</name><description>UCAC4 designation</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>dist_ucac4</name><description>Center Distance Target-Catalog [J2000] (see Note XQFL)</description><unit>arcsec</unit><ucd>pos.angDistance</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>xidqualityflag_ucac4</name><description>Cross-Identification Flag (see Note XQFL)</description><ucd>meta.code.qual</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>pmra_ucac4</name><description>Proper Motion (Right Ascension)</description><unit>mas/yr</unit><ucd>pos.pm</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>epmra_ucac4</name><description>Proper Motion error (Right Ascension)</description><unit>mas/yr</unit><ucd>stat.error;pos.pm</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>pmde_ucac4</name><description>Proper Motion (Declination)</description><unit>mas/yr</unit><ucd>pos.pm</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>epmde_ucac4</name><description>Proper Motion error (Declination)</description><unit>mas/yr</unit><ucd>stat.error;pos.pm</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>id_ppmxl</name><description>PPMXL designation</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>dist_ppmxl</name><description>Center Distance Target-Catalog [J2000] (see Note XQFL)</description><unit>arcsec</unit><ucd>pos.angDistance</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>xidqualityflag_ppmxl</name><description>Cross-Identification Flag (see Note XQFL)</description><ucd>meta.code.qual</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>pmra_ppmxl</name><description>Proper Motion (Right Ascension)</description><unit>mas/yr</unit><ucd>pos.pm</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>epmra_ppmxl</name><description>Proper Motion error (Right Ascension)</description><unit>mas/yr</unit><ucd>stat.error;pos.pm</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>pmde_ppmxl</name><description>Proper Motion (Declination)</description><unit>mas/yr</unit><ucd>pos.pm</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>epmde_ppmxl</name><description>Proper Motion error (Declination)</description><unit>mas/yr</unit><ucd>stat.error;pos.pm</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>obsdate</name><description>Observation Date (YYYYMMDD)</description><unit>YYYYMMDD</unit><ucd>time.obs</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>fieldname</name><description>Center of Observed Field (RA/Dec)</description><ucd>meta.id;meta.file</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>platenumber</name><description>Instrument Plate Number</description><unit>[1,2,3]</unit><ucd>meta.id;instr.plate</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><column><name>fibernumber</name><description>Instrument FiberNumber</description><unit>[1,150]</unit><ucd>meta.id.instr.part</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><column><name>teff_k</name><description>Effective Temperature</description><unit>K</unit><ucd>phys.temperature.effective</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>eteff_k</name><description>Effective Temperature error</description><unit>K</unit><ucd>phys.temperature.effective</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>logg_k</name><description>Gravity</description><unit>dex</unit><ucd>phys.gravity</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>elogg_k</name><description>Gravity</description><unit>dex</unit><ucd>phys.gravity</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>met_k</name><description>[m/H]</description><unit>dex</unit><ucd>phys.abund.Z</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>met_n_k</name><description>[m/H], (matisse-calibrated)</description><unit>dex</unit><ucd>phys.abund.Z</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>emet_k</name><description>[m/H]</description><unit>dex</unit><ucd>phys.abund.Z</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>snr_k</name><description>Signal/Noise Ratio of Pipeline V 5.x</description><unit>(R+)</unit><ucd>stat.snr</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>algo_conv_k</name><description>0 = MATISSE converged. 1 = no convergence. 2 = MATISSE oscillates between two values and the mean has been performed. 3 = results of MATISSE at the boundaries or outside the grid and the DEGAS value has been adopted 4 = then the metal-poor giants with snr less than 20 have been re-run by degas with a scale factor (ie, internal parameter of DEGAS) of 0.40</description><unit>[0,1,2,3,4]</unit><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><column><name>al</name><description>[Al/H] abundance of Al</description><unit>dex</unit><ucd>phys.abund.Z</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>al_n</name><description>Number of used spectral lines in calc. of [Al/H]</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><column><name>si</name><description>[Si/H] abundance of Si</description><unit>dex</unit><ucd>phys.abund.Z</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>si_n</name><description>Number of used spectral lines in calc. of [Si/H]</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><column><name>fe</name><description>[Fe/H] abundance of Fe</description><unit>dex</unit><ucd>phys.abund.Z</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>fe_n</name><description>Number of used spectral lines in calc. of [Fe/H]</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><column><name>ti</name><description>[Ti/H] abundance of Ti</description><unit>dex</unit><ucd>phys.abund.Z</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ti_n</name><description>Number of used spectral lines in calc. of [Ti/H]</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><column><name>ni</name><description>[Ni/H] abundance of Ni</description><unit>dex</unit><ucd>phys.abund.Z</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ni_n</name><description>Number of used spectral lines in calc. of [Ni/H]</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><column><name>mg</name><description>[Mg/H] abundance of Mg</description><unit>dex</unit><ucd>phys.abund.Z</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>mg_n</name><description>Number of used spectral lines in calc. of [Mg/H]</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><column><name>chisq_c</name><description>chi square [Chemical pipeline]</description><ucd>stat.fit.chi2</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>teff_sparv</name><description>Effective Temperature</description><unit>K</unit><ucd>phys.temperature.effective</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>logg_sparv</name><description>Gravity</description><unit>dex</unit><ucd>phys.gravity</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>alpha_sparv</name><description>[Alpha/Fe]</description><unit>dex</unit><ucd>phys.abund</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>id_2mass</name><description>2MASS designation</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>dist_2mass</name><description>Center Distance Target-Catalog [J2000] (see Note XQFL)</description><unit>arcsec</unit><ucd>pos.angDistance</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>xidqualityflag_2mass</name><description>Cross-Identification Flag (see Note XQFL)</description><ucd>meta.code.qual</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>jmag_2mass</name><description>J selected default magnitude from 2MASS</description><unit>mag</unit><ucd>phot.mag;em.IR.J</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ejmag_2mass</name><description>error 2MASS J magnitude</description><unit>mag</unit><ucd>stat.error;phot.mag;em.IR.J</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>hmag_2mass</name><description>H selected default magnitude from 2MASS</description><unit>mag</unit><ucd>phot.mag;em.IR.H</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ehmag_2mass</name><description>error 2MASS H magnitude</description><unit>mag</unit><ucd>stat.error;phot.mag;em.IR.H</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>kmag_2mass</name><description>K_s selected default magnitude from 2MASS</description><unit>mag</unit><ucd>phot.mag;em.IR.K</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ekmag_2mass</name><description>error 2MASS K magnitude</description><unit>mag</unit><ucd>stat.error;phot.mag;em.IR.K</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>id_denis</name><description>DENIS designation</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>dist_denis</name><description>Center Distance Target-Catalog [J2000] (see Note XQFL)</description><unit>arcsec</unit><ucd>pos.angDistance</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>xidqualityflag_denis</name><description>Cross-Identification Flag (see Note XQFL)</description><ucd>meta.code.qual</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>imag_denis</name><description>Input Catalog I magnitude</description><unit>mag</unit><ucd>phot.mag;em.opt.I</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>eimag_denis</name><description>error DENIS I magnitude</description><unit>mag</unit><ucd>stat.error;phot.mag;em.opt.I</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>jmag_denis</name><description>J selected default magnitude from 2MASS</description><unit>mag</unit><ucd>phot.mag;em.IR.J</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>ejmag_denis</name><description>error DENIS J magnitude</description><unit>mag</unit><ucd>stat.error;phot.mag;em.IR.J</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>kmag_denis</name><description>K_s selected default magnitude from 2MASS</description><unit>mag</unit><ucd>phot.mag;em.IR.K</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>ekmag_denis</name><description>error DENIS K magnitude</description><unit>mag</unit><ucd>stat.error;phot.mag;em.IR.K</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>id_usnob1</name><description>USNOB-1 designation</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>dist_usnob1</name><description>Center Distance Target-Catalog [J2000] (see Note XQFL)</description><unit>arcsec</unit><ucd>pos.angDistance</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>xidqualityflag_usnob1</name><description>Cross-Identification Flag (see Note XQFL)</description><ucd>meta.code.qual</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>b1mag_usnob1</name><description>B mag from USNO-B</description><unit>mag</unit><ucd>phot.mag;em.opt.B</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>r1mag_usnob1</name><description>R mag from USNO-B</description><unit>mag</unit><ucd>phot.mag;em.opt.R</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>b2mag_usnob1</name><description>B mag from USNO-B</description><unit>mag</unit><ucd>phot.mag;em.opt.B</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>r2mag_usnob1</name><description>R mag from USNO-B</description><unit>mag</unit><ucd>phot.mag;em.opt.R</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>imag_usnob1</name><description>Input Catalog I magnitude</description><unit>mag</unit><ucd>phot.mag;em.opt.I</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>parallax</name><description>Parallax</description><unit>mas</unit><ucd>pos.parallax</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>e_parallax</name><unit>mas</unit><ucd>stat.error;pos.parallax</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>dist</name><description>Distance (kpc)</description><unit>kpc</unit><ucd>pos.distance</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>e_dist</name><description>Error of Distance</description><unit>kpc</unit><ucd>stat.error;pos.distance</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>distancemodulus_binney</name><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>edistancemodulus_binney</name><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>av</name><description>log_10(Av) optical extinction, see p4 ff, Mon. Not. R. Astron. Soc. 000, 1-8 (2012)</description><unit>log_10(Av)</unit><ucd>phys.absorption</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>e_av</name><description>error log_10(Av) optical extinction, see p4 ff, Mon. Not. R. Astron. Soc. 000, 1-8 (2012)</description><unit>log_10(eAv)</unit><ucd>stat.error;phys.absorption</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>age</name><description>log_10(age) Age estimation</description><unit>log10(age(yr))</unit><ucd>time.age</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>e_age</name><description>error log_10(age) error of age estimation</description><unit>log10(age(yr))</unit><ucd>stat.error;time.age</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>mass</name><description>Mass</description><unit>Msun</unit><ucd>phys.mass</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>e_mass</name><description>Error of Mass</description><unit>Msun</unit><ucd>stat.error;phys.mass</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>c1</name><description>1.st minimum distance to base spectrum given by one of the types (see enumeration)</description><unit>[a,b,c,d,e,g,h,n,o,p,t,u,w]</unit><ucd>meta.code</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>c2</name><description>2.nd minimum distance to base spectrum given by one of the types (see enumeration)</description><unit>[a,b,c,d,e,g,h,n,o,p,t,u,w]</unit><ucd>meta.code</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>c3</name><description>3.rd minimum distance to base spectrum given by one of the types (see enumeration)</description><unit>[a,b,c,d,e,g,h,n,o,p,t,u,w]</unit><ucd>meta.code</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>c4</name><description>4.th minimuml distance to base spectrum given by one of the types (see enumeration)</description><unit>[a,b,c,d,e,g,h,n,o,p,t,u,w]</unit><ucd>meta.code</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>c5</name><description>5.th minimum distance to base spectrum given by one of the types (see enumeration)</description><unit>[a,b,c,d,e,g,h,n,o,p,t,u,w]</unit><ucd>meta.code</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>c6</name><description>6.th minimum distance to base spectrum given by one of the types (see enumeration)</description><unit>[a,b,c,d,e,g,h,n,o,p,t,u,w]</unit><ucd>meta.code</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>c7</name><description>7.th minimum distance to base spectrum given by one of the types (see enumeration)</description><unit>[a,b,c,d,e,g,h,n,o,p,t,u,w]</unit><ucd>meta.code</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>c8</name><description>8.th minimum distance to base spectrum given by one of the types (see enumeration)</description><unit>[a,b,c,d,e,g,h,n,o,p,t,u,w]</unit><ucd>meta.code</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>c9</name><description>9.th minimum distance to base spectrum given by one of the types (see enumeration)</description><unit>[a,b,c,d,e,g,h,n,o,p,t,u,w]</unit><ucd>meta.code</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>c10</name><description>10.th minimum distance to base spectrum given by one of the types (see enumeration)</description><unit>[a,b,c,d,e,g,h,n,o,p,t,u,w]</unit><ucd>meta.code</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>c11</name><description>11.th minimum distance to base spectrum given by one of the types (see enumeration)</description><unit>[a,b,c,d,e,g,h,n,o,p,t,u,w]</unit><ucd>meta.code</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>c12</name><description>12.th minimum distance to base spectrum given by one of the types (see enumeration)</description><unit>[a,b,c,d,e,g,h,n,o,p,t,u,w]</unit><ucd>meta.code</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>c13</name><description>13.th minimum distance to base spectrum given by one of the types (see enumeration)</description><unit>[a,b,c,d,e,g,h,n,o,p,t,u,w]</unit><ucd>meta.code</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>c14</name><description>14.th minimum distance to base spectrum given by one of the types (see enumeration)</description><unit>[a,b,c,d,e,g,h,n,o,p,t,u,w]</unit><ucd>meta.code</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>c15</name><description>15.th minimum distance to base spectrum given by one of the types (see enumeration)</description><unit>[a,b,c,d,e,g,h,n,o,p,t,u,w]</unit><ucd>meta.code</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>c16</name><description>16.th minimum distance to base spectrum given by one of the types (see enumeration)</description><unit>[a,b,c,d,e,g,h,n,o,p,t,u,w]</unit><ucd>meta.code</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>c17</name><description>17.th minimum distance to base spectrum given by one of the types (see enumeration)</description><unit>[a,b,c,d,e,g,h,n,o,p,t,u,w]</unit><ucd>meta.code</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>c18</name><description>18.th minimum distance to base spectrum given by one of the types (see enumeration)</description><unit>[a,b,c,d,e,g,h,n,o,p,t,u,w]</unit><ucd>meta.code</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>c19</name><description>19.th minimum distance to base spectrum given by one of the types (see enumeration)</description><unit>[a,b,c,d,e,g,h,n,o,p,t,u,w]</unit><ucd>meta.code</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>c20</name><description>20.th minimum distance to base spectrum given by one of the types (see enumeration)</description><unit>[a,b,c,d,e,g,h,n,o,p,t,u,w]</unit><ucd>meta.code</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table></schema></tableset></ri:Resource>