<?xml-stylesheet href='/static/xsl/oai.xsl' type='text/xsl'?>
<ri:Resource created="2009-12-01T10:00:00" status="active" updated="2017-10-20T18:56:31" version="1.2" xmlns:ri="http://www.ivoa.net/xml/RegistryInterface/v1.0" xmlns:tr="http://www.ivoa.net/xml/TAPRegExt/v1.0" xmlns:vs="http://www.ivoa.net/xml/VODataService/v1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.ivoa.net/xml/TAPRegExt/v1.0 http://vo.ari.uni-heidelberg.de/docs/schemata/TAPRegExt.xsd http://www.ivoa.net/xml/VODataService/v1.1 http://vo.ari.uni-heidelberg.de/docs/schemata/VODataService.xsd" xsi:type="vs:CatalogService"><title>ChiVO TAP service</title><shortName>ChiVO TAP</shortName><identifier>ivo://chivo/tap</identifier><curation><publisher>ChiVO</publisher><creator><name>Equipo ChiVO</name><logo>/static/img/logo_chivo.png</logo></creator><date role="updated">2017-10-20T18:56:31</date><contact><name>Mauricio Solar</name><address>Vicuna Mackenna 3939, Santiago, Chile</address><email>msolar@inf.utfsm.cl</email></contact></curation><content><subject>Virtual observatory</subject><subject>Catalogs</subject><subject>ADQL</subject><description>The ChiVO'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: alma_fits from the alma_fits schema, m83_obs from the m83_test1 schema, m83_obs from the m83_data schema, hd163296band6 from the hd163296band6 schema, columns, groups, key_columns, keys, schemas, tables from the tap_schema schema, main from the arihip schema, main from the tgas schema, dr1 from the gaia schema, data from the openngc schema, emptyobscore, obscore from the ivoa schema.</description><referenceURL>https://vo.chivo.cl/__system__/tap/run/info</referenceURL><relationship><relationshipType>service-for</relationshipType><relatedResource ivo-id="ivo://chivo/alma_fits/q/import_content">ChiVO Data Provider for ALMA FITS</relatedResource><relatedResource ivo-id="ivo://chivo/openngc/q/data">OpenNGC</relatedResource><relatedResource ivo-id="ivo://chivo/gaia/q/dr1">GAIA Data Release 1 (DR1) main object table</relatedResource><relatedResource ivo-id="ivo://chivo/tgas/q/main">TGAS catalogue</relatedResource></relationship></content><capability standardID="ivo://ivoa.net/std/TAP" xsi:type="tr:TableAccess"><interface role="std" xsi:type="vs:ParamHTTP"><accessURL use="base">https://vo.chivo.cl/tap</accessURL></interface><dataModel ivo-id="ivo://ivoa.net/std/ObsCore#table-1.1">Obscore-1.1</dataModel><language><name>ADQL</name><version ivo-id="ivo://ivoa.net/std/ADQL#v2.0">2.0</version><description>ADQL 2.0</description><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-udf"><feature><form>gavo_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 applications.</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>ivo_healpix_center(hpxOrder INTEGER, hpxIndex BIGINT) -&gt; POINT</form><description>returns a POINT corresponding to the center of the healpix with
the given index at the given order.</description></feature><feature><form>ivo_string_agg(expression TEXT, delimiter TEXT) -&gt; TEXT</form><description>An aggregate function returning all values of
expression within a GROUP contcatenated with delimiter</description></feature><feature><form>gavo_to_jd(d TIMESTAMP) -&gt; DOUBLE PRECISION</form><description>The function converts a postgres timestamp to julian date.
This is naive; no corrections for timezones, let alone time
scales or the like are done; you can thus not expect this to be
good to second-precision unless you are careful in the construction
of the timestamp.</description></feature><feature><form>gavo_to_mjd(d TIMESTAMP) -&gt; DOUBLE PRECISION</form><description>The function converts a postgres timestamp to modified julian date.
This is naive; no corrections for timezones, let alone time
scales or the like are done; you can thus not expect this to be
good to second-precision unless you are careful in the construction
of the timestamp.</description></feature><feature><form>ivo_healpix_index(order INTEGER, ra DOUBLE PRECISION, dec DOUBLE PRECISION) -&gt; BIGINT</form><description>Returns the index of the (nest) healpix with order containing the 
spherical point (ra, dec).

An alternative, 2-argument form 

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

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

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

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

On this site, this is actually implemented using python's and SQL's
LOWER, so for everything except ASCII, your milage will vary.</description></feature><feature><form>ivo_hasword(haystack TEXT, needle TEXT) -&gt; INTEGER</form><description>gavo_hasword returns 1 if needle shows up in haystack, 0 otherwise.  This
is for "google-like"-searches in text-like fields.  In word, you can
actually employ a fairly complex query language; see
http://www.postgresql.org/docs/8.3/static/textsearch.html
for details.</description></feature></languageFeatures><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adqlgeo"><feature><form>BOX</form></feature><feature><form>POINT</form></feature><feature><form>CIRCLE</form></feature><feature><form>POLYGON</form></feature><feature><form>REGION</form></feature><feature><form>CENTROID</form></feature><feature><form>COORD1</form></feature><feature><form>COORD2</form></feature><feature><form>DISTANCE</form></feature><feature><form>CONTAINS</form></feature><feature><form>INTERSECTS</form></feature><feature><form>AREA</form></feature></languageFeatures></language><outputFormat ivo-id="ivo://ivoa.net/std/TAPRegExt#output-votable-binary"><mime>text/xml</mime></outputFormat><outputFormat><mime>text/html</mime><alias>html</alias></outputFormat><outputFormat ivo-id="ivo://ivoa.net/std/TAPRegExt#output-votable-binary2"><mime>application/x-votable+xml;serialization=binary2</mime><alias>votable/b2</alias></outputFormat><outputFormat><mime>application/geo-json</mime><alias>geojson</alias></outputFormat><outputFormat><mime>application/fits</mime><alias>fits</alias></outputFormat><outputFormat><mime>text/csv</mime></outputFormat><outputFormat><mime>text/csv;header=present</mime><alias>csv</alias></outputFormat><outputFormat ivo-id="ivo://ivoa.net/std/TAPRegEXT#output-votable-td"><mime>application/x-votable+xml;serialization=tabledata</mime><alias>votable/td</alias></outputFormat><outputFormat><mime>application/json</mime><alias>json</alias></outputFormat><outputFormat ivo-id="ivo://ivoa.net/std/TAPRegExt#output-votable-binary"><mime>application/x-votable+xml</mime><alias>votable</alias></outputFormat><outputFormat><mime>text/plain</mime></outputFormat><outputFormat><mime>text/tab-separated-values</mime><alias>tsv</alias></outputFormat><uploadMethod ivo-id="ivo://ivoa.net/std/TAPRegExt#upload-https"/><uploadMethod ivo-id="ivo://ivoa.net/std/TAPRegExt#upload-ftp"/><uploadMethod ivo-id="ivo://ivoa.net/std/TAPRegExt#upload-inline"/><uploadMethod ivo-id="ivo://ivoa.net/std/TAPRegExt#upload-http"/><retentionPeriod><default>172800</default></retentionPeriod><executionDuration><default>3600</default></executionDuration><outputLimit><default unit="row">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">https://vo.chivo.cl/__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">https://vo.chivo.cl/__system__/tap/run/capabilities</accessURL></interface></capability><capability standardID="ivo://ivoa.net/std/VOSI#tables"><interface role="std" xsi:type="vs:ParamHTTP"><accessURL use="full">https://vo.chivo.cl/__system__/tap/run/tableMetadata</accessURL></interface></capability><tableset><schema><name>alma_fits</name><title>ChiVO Data Provider for ALMA FITS</title><description> The resource contains the recommendations and requirements for ALMA
FITS products of the Inter-ARC ALMA Science Archive Working Group
(ASAWG) with the view to including a metadataset that is complete and
easily accessible by the ChiVO Data Provider (CDP).</description><table><name>alma_fits.alma_fits</name><description> The resource contains the recommendations and requirements for ALMA
FITS products of the Inter-ARC ALMA Science Archive Working Group
(ASAWG) with the view to including a metadataset that is complete and
easily accessible by the ChiVO Data Provider (CDP) and ALMA Archives.</description><column><name>accref</name><description>Access key for the data</description><utype>Access.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>owner</name><description>Owner of the data</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>embargo</name><description>Date the data will become/became public</description><unit>a</unit><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>mime</name><description>MIME type of the file served</description><utype>Access.Format</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>accsize</name><description>Size of the data in bytes</description><unit>byte</unit><ucd>VOX:Image_FileSize</ucd><utype>Access.Size</utype><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>centeralpha</name><description>Approximate center of image, RA</description><unit>deg</unit><ucd>POS_EQ_RA_MAIN</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>centerdelta</name><description>Approximate center of image, Dec</description><unit>deg</unit><ucd>POS_EQ_DEC_MAIN</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>imagetitle</name><description>Synthetic name of the image</description><ucd>VOX:Image_Title</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>instid</name><description>Identifier of the originating instrument</description><ucd>INST_ID</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>dateobs</name><description>Epoch at midpoint of observation</description><unit>d</unit><ucd>VOX:Image_MJDateObs</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>naxes</name><description>Number of axes in data</description><ucd>VOX:Image_Naxes</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>pixelsize</name><description>Number of pixels along each of the axes</description><unit>pix</unit><ucd>VOX:Image_Naxis</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>pixelscale</name><description>The pixel scale on each image axis</description><unit>deg/pix</unit><ucd>VOX:Image_Scale</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>refframe</name><description>Coordinate system reference frame</description><ucd>VOX:STC_CoordRefFrame</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>wcs_equinox</name><description>Equinox of the given coordinates</description><unit>yr</unit><ucd>VOX:STC_CoordEquinox</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>wcs_projection</name><description>FITS WCS projection type</description><ucd>VOX:WCS_CoordProjection</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>wcs_refpixel</name><description>WCS reference pixel</description><unit>pix</unit><ucd>VOX:WCS_CoordRefPixel</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>wcs_refvalues</name><description>World coordinates at WCS reference pixel</description><unit>deg</unit><ucd>VOX:WCS_CoordRefValue</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>wcs_cdmatrix</name><description>FITS WCS CDij matrix</description><unit>deg/pix</unit><ucd>VOX:WCS_CDMatrix</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>bandpassid</name><description>Freeform name of the bandpass used</description><ucd>VOX:BandPass_ID</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>bandpassunit</name><description>Unit of bandpass specifications (always m).</description><ucd>VOX:BandPass_Unit</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>bandpassrefval</name><description>Characteristic quantity for the bandpass of the image</description><unit>m</unit><ucd>VOX:BandPass_RefValue</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>bandpasshi</name><description>Upper limit of the bandpass (in BandPass_Unit units)</description><unit>m</unit><ucd>VOX:BandPass_HiLimit</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>bandpasslo</name><description>Lower limit of the bandpass (in BandPass_Unit units)</description><unit>m</unit><ucd>VOX:BandPass_LoLimit</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>pixflags</name><description>Flags specifying the processing done (C-original; F-resampled; Z-fluxes valid; X-not resampled; V-for display only</description><ucd>VOX:Image_PixFlags</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>coverage</name><description>Field covered by the image</description><unit>deg</unit><dataType arraysize="*" xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>target_name</name><description>Name for source observed.</description><ucd>meta.id;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>file_name</name><description>Name of the file FITS.</description><ucd>meta.id;meta.file;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_url</name><description>URL of the data file.</description><ucd>meta.ref.url;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>naxis</name><description>Number of axes in the associated data array.</description><ucd>pos.wcs.naxis;meta.main</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>naxisn</name><description>Number of elements along axis n of a data array (n = 1-NAXIS). ASA data must have four NAXIS terms.</description><ucd>pos.wcs.naxisn;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>date_obs</name><description>Observation start time.</description><ucd>time.epoch;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>s_ra</name><description>The Right Ascension coordinate of image center, in the system specified in EQUINOX and RADESYS.</description><ucd>pos.eq.ra;meta.main</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>s_dec</name><description>The Declination coordinate of image center, in the in the system specified in EQUINOX and RADESYS.</description><ucd>pos.eq.dec;meta.main</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>specsys</name><description>Reference frame for freq axis.</description><ucd>pos.eq.specsys;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>radesys</name><description>Name of the reference frame of equatorial or ecliptic coordinates.</description><ucd>pos.eq.radesys;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>restfrq</name><description>ontingent on the type of measurements being made: For transition line measurements: the rest frequency of the of the spectral feature of interest in Hz. For continuum measurements: the centre of the band of the spectral window.</description><ucd>pos.eq.restfrq;meta.main</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>obsgeo_x</name><description>Xâcoordinate in cartesian geocentric terrestrial reference frame, specifying the location the observation took place at time given in MJD-AVG.</description><ucd>pos.cartesian.x;meta.main</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>obsgeo_y</name><description>Yâcoordinate in cartesian geocentric terrestrial reference frame, specifying the location the observation took place at time given in MJD-AVG.</description><ucd>pos.cartesian.y;meta.main</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>obsgeo_z</name><description>Zâcoordinate in cartesian geocentric terrestrial reference frame, specifying the location the observation took place at time given in MJD-AVG.</description><ucd>pos.cartesian.y;meta.main</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>mous</name><description>Member observing unit set status uid.</description><ucd>meta.mous;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>gous</name><description>Group observing unit set status uid.</description><ucd>meta.gous;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>lonpole</name><description>Longitude in the coordinate system of celestial systemâs north pole.</description><ucd>meta.lonpole;meta.main</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>latpole</name><description>Latitude in the coordinate system of celestial systemâs north pole.</description><ucd>meta.latpole;meta.main</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>instrument_name</name><description>The receiver band used for the image observations.</description><ucd>meta.id;instr;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table></schema><schema><name>gaia</name><title>Gaia Data Release 1 (DR1)</title><description> The Gaia satellite takes high-precision astrometry of a large number
of astronomical objects. This data collection mirrors the larger
tables released by DPAC.</description><table><name>gaia.dr1</name><title>GAIA Data Release 1 (DR1) main object table</title><description> This table, corresponding to gaia_source of the full DR1, contains
the 1.15 billion objects reliably detected in the first 14 months of
Gaia observations. It essentially consists of high-precision positions
and magnitudes. The TGAS subset (about 2 million objects observed by
both Gaia and Hipparcos) has proper motions and parallaxes. Users are
advised to beware strong correlations between the astrometric
parameters present for some of the less densely observed objects and
the inhomogeneous coverage in this first data release (solution id:
1635378410781933568).</description><column><name>source_id</name><description>Unique source identifier</description><ucd>meta.id;meta.main</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>ra</name><description>Barycentric Right Ascension in ICRS at ref_epoch</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>dec</name><description>Barycentric Declination in ICRS at ref_epoch</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ra_error</name><description>Standard error of ra (with cos δ applied).</description><unit>mas</unit><ucd>stat.error;pos.eq.ra</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>dec_error</name><description>Standard error of dec</description><unit>mas</unit><ucd>stat.error;pos.eq.dec</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>l</name><description>Galactic longitude (converted from ra, dec)</description><unit>deg</unit><ucd>pos.galactic.lon</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>b</name><description>Galactic latitude (converted from ra, dec)</description><unit>deg</unit><ucd>pos.galactic.lat</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>pmra</name><description>Proper motion in right ascension of the source in ICRS at ref_epoch. This is the projection of the proper motion vector in the direction of increasing right ascension.</description><unit>mas/yr</unit><ucd>pos.pm;pos.eq.ra</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>pmdec</name><description>Proper motion in declination at ref_epoch.</description><unit>mas/yr</unit><ucd>pos.pm;pos.eq.dec</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>pmra_error</name><description>Standard error of pmra</description><unit>mas/yr</unit><ucd>stat.error;pos.pm;pos.eq.ra</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>pmdec_error</name><description>Standard error of pmdec</description><unit>mas/yr</unit><ucd>stat.error;pos.pm;pos.eq.dec</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>parallax</name><description>Absolute barycentric stellar parallax of the source at the reference epoch ref_epoch</description><unit>mas</unit><ucd>pos.parallax</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>parallax_error</name><description>Standard error of parallax</description><unit>mas</unit><ucd>stat.error;pos.parallax</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>phot_g_mean_mag</name><description>Mean magnitude in the G band. This is computed from the G-band mean flux applying the magnitude zero-point in the Vega scale.</description><unit>mag</unit><ucd>phot.mag;em.opt;stat.mean</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>phot_g_mean_flux</name><description>G-band mean flux as electrons per second.</description><unit>s**-1</unit><ucd>phot.flux;em.opt;stat.mean</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>phot_g_mean_flux_error</name><description>Error on phot_g_mean_flux</description><unit>s**-1</unit><ucd>stat.error;phot.flux;em.opt;stat.mean</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>phot_g_n_obs</name><description>Number of observations contributing to G photometry</description><ucd>meta.number</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><column><name>phot_variable_flag</name><description>Photometric variability flag</description><ucd>meta.code;src.var</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ref_epoch</name><description>Reference epoch to which the astrometic source parameters are referred, expressed as a Julian Year in TCB.</description><unit>yr</unit><ucd>meta.ref;time.epoch</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>astrometric_delta_q</name><description>Hipparcos/Gaia data discrepancy (Hipparcos subset of TGAS only)</description><ucd>stat.value</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>astrometric_excess_noise</name><description>Excess noise of the source</description><unit>mas</unit><ucd>stat.value</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>astrometric_excess_noise_sig</name><description>Significance of excess noise</description><ucd>stat.value</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>astrometric_n_obs_ac</name><description>Total number of observations AC</description><ucd>meta.number</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType></column><column><name>astrometric_n_obs_al</name><description>Total number of observations AL</description><ucd>meta.number</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType></column><column><name>astrometric_n_bad_obs_ac</name><description>Number of bad observations AC</description><ucd>meta.number</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType></column><column><name>astrometric_n_bad_obs_al</name><description>Number of bad observations AL</description><ucd>meta.number</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType></column><column><name>astrometric_n_good_obs_ac</name><description>Number of good observations AC</description><ucd>meta.number</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType></column><column><name>astrometric_n_good_obs_al</name><description>Number of good observations AL</description><ucd>meta.number</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType></column><column><name>astrometric_primary_flag</name><description>Only primary sources (for which this flag is True) contribute to the estimation of attitude, calibration, and global parameters. The estimation of source parameters is not affected by primariness.</description><ucd>meta.code</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType></column><column><name>matched_observations</name><description>The number of observations (detection transits) that have been matched to a given source during the last internal crossmatch revision.</description><ucd>meta.number</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType></column><column><name>astrometric_priors_used</name><description>Type of prior used in in the astrometric solution</description><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><column><name>astrometric_relegation_factor</name><description>Relegation factor of the source calculated as per Eq. (118) in 2012A&amp;A...538A..78L used for the primary selection process.</description><ucd>arith.factor</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>astrometric_weight_ac</name><description>Mean astrometric weight of the source</description><unit>mas**-2</unit><ucd>stat.weight;stat.mean</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>astrometric_weight_al</name><description>Mean astrometric weight of the source</description><unit>mas**-2</unit><ucd>stat.weight;stat.mean</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>duplicated_source</name><description>During data processing, this source happened to been duplicated and one source only has been kept.</description><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType></column><column><name>ra_dec_corr</name><description>Correlation between right ascension and declination</description><ucd>stat.correlation</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ra_pmra_corr</name><description>Correlation between right ascension and proper motion in right ascension</description><ucd>stat.correlation</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ra_pmdec_corr</name><description>Correlation between right ascension and proper motion in declination</description><ucd>stat.correlation</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>dec_pmra_corr</name><description>Correlation between declination and proper motion in right ascension</description><ucd>stat.correlation</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>dec_pmdec_corr</name><description>Correlation between declination and proper motion in declination</description><ucd>stat.correlation</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>pmra_pmdec_corr</name><description>Correlation between proper motion in right ascension and proper motion in declination</description><ucd>stat.correlation</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ra_parallax_corr</name><description>Correlation between right ascension and parallax</description><ucd>stat.correlation</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>dec_parallax_corr</name><description>Correlation between declination and parallax</description><ucd>stat.correlation</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>parallax_pmra_corr</name><description>Correlation between parallax and proper motion in right ascension</description><ucd>stat.correlation</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>parallax_pmdec_corr</name><description>Correlation between parallax and proper motion in declination</description><ucd>stat.correlation</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>scan_direction_mean_k1</name><description>Mean position angle of scan directions across the source</description><unit>deg</unit><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>scan_direction_strength_k1</name><description>Degree of concentration of scan directions across the source</description><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>scan_direction_mean_k2</name><description>Mean position angle of scan directions across the source</description><unit>deg</unit><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>scan_direction_strength_k2</name><description>Degree of concentration of scan directions across the source</description><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>scan_direction_mean_k3</name><description>Mean position angle of scan directions across the source</description><unit>deg</unit><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>scan_direction_strength_k3</name><description>Degree of concentration of scan directions across the source</description><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>scan_direction_mean_k4</name><description>Mean position angle of scan directions across the source</description><unit>deg</unit><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>scan_direction_strength_k4</name><description>Degree of concentration of scan directions across the source</description><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>random_index</name><description>Random index that can be used to deterministically select subsets</description><ucd>meta.code</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType></column></table></schema><schema><name>ivoa</name><description>Definition and support code for the ObsCore data model and table.</description><table><name>ivoa.obscore</name><description>The IVOA-defined obscore table, containing generic metadata for
datasets within this datacenter.</description><column><name>dataproduct_type</name><description>High level scientific classification of the data product, taken from an enumeration</description><ucd>meta.id</ucd><utype>obscore:obs.dataproducttype</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>dataproduct_subtype</name><description>Data product specific type</description><ucd>meta.id</ucd><utype>obscore:obs.dataproductsubtype</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>calib_level</name><description>Amount of data processing that has been applied to the data</description><ucd>meta.code;obs.calib</ucd><utype>obscore:obs.caliblevel</utype><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType></column><column><name>obs_collection</name><description>Name of a data collection (e.g., project name) this data belongs to</description><ucd>meta.id</ucd><utype>obscore:dataid.collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>obs_id</name><description>Unique identifier for an observation</description><ucd>meta.id</ucd><utype>obscore:DataID.observationID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>obs_title</name><description>Free-from title of the data set</description><ucd>meta.title;obs</ucd><utype>obscore:dataid.title</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>obs_publisher_did</name><description>Dataset identifier assigned by the publisher.</description><ucd>meta.ref.url;meta.curation</ucd><utype>obscore:curation.publisherdid</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>obs_creator_did</name><description>Dataset identifier assigned by the creator.</description><ucd>meta.id</ucd><utype>obscore:dataid.creatordid</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_url</name><description>The URL at which to obtain the data set.</description><ucd>meta.ref.url</ucd><utype>obscore:access.reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_format</name><description>MIME type of the resource at access_url</description><ucd>meta.code.mime</ucd><utype>obscore:access.format</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_estsize</name><description>Estimated size of data product</description><unit>kbyte</unit><ucd>phys.size;meta.file</ucd><utype>obscore:access.size</utype><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>target_name</name><description>Object a targeted observation targeted</description><ucd>meta.id;src</ucd><utype>obscore:Target.Name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>target_class</name><description>Class of the target object (star, QSO, ...)</description><ucd>src.class</ucd><utype>obscore:target.class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>s_ra</name><description>RA of (center of) observation, ICRS</description><unit>deg</unit><ucd>pos.eq.ra</ucd><utype>obscore:char.spatialaxis.coverage.location.coord.position2d.value2.c1</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>s_dec</name><description>Dec of (center of) observation, ICRS</description><unit>deg</unit><ucd>pos.eq.dec</ucd><utype>obscore:char.spatialaxis.coverage.location.coord.position2d.value2.c2</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>s_fov</name><description>Approximate spatial extent for the region covered by the observation</description><unit>deg</unit><ucd>phys.angSize;instr.fov</ucd><utype>obscore:char.spatialaxis.coverage.bounds.extent.diameter</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>s_region</name><description>Region covered by the observation, as a polygon</description><ucd>phys.angArea;obs</ucd><utype>obscore:char.spatialaxis.coverage.support.area</utype><dataType arraysize="*" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>s_resolution</name><description>Best spatial resolution within the data set</description><unit>arcsec</unit><ucd>pos.angResolution</ucd><utype>obscore:Char.SpatialAxis.Resolution.refval</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>t_min</name><description>Lower bound of times represented in the data set, as MJD</description><unit>d</unit><ucd>time.start;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.interval.starttime</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>t_max</name><description>Upper bound of times represented in the data set, as MJD</description><unit>d</unit><ucd>time.end;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.interval.stoptime</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>t_exptime</name><description>Total exporure time</description><unit>s</unit><ucd>time.duration;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.support.extent</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>t_resolution</name><description>Minimal significant time interval along the time axis</description><unit>s</unit><ucd>time.resolution</ucd><utype>obscore:char.timeaxis.resolution.refval</utype><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>em_min</name><description>Minimal wavelength represented within the data set</description><unit>m</unit><ucd>em.wl;stat.min</ucd><utype>obscore:char.spectralaxis.coverage.bounds.limits.interval.lolim</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>em_max</name><description>Maximal wavelength represented within the data set</description><unit>m</unit><ucd>em.wl;stat.max</ucd><utype>obscore:char.spectralaxis.coverage.bounds.limits.interval.hilim</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>em_res_power</name><description>Spectral resolving power delta lambda/lamda</description><ucd>spect.resolution</ucd><utype>obscore:char.spectralaxis.resolution.resolpower.refval</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>o_ucd</name><description>UCD for the product's observable</description><ucd>meta.ucd</ucd><utype>obscore:char.observableaxis.ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>pol_states</name><description>List of polarization states in the data set</description><ucd>meta.code;phys.polarization</ucd><utype>obscore:Char.PolarizationAxis.stateList</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>facility_name</name><description>Name of the facility at which data was taken</description><ucd>meta.id;instr.tel</ucd><utype>obscore:Provenance.ObsConfig.facility.name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>instrument_name</name><description>Name of the instrument that produced the data</description><ucd>meta.id;instr</ucd><utype>obscore:Provenance.ObsConfig.instrument.name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>s_xel1</name><description>Number of elements (typically pixels) along the first spatial axis.</description><ucd>meta.number</ucd><utype>obscore:Char.SpatialAxis.numBins1</utype><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>s_xel2</name><description>Number of elements (typically pixels) along the second spatial axis.</description><ucd>meta.number</ucd><utype>obscore:Char.SpatialAxis.numBins1</utype><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>t_xel</name><description>Number of elements (typically pixels) along the time axis.</description><ucd>meta.number</ucd><utype>obscore:Char.TimeAxis.numBins</utype><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>em_xel</name><description>Number of elements (typically pixels) along the spectral axis.</description><ucd>meta.number</ucd><utype>obscore:Char.SpectralAxis.numBins</utype><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>pol_xel</name><description>Number of elements (typically pixels) along the polarization axis.</description><ucd>meta.number</ucd><utype>obscore:Char.SpectralAxis.numBins</utype><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>s_pixel_scale</name><description>Sampling period in world coordinate units along the spatial axis</description><unit>arcsec</unit><ucd>phys.angSize;instr.pixel</ucd><utype>obscore:Char.SpatialAxis.Sampling.RefVal.SamplingPeriod</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>em_ucd</name><description>Nature of the product's spectral axis</description><ucd>meta.ucd</ucd><utype>obscore:Char.SpectralAxis.ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table></schema><schema><name>openngc</name><title>OpenNGC</title><description> OpenNGC is a database containing positions and main data of NGC (New
General Catalogue) and IC (Index Catalogue) objects. It has been built
by merging data from NED, HyperLEDA, SIMBAD, and several databases
available at HEASARC.

In this VO publication, we have changed most of the column names,
mostly to make them work as ADQL column names without resorting to
delimited identifiers. The mapping should be obvious.</description><table><name>openngc.data</name><description> OpenNGC is a database containing positions and main data of NGC (New
General Catalogue) and IC (Index Catalogue) objects. It has been built
by merging data from NED, HyperLEDA, SIMBAD, and several databases
available at HEASARC.

In this VO publication, we have changed most of the column names,
mostly to make them work as ADQL column names without resorting to
delimited identifiers. The mapping should be obvious.</description><column><name>name</name><description>Object identifier, either from NGC or from IC.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>obj_type</name><description>Object Type. See note for terms and symbols used.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>raj2000</name><description>Right Ascension in ICRS for Epoch J2000.0.</description><unit>deg</unit><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>dej2000</name><description>Declination in ICRS for Epoch J2000.0.</description><unit>deg</unit><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>constellation</name><description>Constellation the object is located in.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>maj_ax_deg</name><description>Major axis of covering ellipsoid.</description><unit>deg</unit><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>min_ax_deg</name><description>Minor axis of covering ellipsoid.</description><unit>deg</unit><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>pos_ang</name><description>Position angle of covering ellipsoid, north over east.</description><unit>deg</unit><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>mag_b</name><description>Apparent total magnitude in the B Band.</description><unit>mag</unit><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>mag_v</name><description>Apparent total magnitude in the V Band.</description><unit>mag</unit><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>mag_j</name><description>Apparent total magnitude in the J Band.</description><unit>mag</unit><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>mag_h</name><description>Apparent total magnitude in the H Band.</description><unit>mag</unit><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>mag_k</name><description>Apparent total magnitude in the K Band.</description><unit>mag</unit><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>surf_br_b</name><description>Mean surface brigthness within the 25 mag isophote (B-band); only given for galaxies</description><unit>mag/arcsec**2</unit><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>hubble_type</name><description>Morphological Hubble type for galaxies.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>cstar_mag_u</name><description>For planetary nebulae: Apparent magnitude of the central star in the U Band.</description><unit>mag</unit><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>cstar_mag_b</name><description>For planetary nebulae: Apparent magnitude of the central star in the B Band.</description><unit>mag</unit><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>cstar_mag_v</name><description>For planetary nebulae: Apparent magnitude of the central star in the V Band.</description><unit>mag</unit><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>messier_nr</name><description>Messier number for this object</description><dataType arraysize="1" xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>other_ngc</name><description>Other NGC number for this object in case it was duplicated in IC or NCG.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ic_cross</name><description>Other IC number for this object in case it was duplicated in IC or NCG.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>cstar_id</name><description>Identifier of the central star for planetary nebulae.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>other_id</name><description>Cross reference to other catalogs.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>comname</name><description>Common name(s) of the object.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ned_notes</name><description>Notes about the object exported from NED</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>notes</name><description>Notes about the object from OpenNGC</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table></schema><schema><name>tap_schema</name><description> ChiVO's Table Access Protocol (TAP) service with
table metadata.</description><table><name>tap_schema.schemas</name><description>Schemas containing tables available for ADQL querying.</description><column><name>schema_name</name><description>Fully qualified schema name</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>description</name><description>Brief description of the schema</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>utype</name><description>utype if schema corresponds to a data model</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>tap_schema.tables</name><description>Tables available for ADQL querying.</description><column><name>schema_name</name><description>Fully qualified schema name</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>table_name</name><description>Fully qualified table name</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>table_type</name><description>One of: table, view</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>description</name><description>Brief description of the table</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>utype</name><description>utype if the table corresponds to a data model</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>table_index</name><description>Suggested position this table should take in a sorted list of tables from this data center</description><dataType arraysize="1" 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></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 arraysize="1" xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>principal</name><description>Is column principal?</description><dataType arraysize="1" xsi:type="vs:VOTableType">int</dataType></column><column><name>indexed</name><description>Is there an index on this column?</description><dataType arraysize="1" xsi:type="vs:VOTableType">int</dataType></column><column><name>std</name><description>Is this a standard column?</description><dataType arraysize="1" xsi:type="vs:VOTableType">int</dataType></column><column><name>sourcerd</name><description>Id of the originating rd (local information)</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>column_index</name><description>1-based index of the column in database order.</description><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><foreignKey><targetTable>tap_schema.tables</targetTable><fkColumn><fromColumn>table_name</fromColumn><targetColumn>table_name</targetColumn></fkColumn></foreignKey></table><table><name>tap_schema.keys</name><description>Foreign key relationships between tables available for ADQL querying.</description><column><name>key_id</name><description>Unique key identifier</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>from_table</name><description>Fully qualified table name</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>target_table</name><description>Fully qualified table name</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>description</name><description>Description of this key</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>utype</name><description>Utype of this key</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>sourcerd</name><description>Id of the originating rd (local information)</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>tap_schema.key_columns</name><description>Columns participating in foreign key relationships between tables
available for ADQL querying.</description><column><name>key_id</name><description>Key identifier from TAP_SCHEMA.keys</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>from_column</name><description>Key column name in the from table</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>target_column</name><description>Key column in the target table</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>sourcerd</name><description>Id of the originating rd (local information)</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>tap_schema.groups</name><description>Columns that are part of groups within tables available for ADQL
querying.</description><column><name>table_name</name><description>Fully qualified table name</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>column_name</name><description>Name of a column belonging to the group</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>column_utype</name><description>utype the column withing the group</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>group_name</name><description>Name of the group</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>group_utype</name><description>utype of the group</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>sourcerd</name><description>Id of the originating rd (local information)</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><foreignKey><targetTable>tap_schema.tables</targetTable><fkColumn><fromColumn>table_name</fromColumn><targetColumn>table_name</targetColumn></fkColumn></foreignKey></table></schema><schema><name>tgas</name><title>TGAS catalogue</title><description> This table is a subset of GaiaSource comprising those stars in the
Hipparcos and Tycho-2 Catalogues for which a full 5-parameter
astrometric solution has been possible in Gaia Data Release 1. This is
possible because the early Hipparcos epoch positions break some
degeneracies due to the limited Gaia time coverage. This table
contains a substantial fraction of the around 2.5 million stars in the
Hipparcos and Tycho-2 catalogue. Many stars have been excluded due to
several reasons, such as saturation, cross-match errors or bad
astrometric solution. All rows have Gaia solution id
1635378410781933568.</description><table><name>tgas.main</name><description> This table is a subset of GaiaSource comprising those stars in the
Hipparcos and Tycho-2 Catalogues for which a full 5-parameter
astrometric solution has been possible in Gaia Data Release 1. This is
possible because the early Hipparcos epoch positions break some
degeneracies due to the limited Gaia time coverage. This table
contains a substantial fraction of the around 2.5 million stars in the
Hipparcos and Tycho-2 catalogue. Many stars have been excluded due to
several reasons, such as saturation, cross-match errors or bad
astrometric solution. All rows have Gaia solution id
1635378410781933568.</description><column><name>source_id</name><description>Unique source identifier</description><ucd>meta.id;meta.main</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>ra</name><description>Barycentric Right Ascension in ICRS at ref_epoch</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>dec</name><description>Barycentric Declination in ICRS at ref_epoch</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ra_error</name><description>Standard error of ra (with cos δ applied).</description><unit>mas</unit><ucd>stat.error;pos.eq.ra</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>dec_error</name><description>Standard error of dec</description><unit>mas</unit><ucd>stat.error;pos.eq.dec</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>l</name><description>Galactic longitude (converted from ra, dec)</description><unit>deg</unit><ucd>pos.galactic.lon</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>b</name><description>Galactic latitude (converted from ra, dec)</description><unit>deg</unit><ucd>pos.galactic.lat</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>pmra</name><description>Proper motion in right ascension of the source in ICRS at ref_epoch. This is the projection of the proper motion vector in the direction of increasing right ascension.</description><unit>mas/yr</unit><ucd>pos.pm;pos.eq.ra</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>pmdec</name><description>Proper motion in declination at ref_epoch.</description><unit>mas/yr</unit><ucd>pos.pm;pos.eq.dec</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>pmra_error</name><description>Standard error of pmra</description><unit>mas/yr</unit><ucd>stat.error;pos.pm;pos.eq.ra</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>pmdec_error</name><description>Standard error of pmdec</description><unit>mas/yr</unit><ucd>stat.error;pos.pm;pos.eq.dec</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>parallax</name><description>Absolute barycentric stellar parallax of the source at the reference epoch ref_epoch</description><unit>mas</unit><ucd>pos.parallax</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>parallax_error</name><description>Standard error of parallax</description><unit>mas</unit><ucd>stat.error;pos.parallax</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>phot_g_mean_mag</name><description>Mean magnitude in the G band. This is computed from the G-band mean flux applying the magnitude zero-point in the Vega scale.</description><unit>mag</unit><ucd>phot.mag;em.opt;stat.mean</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>phot_g_mean_flux</name><description>G-band mean flux as electrons per second.</description><unit>s**-1</unit><ucd>phot.flux;em.opt;stat.mean</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>phot_g_mean_flux_error</name><description>Error on phot_g_mean_flux</description><unit>s**-1</unit><ucd>stat.error;phot.flux;em.opt;stat.mean</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>phot_g_n_obs</name><description>Number of observations contributing to G photometry</description><ucd>meta.number</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><column><name>phot_variable_flag</name><description>Photometric variability flag</description><ucd>meta.code;src.var</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ref_epoch</name><description>Reference epoch to which the astrometic source parameters are referred, expressed as a Julian Year in TCB.</description><unit>yr</unit><ucd>meta.ref;time.epoch</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>astrometric_delta_q</name><description>Hipparcos/Gaia data discrepancy (Hipparcos subset of TGAS only)</description><ucd>stat.value</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>astrometric_excess_noise</name><description>Excess noise of the source</description><unit>mas</unit><ucd>stat.value</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>astrometric_excess_noise_sig</name><description>Significance of excess noise</description><ucd>stat.value</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>astrometric_n_obs_ac</name><description>Total number of observations AC</description><ucd>meta.number</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType></column><column><name>astrometric_n_obs_al</name><description>Total number of observations AL</description><ucd>meta.number</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType></column><column><name>astrometric_n_bad_obs_ac</name><description>Number of bad observations AC</description><ucd>meta.number</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType></column><column><name>astrometric_n_bad_obs_al</name><description>Number of bad observations AL</description><ucd>meta.number</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType></column><column><name>astrometric_n_good_obs_ac</name><description>Number of good observations AC</description><ucd>meta.number</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType></column><column><name>astrometric_n_good_obs_al</name><description>Number of good observations AL</description><ucd>meta.number</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType></column><column><name>astrometric_primary_flag</name><description>Only primary sources (for which this flag is True) contribute to the estimation of attitude, calibration, and global parameters. The estimation of source parameters is not affected by primariness.</description><ucd>meta.code</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType></column><column><name>matched_observations</name><description>The number of observations (detection transits) that have been matched to a given source during the last internal crossmatch revision.</description><ucd>meta.number</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType></column><column><name>astrometric_priors_used</name><description>Type of prior used in in the astrometric solution</description><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><column><name>astrometric_relegation_factor</name><description>Relegation factor of the source calculated as per Eq. (118) in 2012A&amp;A...538A..78L used for the primary selection process.</description><ucd>arith.factor</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>astrometric_weight_ac</name><description>Mean astrometric weight of the source</description><unit>mas**-2</unit><ucd>stat.weight;stat.mean</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>astrometric_weight_al</name><description>Mean astrometric weight of the source</description><unit>mas**-2</unit><ucd>stat.weight;stat.mean</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>duplicated_source</name><description>During data processing, this source happened to been duplicated and one source only has been kept.</description><dataType arraysize="1" xsi:type="vs:VOTableType">short</dataType></column><column><name>ra_dec_corr</name><description>Correlation between right ascension and declination</description><ucd>stat.correlation</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ra_pmra_corr</name><description>Correlation between right ascension and proper motion in right ascension</description><ucd>stat.correlation</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ra_pmdec_corr</name><description>Correlation between right ascension and proper motion in declination</description><ucd>stat.correlation</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>dec_pmra_corr</name><description>Correlation between declination and proper motion in right ascension</description><ucd>stat.correlation</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>dec_pmdec_corr</name><description>Correlation between declination and proper motion in declination</description><ucd>stat.correlation</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>pmra_pmdec_corr</name><description>Correlation between proper motion in right ascension and proper motion in declination</description><ucd>stat.correlation</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ra_parallax_corr</name><description>Correlation between right ascension and parallax</description><ucd>stat.correlation</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>dec_parallax_corr</name><description>Correlation between declination and parallax</description><ucd>stat.correlation</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>parallax_pmra_corr</name><description>Correlation between parallax and proper motion in right ascension</description><ucd>stat.correlation</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>parallax_pmdec_corr</name><description>Correlation between parallax and proper motion in declination</description><ucd>stat.correlation</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>scan_direction_mean_k1</name><description>Mean position angle of scan directions across the source</description><unit>deg</unit><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>scan_direction_strength_k1</name><description>Degree of concentration of scan directions across the source</description><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>scan_direction_mean_k2</name><description>Mean position angle of scan directions across the source</description><unit>deg</unit><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>scan_direction_strength_k2</name><description>Degree of concentration of scan directions across the source</description><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>scan_direction_mean_k3</name><description>Mean position angle of scan directions across the source</description><unit>deg</unit><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>scan_direction_strength_k3</name><description>Degree of concentration of scan directions across the source</description><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>scan_direction_mean_k4</name><description>Mean position angle of scan directions across the source</description><unit>deg</unit><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>scan_direction_strength_k4</name><description>Degree of concentration of scan directions across the source</description><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>random_index</name><description>Random index that can be used to deterministically select subsets</description><ucd>meta.code</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">long</dataType></column><column><name>hip</name><description>Hipparcos identifier</description><dataType arraysize="1" xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>tycho2_id</name><description>Tycho 2 identifier</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table></schema></tableset></ri:Resource>