<?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="2026-04-02T21:33:30Z" 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>Pavol Jozef Šafárik University Archive TAP service</title><shortName>upjs TAP</shortName><identifier>ivo://astro.upjs/tap</identifier><curation><publisher>UPJŠ DC Team</publisher><creator><name>UPJŠ Archive</name><logo>https://skvo.science.upjs.sk/favicon.png</logo></creator><date role="Updated">2025-11-25T12:00:06Z</date><contact><name>UPJŠ Archive</name><address>Jesenná 5, 040 01 Košice, Slovakia</address><email>olga.vozyakova@student.upjs.sk</email></contact></curation><content><subject>virtual-observatories</subject><subject>catalogs</subject><description>The Pavol Jozef Šafárik University Archive'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: gaia_source_lite_eb, lightcurves, raw_data, ts_ssa, vari_eclipsing_binary_lite from the gaiadr3_eb schema, obscore from the ivoa schema, acepheids, blap, cepheids, cv, dsct, eclipsing, heartbeat, lightcurves, m54, miras, objects_all, raw_data, rotating, rrlyr, t2cep, transits, ts_ssa from the ogle schema, lightcurves, objects, ts_ssa from the personal schema, columns, groups, key_columns, keys, schemas, tables from the tap_schema schema, main from the upjs_img schema, lightcurves, objects, raw_data, ts_ssa from the upjs_ts schema.</description><referenceURL>https://skvo.science.upjs.sk/__system__/tap/run/info</referenceURL><relationship><relationshipType>IsServiceFor</relationshipType><relatedResource ivo-id="ivo://astro.upjs/__system__/obscore/ObsCore">Pavol Jozef Šafárik University Archive 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">https://skvo.science.upjs.sk/tap</accessURL></interface><dataModel ivo-id="ivo://ivoa.net/std/obscore#core-1.1">Obscore-1.1</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>60</default></executionDuration><outputLimit><default unit="row">20000</default><hard unit="row">20000000</hard></outputLimit><uploadLimit><hard unit="byte">500000</hard></uploadLimit></capability><capability standardID="ivo://ivoa.net/std/VOSI#capabilities"><interface role="std" xsi:type="vs:ParamHTTP"><accessURL use="full">https://skvo.science.upjs.sk/__system__/tap/run/capabilities</accessURL></interface></capability><capability standardID="ivo://ivoa.net/std/VOSI#availability"><interface role="std" xsi:type="vs:ParamHTTP"><accessURL use="full">https://skvo.science.upjs.sk/__system__/tap/run/availability</accessURL></interface></capability><capability standardID="ivo://ivoa.net/std/VOSI#tables"><interface role="std" version="1.1" xsi:type="vs:ParamHTTP"><accessURL use="full">https://skvo.science.upjs.sk/__system__/tap/run/tableMetadata</accessURL></interface></capability><capability standardID="ivo://ivoa.net/std/DALI#examples"><interface xsi:type="vr:WebBrowser"><accessURL use="full">https://skvo.science.upjs.sk/__system__/tap/run/examples</accessURL></interface></capability><tableset><schema><name>ivoa</name><description>Definition and support code for the ObsCore data model and table.</description><table><name>ivoa.obscore</name><title>Pavol Jozef Šafárik University Archive Obscore Table</title><description>The IVOA-defined obscore table, containing generic metadata for
datasets within this data centre.</description><utype>ivo://ivoa.net/std/obscore#table-1.1</utype><nrows>8041728</nrows><column><name>dataproduct_type</name><description>High level scientific classification of the data product, taken from an enumeration</description><ucd>meta.code.class</ucd><utype>obscore:obsdataset.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.code.class</ucd><utype>obscore:obsdataset.dataproductsubtype</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="2" g-colstat:median="2" g-colstat:min-value="2" g-colstat:percentile03="2" g-colstat:percentile97="2"><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:obsdataset.caliblevel</utype><dataType 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.ivoid</ucd><utype>obscore:curation.publisherdid</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><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 g-colstat:fillFactor="1" g-colstat:max-value="4109" g-colstat:median="48" g-colstat:min-value="48" g-colstat:percentile03="48" g-colstat:percentile97="48"><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 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 g-colstat:fillFactor="1" g-colstat:max-value="360" g-colstat:median="263.882" g-colstat:min-value="0.000784986" g-colstat:percentile03="36.8772" g-colstat:percentile97="324.707"><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 xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="89.8799" g-colstat:median="-28.4592" g-colstat:min-value="-89.9073" g-colstat:percentile03="-70.3762" g-colstat:percentile97="59.4004"><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 xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="3.82473" g-colstat:median="0.000277778" g-colstat:min-value="0.000277778" g-colstat:percentile03="0.000277778" g-colstat:percentile97="0.000277778"><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 xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>s_region</name><description>Region covered by the observation, as a polygon</description><ucd>pos.outline;obs.field</ucd><utype>obscore:char.spatialaxis.coverage.support.area</utype><dataType arraysize="*" extendedType="adql:REGION" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.00101446" g-colstat:max-value="4.97314" g-colstat:median="1.08765" g-colstat:min-value="0.00985535" g-colstat:percentile03="1.08478" g-colstat:percentile97="3.02574"><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.value</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="59519.2" g-colstat:median="56910" g-colstat:min-value="49999.5" g-colstat:percentile03="52125" g-colstat:percentile97="57298.5"><name>t_min</name><description>Lower bound of times represented in the data set</description><unit>d</unit><ucd>time.start;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.starttime</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="60624" g-colstat:median="57878.3" g-colstat:min-value="51222.3" g-colstat:percentile03="57227.2" g-colstat:percentile97="58787"><name>t_max</name><description>Upper bound of times represented in the data set</description><unit>d</unit><ucd>time.end;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.stoptime</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.00101446" g-colstat:max-value="120" g-colstat:median="30" g-colstat:min-value="10" g-colstat:percentile03="10" g-colstat:percentile97="100"><name>t_exptime</name><description>Total exposure time</description><unit>s</unit><ucd>time.duration;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.support.extent</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><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.value</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.996278" g-colstat:max-value="7.02e-07" g-colstat:median="3.309e-07" g-colstat:min-value="3.302e-07" g-colstat:percentile03="3.302e-07" g-colstat:percentile97="7.02e-07"><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.lolimit</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.996278" g-colstat:max-value="1.102e-06" g-colstat:median="1.038e-06" g-colstat:min-value="5.55e-07" g-colstat:percentile03="6.7e-07" g-colstat:percentile97="1.1e-06"><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.hilimit</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>em_res_power</name><description>Spectral resolving power lambda/delta lambda</description><ucd>spect.resolution</ucd><utype>obscore:char.spectralaxis.resolution.resolpower.refval</utype><dataType xsi:type="vs:VOTableType">float</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 g-colstat:fillFactor="1" g-colstat:max-value="2048" g-colstat:median="1" g-colstat:min-value="1" g-colstat:percentile03="1" g-colstat:percentile97="1"><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 xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="2048" g-colstat:median="1" g-colstat:min-value="1" g-colstat:percentile03="1" g-colstat:percentile97="1"><name>s_xel2</name><description>Number of elements (typically pixels) along the second spatial axis.</description><ucd>meta.number</ucd><utype>obscore:Char.SpatialAxis.numBins2</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="20603" g-colstat:median="44" g-colstat:min-value="1" g-colstat:percentile03="4" g-colstat:percentile97="1348"><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 xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="1" g-colstat:median="1" g-colstat:min-value="1" g-colstat:percentile03="1" g-colstat:percentile97="1"><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 xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>pol_xel</name><description>Number of elements (typically pixels) along the polarization axis.</description><ucd>meta.number</ucd><utype>obscore:Char.PolarizationAxis.numBins</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.00101446" g-colstat:max-value="4.97314" g-colstat:median="1.08765" g-colstat:min-value="0.00985535" g-colstat:percentile03="1.08478" g-colstat:percentile97="3.02574"><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 xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>em_ucd</name><description>Nature of the product's spectral axis (typically, em.freq, em.wl, or em.energy)</description><ucd>meta.ucd</ucd><utype>obscore:Char.SpectralAxis.ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>preview</name><description>URL of a preview (low-resolution, quick-to-retrieve representation) of the data.</description><ucd>meta.ref.url;meta.preview</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>source_table</name><description>Name of a TAP-queriable table this data originates from. This source table usually provides more information on the the data than what is given in obscore. See the TAP_SCHEMA of the originating TAP server for details.</description><ucd>meta.id;meta.table</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table></schema><schema><name>tap_schema</name><description> Pavol Jozef Šafárik University Archive'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>ogle</name><title>OGLE Variable Star Parameters</title><description>
The **Optical Gravitational Lensing Experiment (OGLE)** is a long-term photometric 
survey operated by the University of Warsaw at Las Campanas Observatory.
Most of the observations are carried out in the Cousins *I* filter, with
auxiliary measurements in the *V* filter.

High-cadence, long-term observations of crowded fields have led to the
systematic discovery and classification of variable stars.
The OGLE Collection of Variable Stars (OCVS) contains over one million objects.
OCVS light curves span three survey phases: OGLE-II (1996-2000), OGLE-III
(2001-2009), and OGLE-IV (2010-present).

The VO-compliant re-publication of the OCVS light curve collection allows
bulk download for objects with a specific variability class and parameters,
which can be very handy for ML-based light curve analysis and related applications.

The original data of the republished collection can be found at: 
https://www.astrouw.edu.pl/ogle/ogle4/OCVS/

While republishing, we almost preserve the original data structure. That is, there are tables
with variable star parameters split by variability type (Cepheids, Eclipsing and Ellipsoidal
Binaries, RR Lyrae stars, etc.) and by sky field: Galactic Bulge (BLG), Magellanic Clouds
(LMC, SMC), Galactic Disc (GD). A few tables are related only to a variability class 
(e.g., Cataclysmic Variables - CV, BLAPs, Anomalous Cepheids in the Milky Way - ACEP/GAL)
or a specific field (M54 variables, which comprise diverse classes).

All observed objects with their main parameters are aggregated in the object_all table,
which facilitates generic queries across all classes. This table is served by Cone Search.

The ts_ssa table is the main table for light-curve queries. It is served by TAP and SSA services.
The time series themselves, as well as previews of folded and unfolded light curves, can be accessed
via DataLink from the ts_ssa and ObsCore tables. Direct links to previews of folded curves are placed
in the *preview* column of both the *ts_ssa* and *ObsCore* tables.</description><table><name>ogle.ts_ssa</name><title>OGLE variable stars timeseries metadata</title><description> This table contains metadata about the OCVS photometric time series
in IVOA SSA format. The actual data is available through a datalink
service. The original data of the OGLE Collection of Variable Stars
(OCVS) is available at: https://www.astrouw.edu.pl/ogle/ogle4/OCVS</description><nrows>1456728</nrows><column><name>object_id</name><description>Star identifier</description><ucd>meta.id;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>accref</name><description>Access key for the data</description><ucd>meta.ref.url;meta.dataset</ucd><utype>ssa:Access.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><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>yr</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><ucd>meta.code.mime</ucd><utype>ssa:Access.Format</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="50000" g-colstat:median="50000" g-colstat:min-value="50000" g-colstat:percentile03="50000" g-colstat:percentile97="50000"><name>accsize</name><description>Size of the data in bytes</description><unit>byte</unit><utype>ssa:Access.Size</utype><dataType xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>ssa_dstitle</name><description>A compact and descriptive designation of the dataset.</description><ucd>meta.title;meta.dataset</ucd><utype>ssa:DataID.Title</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_creatordid</name><description>Dataset identifier assigned by the creator</description><ucd>meta.id</ucd><utype>ssa:DataID.CreatorDID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_pubdid</name><description>Dataset identifier assigned by the publisher</description><ucd>meta.ref.ivoid</ucd><utype>ssa:Curation.PublisherDID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_cdate</name><description>Processing/Creation date</description><ucd>time;meta.dataset</ucd><utype>ssa:DataID.Date</utype><dataType arraysize="19" extendedType="timestamp" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="61121" g-colstat:median="61121" g-colstat:min-value="61121" g-colstat:percentile03="61121" g-colstat:percentile97="61121"><name>ssa_pdate</name><description>Date last published.</description><utype>ssa:Curation.Date</utype><dataType arraysize="19" extendedType="timestamp" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_bandpass</name><description>Bandpass (i.e., rough spectral location) of this dataset; this should be the most appropriate term from the vocabulary http://www.ivoa.net/rdf/messenger.</description><ucd>instr.bandpass</ucd><utype>ssa:DataID.Bandpass</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_cversion</name><description>Creator assigned version for this dataset (will be incremented when this particular item is changed).</description><ucd>meta.version;meta.dataset</ucd><utype>ssa:DataID.Version</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_targname</name><description>Common name of object observed.</description><ucd>meta.id;src</ucd><utype>ssa:Target.Name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column><column><name>ssa_targclass</name><description>Object class (star, QSO,...; use Simbad object classification http://simbad.u-strasbg.fr/simbad/sim-display?data=otypes if at all possible)</description><ucd>src.class</ucd><utype>ssa:Target.Class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_redshift</name><description>Redshift of target object</description><ucd>src.redshift</ucd><utype>ssa:Target.Redshift</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_targetpos</name><description>Equatorial (ICRS) position of the target object.</description><ucd>pos.eq;src</ucd><utype>ssa:Target.pos.spoint</utype><dataType arraysize="2" extendedType="point" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_snr</name><description>Signal-to-noise ratio estimated for this dataset</description><ucd>stat.snr</ucd><utype>ssa:Derived.SNR</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_location</name><description>ICRS location of aperture center</description><unit>deg</unit><ucd>pos.eq</ucd><utype>ssa:Char.SpatialAxis.Coverage.Location.Value</utype><dataType arraysize="2" extendedType="point" xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="0.000277778" g-colstat:median="0.000277778" g-colstat:min-value="0.000277778" g-colstat:percentile03="0.000277778" g-colstat:percentile97="0.000277778"><name>ssa_aperture</name><description>Angular diameter of aperture</description><unit>deg</unit><ucd>phys.angSize;instr.fov</ucd><utype>ssa:Char.SpatialAxis.Coverage.Bounds.Extent</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_dateobs</name><description>Midpoint of exposure (MJD)</description><unit>d</unit><ucd>time.epoch</ucd><utype>ssa:Char.TimeAxis.Coverage.Location.Value</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="10368.9" g-colstat:median="2694.81" g-colstat:min-value="0" g-colstat:percentile03="404.964" g-colstat:percentile97="6780.69"><name>ssa_timeext</name><description>Exposure duration</description><unit>s</unit><ucd>time.duration</ucd><utype>ssa:Char.TimeAxis.Coverage.Bounds.Extent</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="8.3e-07" g-colstat:median="8.3e-07" g-colstat:min-value="5.4e-07" g-colstat:percentile03="5.4e-07" g-colstat:percentile97="8.3e-07"><name>ssa_specmid</name><description>Midpoint of region covered in this dataset</description><unit>m</unit><ucd>instr.bandpass</ucd><utype>ssa:Char.SpectralAxis.Coverage.Location.Value</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="3.98e-07" g-colstat:median="3.98e-07" g-colstat:min-value="1.85e-07" g-colstat:percentile03="1.85e-07" g-colstat:percentile97="3.98e-07"><name>ssa_specext</name><description>Width of the spectrum</description><unit>m</unit><ucd>instr.bandwidth</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Extent</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="7.02e-07" g-colstat:median="7.02e-07" g-colstat:min-value="4.85e-07" g-colstat:percentile03="4.85e-07" g-colstat:percentile97="7.02e-07"><name>ssa_specstart</name><description>Lower value of spectral coordinate</description><unit>m</unit><ucd>em.wl;stat.min</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Start</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="1.1e-06" g-colstat:median="1.1e-06" g-colstat:min-value="6.7e-07" g-colstat:percentile03="6.7e-07" g-colstat:percentile97="1.1e-06"><name>ssa_specend</name><description>Upper value of spectral coordinate</description><unit>m</unit><ucd>em.wl;stat.max</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Stop</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="20603" g-colstat:median="165" g-colstat:min-value="1" g-colstat:percentile03="7" g-colstat:percentile97="10812"><name>ssa_length</name><description>Number of points in the spectrum</description><utype>ssa:Dataset.Length</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>ssa_model</name><description>Data model name and version</description><utype>ssa:Dataset.DataModel</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_csysname</name><description>System RA and Dec are given in</description><utype>ssa:CoordSys.SpaceFrame.Name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_timesi</name><description>Time conversion factor in Osuna-Salgado convention.</description><utype>ssa:Dataset.TimeSI</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_spectralsi</name><description>Spectral conversion factor in Osuna-Salgado convention</description><utype>ssa:Dataset.SpectralSI</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_spectralucd</name><description>UCD of the spectral column in the spectra served; when you have wavelengths, use em.wl for vacuum wavelengths, em.wl;obs.atmos for air wavelengths.</description><ucd>meta.ucd</ucd><utype>ssa:Char.SpectralAxis.Ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_spectralunit</name><description>Unit of the spectral column</description><ucd>meta.unit</ucd><utype>ssa:Char.SpectralAxis.Unit</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_fluxsi</name><description>Flux/magnitude conversion factor in Osuna-Salgado convention</description><utype>ssa:Dataset.FluxSI</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_fluxucd</name><description>UCD of the flux column</description><ucd>meta.ucd</ucd><utype>ssa:Char.FluxAxis.Ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_fluxunit</name><description>Unit of the flux column</description><ucd>meta.unit</ucd><utype>ssa:Char.FluxAxis.Unit</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_dstype</name><description>Type of data (spectrum, time series, etc)</description><utype>ssa:Dataset.Type</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_publisher</name><description>Publisher of the datasets included here.</description><ucd>meta.curation</ucd><utype>ssa:Curation.Publisher</utype><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType></column><column><name>ssa_creator</name><description>Creator of the datasets included here.</description><utype>ssa:DataID.Creator</utype><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>nullable</flag></column><column><name>ssa_collection</name><description>A short handle naming the collection this spectrum belongs to.</description><utype>ssa:DataID.Collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_instrument</name><description>Instrument or code used to produce these datasets</description><ucd>meta.id;instr</ucd><utype>ssa:DataID.Instrument</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_datasource</name><description>Method of generation for the data (one of survey, pointed, theory, custom, artificial).</description><utype>ssa:DataID.DataSource</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_creationtype</name><description>Process used to produce the data (archival, cutout, filtered, mosaic, projection, spectralExtraction, or catalogExtraction)</description><utype>ssa:DataID.CreationType</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_reference</name><description>URL or bibcode of a publication describing this data.</description><ucd>meta.bib.bibcode</ucd><utype>ssa:Curation.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_fluxstaterror</name><description>Statistical error in flux</description><ucd>stat.error;phot.flux.density;em</ucd><utype>ssa:Char.FluxAxis.Accuracy.StatError</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_fluxsyserror</name><description>Systematic error in flux</description><ucd>stat.error.sys;phot.flux.density;em</ucd><utype>ssa:Char.FluxAxis.Accuracy.SysError</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_fluxcalib</name><description>Type of flux calibration (ABSOLUTE, CALIBRATED, RELATIVE, NORMALIZED, or UNCALIBRATED).</description><utype>ssa:Char.FluxAxis.Calibration</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_binsize</name><description>Bin size in wavelength</description><unit>m</unit><ucd>em.wl;spect.binSize</ucd><utype>ssa:Char.SpectralAxis.Accuracy.BinSize</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_spectstaterror</name><description>Statistical error in wavelength</description><unit>m</unit><ucd>stat.error;em</ucd><utype>ssa:Char.SpectralAxis.Accuracy.StatError</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_spectsyserror</name><description>Systematic error in wavelength</description><unit>m</unit><ucd>stat.error.sys;em</ucd><utype>ssa:Char.SpectralAxis.Accuracy.SysError</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_speccalib</name><description>Type of wavelength calibration</description><ucd>meta.code.qual</ucd><utype>ssa:Char.SpectralAxis.Calibration</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_specres</name><description>Resolution (in meters of wavelength) on the spectral axis</description><unit>m</unit><ucd>spect.resolution;em.wl</ucd><utype>ssa:Char.SpectralAxis.Resolution</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_spaceerror</name><description>Statistical error in position</description><unit>deg</unit><ucd>stat.error;pos.eq</ucd><utype>ssa:Char.SpatialAxis.Accuracy.StatError</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_spacecalib</name><description>Type of calibration in spatial coordinates</description><ucd>meta.code.qual</ucd><utype>ssa:Char.SpatialAxis.Calibration</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_spaceres</name><description>Spatial resolution of data</description><unit>deg</unit><ucd>pos.angResolution</ucd><utype>ssa:Char.SpatialAxis.Resolution</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="59519.2" g-colstat:median="56910" g-colstat:min-value="49999.5" g-colstat:percentile03="52125" g-colstat:percentile97="57298.5"><name>t_min</name><description>Lower bound of times represented in the data set</description><unit>d</unit><ucd>time.start;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.starttime</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="60624" g-colstat:median="57878.3" g-colstat:min-value="51222.3" g-colstat:percentile03="57227.2" g-colstat:percentile97="58787"><name>t_max</name><description>Upper bound of times represented in the data set</description><unit>d</unit><ucd>time.end;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.stoptime</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>preview</name><description>Location of a preview; this can be NULL if no preview is available, 'AUTO' to make DaCHS try its luck itself, or a URL or a file path for pre-computed previews.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_region</name><description>Rough coverage based on location and aperture.</description><ucd>pos.outline;obs.field</ucd><dataType arraysize="*" extendedType="polygon" xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>datalink</name><description>A link to a datalink document for this timeseries</description><ucd>meta.ref.url</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="28.587" g-colstat:median="18.5472" g-colstat:min-value="9.8945" g-colstat:percentile03="14.115" g-colstat:percentile97="21.2187"><name>mean_mag</name><description>Stellar magnitude</description><unit>mag</unit><ucd>phot.mag;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column></table><table><name>ogle.objects_all</name><title>Unified table of Variable Star Parameters from OCVS</title><description> 
This table is a unified catalogue of objects from the OGLE Collection of Variable Stars (OCVS) (https://www.astrouw.edu.pl/ogle/ogle4/OCVS).
It was constructed by merging variable-type–specific ident.dat tables with selected columns from tables containing parameters: cep.dat, cepF.dat, cep1O.dat, cepF1O.dat, cep1O2O.dat, cep1O2O3O.dat, cep2O3O.dat, Miras.dat, and others.

The corresponding light curves can be discovered via TAP through the ts_ssa or obscore tables, or through the SSA service. Light curves can be extracted using the associated DataLink services.
  </description><nrows>798170</nrows><column><name>object_id</name><description>Star identifier</description><ucd>meta.id;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="360" g-colstat:median="267.781" g-colstat:min-value="0.0122917" g-colstat:percentile03="21.714" g-colstat:percentile97="278.42"><name>raj2000</name><description>Right ascension</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="23.8829" g-colstat:median="-30.1332" g-colstat:min-value="-83.456" g-colstat:percentile03="-72.6732" g-colstat:percentile97="-17.744"><name>dej2000</name><description>Declination</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag></column><column><name>vsx</name><description>VSX/GCVS/Macho or other designation</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle_vartype</name><description>OGLE type of variable star</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>subtype</name><description>Subtype of Variable Star</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_targclass</name><description>Object class (star, QSO,...; use Simbad object classification http://simbad.u-strasbg.fr/simbad/sim-display?data=otypes if at all possible)</description><ucd>src.class</ucd><utype>ssa:Target.Class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_collection</name><description>A short handle naming the collection this spectrum belongs to.</description><utype>ssa:DataID.Collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_reference</name><description>URL or bibcode of a publication describing this data.</description><ucd>meta.bib.bibcode</ucd><utype>ssa:Curation.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.999837" g-colstat:max-value="21.916" g-colstat:median="17.782" g-colstat:min-value="9.575" g-colstat:percentile03="13.218" g-colstat:percentile97="19.928"><name>mean_i</name><description>Intensity mean I-band magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.806824" g-colstat:max-value="26.146" g-colstat:median="19.353" g-colstat:min-value="11.314" g-colstat:percentile03="15.833" g-colstat:percentile97="21.337"><name>mean_v</name><description>Intensity mean V-band magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.999858" g-colstat:max-value="22.94" g-colstat:median="0.382" g-colstat:min-value="0.001189" g-colstat:percentile03="0.065" g-colstat:percentile97="2.67"><name>ampl_i</name><description>I-band amplitude of the primary period</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.998509" g-colstat:max-value="4200" g-colstat:median="0.630162" g-colstat:min-value="0.00372189" g-colstat:percentile03="0.0806389" g-colstat:percentile97="371.9"><name>period</name><description>Period of the variable star (primary/longest)</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.232373" g-colstat:max-value="0.531718" g-colstat:median="8e-07" g-colstat:min-value="0" g-colstat:percentile03="3e-08" g-colstat:percentile97="1.878e-05"><name>period_err</name><description>Uncertainty of period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.892304" g-colstat:max-value="63895.1" g-colstat:median="56999.8" g-colstat:min-value="55260.5" g-colstat:percentile03="55999.7" g-colstat:percentile97="60002.4"><name>epoch</name><description>Time of maximum brightness; mjd (HJD)</description><unit>d</unit><ucd>src.var;time.epoch</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column></table><table><name>ogle.blap</name><description>The original table blap.dat with observational parameters of Blue
Large-Amplitude Pulsators (BLAPs)</description><nrows>184</nrows><column><name>object_id</name><description>Star identifier</description><ucd>meta.id;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>raj2000</name><description>Right ascension</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>dej2000</name><description>Declination</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>ogle4_id</name><description>OGLE-IV Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>vsx</name><description>VSX/GCVS/Macho or other designation</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle_vartype</name><description>OGLE type of variable star</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_targclass</name><description>Object class (star, QSO,...; use Simbad object classification http://simbad.u-strasbg.fr/simbad/sim-display?data=otypes if at all possible)</description><ucd>src.class</ucd><utype>ssa:Target.Class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_collection</name><description>A short handle naming the collection this spectrum belongs to.</description><utype>ssa:DataID.Collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_reference</name><description>URL or bibcode of a publication describing this data.</description><ucd>meta.bib.bibcode</ucd><utype>ssa:Curation.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>mean_i</name><description>Intensity mean I-band magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>mean_v</name><description>Intensity mean V-band magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>ampl_i</name><description>I-band amplitude of the primary period</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>period</name><description>Period of the variable star (primary/longest)</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>period_err</name><description>Uncertainty of period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>gaia_id</name><description>Gaia DR3 identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>ampl_v</name><description>V-band amplitude of the primary period</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column></table><table><name>ogle.acepheids</name><title>Anomalous Cepheids</title><description> Coordinates and variability parameters of all Anomalous Cepheids from
the OGLE Variable Star Collection. The table was constructed by
merging all A.Cepheid-related data from all OGLE fields, such as GD,
LMC, and SMC.</description><nrows>389</nrows><column><name>object_id</name><description>Star identifier</description><ucd>meta.id;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="359.81" g-colstat:median="80.3098" g-colstat:min-value="0.689" g-colstat:percentile03="7.58986" g-colstat:percentile97="283.916"><name>raj2000</name><description>Right ascension</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column g-colstat:fillFactor="1" g-colstat:max-value="11.7893" g-colstat:median="-69.0248" g-colstat:min-value="-81.1058" g-colstat:percentile03="-77.6895" g-colstat:percentile97="-15.9097"><name>dej2000</name><description>Declination</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>ogle4_id</name><description>OGLE-IV Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle3_id</name><description>OGLE-III Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle2_id</name><description>OGLE-II Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>vsx</name><description>VSX/GCVS/Macho or other designation</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle_vartype</name><description>OGLE type of variable star</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_targclass</name><description>Object class (star, QSO,...; use Simbad object classification http://simbad.u-strasbg.fr/simbad/sim-display?data=otypes if at all possible)</description><ucd>src.class</ucd><utype>ssa:Target.Class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_collection</name><description>A short handle naming the collection this spectrum belongs to.</description><utype>ssa:DataID.Collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_reference</name><description>URL or bibcode of a publication describing this data.</description><ucd>meta.bib.bibcode</ucd><utype>ssa:Curation.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>pulse_mode</name><description>Cepheid Mode(s) of pulsation: F-fundamental, 1O-first \ overtone</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="18.954" g-colstat:median="17.302" g-colstat:min-value="12.357" g-colstat:percentile03="13.5484" g-colstat:percentile97="18.3331"><name>mean_i</name><description>Intensity mean I-band magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.830334" g-colstat:max-value="19.992" g-colstat:median="17.968" g-colstat:min-value="13.006" g-colstat:percentile03="15.1109" g-colstat:percentile97="19.014"><name>mean_v</name><description>Intensity mean V-band magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="0.985" g-colstat:median="0.502" g-colstat:min-value="0.113" g-colstat:percentile03="0.22328" g-colstat:percentile97="0.91436"><name>ampl_i</name><description>I-band amplitude of the primary period</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="2.67255" g-colstat:median="0.939614" g-colstat:min-value="0.367053" g-colstat:percentile03="0.432303" g-colstat:percentile97="2.04174"><name>period</name><description>Period of the variable star (primary/longest)</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="0.0005124" g-colstat:median="1.3e-06" g-colstat:min-value="2e-07" g-colstat:percentile03="3e-07" g-colstat:percentile97="2.6216e-05"><name>period_err</name><description>Uncertainty of period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="60001.1" g-colstat:median="56000.2" g-colstat:min-value="55999.5" g-colstat:percentile03="55999.5" g-colstat:percentile97="60000.7"><name>epoch</name><description>Time of maximum brightness; mjd (HJD)</description><unit>d</unit><ucd>src.var;time.epoch</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.00257069" g-colstat:max-value="0.674532" g-colstat:median="0.674532" g-colstat:min-value="0.674532" g-colstat:percentile03="0.674532" g-colstat:percentile97="0.674532"><name>period_short</name><description>The shortest period of the A.Cepheid</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.00257069" g-colstat:max-value="7.7e-06" g-colstat:median="7.7e-06" g-colstat:min-value="7.7e-06" g-colstat:percentile03="7.7e-06" g-colstat:percentile97="7.7e-06"><name>period_short_err</name><description>Uncertainty of the shortest period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column></table><table><name>ogle.cepheids</name><title>Classical Cepheids</title><description> Coordinates and variability parameters of all Classical Cepheids from
the OGLE Variable Star Collection. The table was constructed by
merging all Cepheid-related data from all OGLE fields, such as BLG,
GD, LMC, and SMC.</description><nrows>11689</nrows><column><name>object_id</name><description>Star identifier</description><ucd>meta.id;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="360" g-colstat:median="75.5851" g-colstat:min-value="0.254875" g-colstat:percentile03="9.72397" g-colstat:percentile97="275.436"><name>raj2000</name><description>Right ascension</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column g-colstat:fillFactor="1" g-colstat:max-value="23.8829" g-colstat:median="-70.378" g-colstat:min-value="-79.1817" g-colstat:percentile03="-74.0353" g-colstat:percentile97="-3.43929"><name>dej2000</name><description>Declination</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>ogle4_id</name><description>OGLE-IV Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle3_id</name><description>OGLE-III Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle2_id</name><description>OGLE-II Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>vsx</name><description>VSX/GCVS/Macho or other designation</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle_vartype</name><description>OGLE type of variable star</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_targclass</name><description>Object class (star, QSO,...; use Simbad object classification http://simbad.u-strasbg.fr/simbad/sim-display?data=otypes if at all possible)</description><ucd>src.class</ucd><utype>ssa:Target.Class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_collection</name><description>A short handle naming the collection this spectrum belongs to.</description><utype>ssa:DataID.Collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_reference</name><description>URL or bibcode of a publication describing this data.</description><ucd>meta.bib.bibcode</ucd><utype>ssa:Curation.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>pulse_mode</name><description>Cepheid Mode(s) of pulsation: F-fundamental, o1-first \ overtone, o2-second, etc</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.996492" g-colstat:max-value="19.834" g-colstat:median="15.689" g-colstat:min-value="10.234" g-colstat:percentile03="12.3654" g-colstat:percentile97="17.64"><name>mean_i</name><description>Intensity mean I-band magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.90367" g-colstat:max-value="21.843" g-colstat:median="16.5" g-colstat:min-value="11.314" g-colstat:percentile03="14.0514" g-colstat:percentile97="18.7351"><name>mean_v</name><description>Intensity mean V-band magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.996492" g-colstat:max-value="1.383" g-colstat:median="0.342" g-colstat:min-value="0.005" g-colstat:percentile03="0.088" g-colstat:percentile97="0.758"><name>ampl_i</name><description>I-band amplitude of the primary period</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="208.799" g-colstat:median="2.25285" g-colstat:min-value="0.223925" g-colstat:percentile03="0.516879" g-colstat:percentile97="14.0292"><name>period</name><description>Period (longest)</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="0.531718" g-colstat:median="5.2e-06" g-colstat:min-value="2e-07" g-colstat:percentile03="8e-07" g-colstat:percentile97="0.000419432"><name>period_err</name><description>Uncertainty of period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.99692" g-colstat:max-value="60042.7" g-colstat:median="56000.7" g-colstat:min-value="55999.5" g-colstat:percentile03="55999.6" g-colstat:percentile97="60003.8"><name>epoch</name><description>Time of maximum brightness; mjd (HJD)</description><unit>d</unit><ucd>src.var;time.epoch</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.0831551" g-colstat:max-value="6.9622" g-colstat:median="0.617715" g-colstat:min-value="0.152173" g-colstat:percentile03="0.203186" g-colstat:percentile97="2.7384"><name>period_short</name><description>The shortest period of the Cepheid</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.0831551" g-colstat:max-value="0.0003437" g-colstat:median="5e-06" g-colstat:min-value="0" g-colstat:percentile03="5e-07" g-colstat:percentile97="4.1335e-05"><name>period_short_err</name><description>Uncertainty of the shortest period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.00162546" g-colstat:max-value="0.962655" g-colstat:median="0.376204" g-colstat:min-value="0.182984" g-colstat:percentile03="0.184944" g-colstat:percentile97="0.871474"><name>period_med</name><description>The medium period of the Cepheid</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.00162546" g-colstat:max-value="1.03e-05" g-colstat:median="1.5e-06" g-colstat:min-value="2e-07" g-colstat:percentile03="2.54e-07" g-colstat:percentile97="1.0138e-05"><name>period_med_err</name><description>Uncertainty of the medium period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column></table><table><name>ogle.dsct</name><title>Delta Scuti stars</title><description> Coordinates and variability parameters of all Delta Scuti from the
OGLE Variable Star Collection. The table was constructed by merging
all d Sct-related data from all OGLE fields, such as BLG, GD, LMC, and
SMC.</description><nrows>42672</nrows><column><name>object_id</name><description>Star identifier</description><ucd>meta.id;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="359.689" g-colstat:median="174.447" g-colstat:min-value="0.0784167" g-colstat:percentile03="13.6267" g-colstat:percentile97="281.937"><name>raj2000</name><description>Right ascension</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column g-colstat:fillFactor="1" g-colstat:max-value="23.5041" g-colstat:median="-54.0698" g-colstat:min-value="-82.6905" g-colstat:percentile03="-73.3191" g-colstat:percentile97="-6.40828"><name>dej2000</name><description>Declination</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>ogle4_id</name><description>OGLE-IV Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle3_id</name><description>OGLE-III Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle2_id</name><description>OGLE-II Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>vsx</name><description>VSX/GCVS/Macho or other designation</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle_vartype</name><description>OGLE type of variable star</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>subtype</name><description>singlemode, multimode</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_targclass</name><description>Object class (star, QSO,...; use Simbad object classification http://simbad.u-strasbg.fr/simbad/sim-display?data=otypes if at all possible)</description><ucd>src.class</ucd><utype>ssa:Target.Class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_collection</name><description>A short handle naming the collection this spectrum belongs to.</description><utype>ssa:DataID.Collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_reference</name><description>URL or bibcode of a publication describing this data.</description><ucd>meta.bib.bibcode</ucd><utype>ssa:Curation.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.999438" g-colstat:max-value="21.462" g-colstat:median="18.1705" g-colstat:min-value="10.624" g-colstat:percentile03="14.0034" g-colstat:percentile97="20.939"><name>mean_i</name><description>Intensity mean I-band magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.806829" g-colstat:max-value="22.456" g-colstat:median="20.164" g-colstat:min-value="11.335" g-colstat:percentile03="14.9608" g-colstat:percentile97="21.517"><name>mean_v</name><description>Intensity mean V-band magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.999438" g-colstat:max-value="0.989" g-colstat:median="0.191" g-colstat:min-value="0.005" g-colstat:percentile03="0.047" g-colstat:percentile97="0.411"><name>ampl_i</name><description>I-band amplitude of the primary period</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.999438" g-colstat:max-value="0.299146" g-colstat:median="0.0774741" g-colstat:min-value="0.0327967" g-colstat:percentile03="0.0495099" g-colstat:percentile97="0.166977"><name>period</name><description>Primary period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.999438" g-colstat:max-value="2.203e-05" g-colstat:median="7e-08" g-colstat:min-value="1e-08" g-colstat:percentile03="2e-08" g-colstat:percentile97="5.5e-07"><name>period_err</name><description>Uncertainty of period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.999438" g-colstat:max-value="56999.7" g-colstat:median="56999.5" g-colstat:min-value="56999.5" g-colstat:percentile03="56999.5" g-colstat:percentile97="56999.6"><name>epoch</name><description>Time of maximum brightness; mjd (HJD)</description><unit>d</unit><ucd>src.var;time.epoch</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.154129" g-colstat:max-value="0.668813" g-colstat:median="0.0708278" g-colstat:min-value="0.0315317" g-colstat:percentile03="0.0399633" g-colstat:percentile97="0.18006"><name>period2</name><description>The secondary period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.154129" g-colstat:max-value="1.147e-05" g-colstat:median="1.1e-07" g-colstat:min-value="2e-08" g-colstat:percentile03="2e-08" g-colstat:percentile97="1.15e-06"><name>period2_err</name><description>Uncertainty of the secondary period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.0106393" g-colstat:max-value="0.238405" g-colstat:median="0.0961198" g-colstat:min-value="0.0251266" g-colstat:percentile03="0.0307653" g-colstat:percentile97="0.188645"><name>period3</name><description>The tertiary period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.0106393" g-colstat:max-value="3.08e-06" g-colstat:median="1.35e-07" g-colstat:min-value="2e-08" g-colstat:percentile03="2e-08" g-colstat:percentile97="1.5041e-06"><name>period3_err</name><description>Uncertainty of the tertiary period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column></table><table><name>ogle.eclipsing</name><title>Eclipsing and Ellipsoidal Binary Systems</title><description> Coordinates and variability parameters of all Eclipsing and
Ellipsoidal Binary Systems from the OGLE Variable Star Collection. The
table was constructed by merging all EB-related data from all OGLE
fields, such as BLG, GD, LMC, and SMC.</description><nrows>525998</nrows><column><name>object_id</name><description>Star identifier</description><ucd>meta.id;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="359.891" g-colstat:median="268.682" g-colstat:min-value="0.042375" g-colstat:percentile03="72.5247" g-colstat:percentile97="274.942"><name>raj2000</name><description>Right ascension</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column g-colstat:fillFactor="1" g-colstat:max-value="-17.3652" g-colstat:median="-29.6188" g-colstat:min-value="-83.1428" g-colstat:percentile03="-71.7812" g-colstat:percentile97="-21.6769"><name>dej2000</name><description>Declination</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>ogle4_id</name><description>OGLE-IV Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle3_id</name><description>OGLE-III Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle2_id</name><description>OGLE-II Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>vsx</name><description>VSX/GCVS/Macho or other designation</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle_vartype</name><description>OGLE type of variable star</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>subtype</name><description>C(contact), NC(non-contact), \ CV(cataclysmic), ELL(ellipsoidal)</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_targclass</name><description>Object class (star, QSO,...; use Simbad object classification http://simbad.u-strasbg.fr/simbad/sim-display?data=otypes if at all possible)</description><ucd>src.class</ucd><utype>ssa:Target.Class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_collection</name><description>A short handle naming the collection this spectrum belongs to.</description><utype>ssa:DataID.Collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_reference</name><description>URL or bibcode of a publication describing this data.</description><ucd>meta.bib.bibcode</ucd><utype>ssa:Curation.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="21.177" g-colstat:median="18.016" g-colstat:min-value="10.003" g-colstat:percentile03="14.664" g-colstat:percentile97="19.728"><name>mean_i</name><description>I-band magnitude at the maximum light</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.90118" g-colstat:max-value="22.63" g-colstat:median="19.438" g-colstat:min-value="11.874" g-colstat:percentile03="16.005" g-colstat:percentile97="21.324"><name>mean_v</name><description>V-band magnitude at the maximum light</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.999918" g-colstat:max-value="4200" g-colstat:median="0.697577" g-colstat:min-value="0.0519409" g-colstat:percentile03="0.290544" g-colstat:percentile97="51.7943"><name>period</name><description>Orbital period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>period_err</name><description>Uncertainty of period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.999951" g-colstat:max-value="63895.1" g-colstat:median="56999.9" g-colstat:min-value="55267.4" g-colstat:percentile03="56999.5" g-colstat:percentile97="60003.5"><name>epoch</name><description>Epoch of of the primary eclipse, MJD</description><unit>d</unit><ucd>src.var;time.epoch</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="4.913" g-colstat:median="0.364" g-colstat:min-value="0.007" g-colstat:percentile03="0.059" g-colstat:percentile97="1.134"><name>depth1</name><description>Depth of the primary eclipse</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="2.411" g-colstat:median="0.192" g-colstat:min-value="0" g-colstat:percentile03="0.029" g-colstat:percentile97="0.582"><name>depth2</name><description>Depth of the secondary eclipse</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column></table><table><name>ogle.heartbeat</name><title>Heartbeat Variables</title><description> Coordinates and variability parameters of all Heartbeat Variables
from the OGLE Variable Star Collection. The table was constructed by
merging all Hb-related data from all OGLE fields, such as BLG, GD,
LMC, and SMC.</description><nrows>991</nrows><column><name>object_id</name><description>Star identifier</description><ucd>meta.id;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="275.308" g-colstat:median="263.926" g-colstat:min-value="5.50683" g-colstat:percentile03="14.9935" g-colstat:percentile97="271.975"><name>raj2000</name><description>Right ascension</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column g-colstat:fillFactor="1" g-colstat:max-value="-20.3594" g-colstat:median="-35.0355" g-colstat:min-value="-74.5424" g-colstat:percentile03="-72.8159" g-colstat:percentile97="-24.3759"><name>dej2000</name><description>Declination</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>ogle4_id</name><description>OGLE-IV Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle3_id</name><description>OGLE-III Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle2_id</name><description>OGLE-II Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>vsx</name><description>VSX/GCVS/Macho or other designation</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle_vartype</name><description>OGLE type of variable star</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>subtype</name><description>RG(system with red giant star) \ MS(system with a (post)main-sequence star)</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_targclass</name><description>Object class (star, QSO,...; use Simbad object classification http://simbad.u-strasbg.fr/simbad/sim-display?data=otypes if at all possible)</description><ucd>src.class</ucd><utype>ssa:Target.Class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_collection</name><description>A short handle naming the collection this spectrum belongs to.</description><utype>ssa:DataID.Collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_reference</name><description>URL or bibcode of a publication describing this data.</description><ucd>meta.bib.bibcode</ucd><utype>ssa:Curation.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="18.192" g-colstat:median="14.742" g-colstat:min-value="12.571" g-colstat:percentile03="13.1532" g-colstat:percentile97="16.5918"><name>mean_i</name><description>Intensity mean I-band magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="26.146" g-colstat:median="17.047" g-colstat:min-value="13.26" g-colstat:percentile03="14.8733" g-colstat:percentile97="19.1565"><name>mean_v</name><description>Intensity mean V-band magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="0.659" g-colstat:median="0.034" g-colstat:min-value="0.007" g-colstat:percentile03="0.015" g-colstat:percentile97="0.1723"><name>ampl_i</name><description>I-band amplitude of the primary period</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="2555.49" g-colstat:median="265.325" g-colstat:min-value="2.78741" g-colstat:percentile03="7.35986" g-colstat:percentile97="658.837"><name>period</name><description>Orbital period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>period_err</name><description>Uncertainty of period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="60621.4" g-colstat:median="59111.7" g-colstat:min-value="58999.5" g-colstat:percentile03="59001.4" g-colstat:percentile97="59463.3"><name>epoch</name><description>Epoch of the periastron passage</description><unit>d</unit><ucd>src.var;time.epoch</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="0.8022" g-colstat:median="0.2412" g-colstat:min-value="0.0191" g-colstat:percentile03="0.08812" g-colstat:percentile97="0.51916"><name>ecc</name><description>Orbital eccentricity</description><unit>deg</unit><ucd>src.orbital.eccentricity</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="90" g-colstat:median="64.67" g-colstat:min-value="8.92" g-colstat:percentile03="31.204" g-colstat:percentile97="89.96"><name>incl</name><description>Orbital inclination</description><unit>deg</unit><ucd>src.orbital.inclination</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="179.91" g-colstat:median="84.97" g-colstat:min-value="0.08" g-colstat:percentile03="6.101" g-colstat:percentile97="175.051"><name>omega</name><description>Argument of periastron</description><unit>deg</unit><ucd>src.orbital.periastron</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>add_var</name><description>ECL(eclipses or spots), OSARG(Small Ampl RG oscillations),\ TEO(Tidally-excited oscillations), MISC(miscalloues)</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>ogle.miras</name><title>Long Period Variables</title><description> Coordinates and variability parameters of all Long Period Variables
(LPV, Miras) from the OGLE Variable Star Collection. The table was
constructed by merging all LPV-related data from all OGLE fields, such
as BLG, GD, LMC, and SMC.</description><nrows>65981</nrows><column><name>object_id</name><description>Star identifier</description><ucd>meta.id;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="289.029" g-colstat:median="265.459" g-colstat:min-value="87.2021" g-colstat:percentile03="175.481" g-colstat:percentile97="285.501"><name>raj2000</name><description>Right ascension</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column g-colstat:fillFactor="1" g-colstat:max-value="23.5637" g-colstat:median="-29.6631" g-colstat:min-value="-70.0793" g-colstat:percentile03="-63.3148" g-colstat:percentile97="5.08752"><name>dej2000</name><description>Declination</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>ogle4_id</name><description>OGLE-IV Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle3_id</name><description>OGLE-III Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle2_id</name><description>OGLE-II Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>vsx</name><description>VSX/GCVS/Macho or other designation</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle_vartype</name><description>OGLE type of variable star</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_targclass</name><description>Object class (star, QSO,...; use Simbad object classification http://simbad.u-strasbg.fr/simbad/sim-display?data=otypes if at all possible)</description><ucd>src.class</ucd><utype>ssa:Target.Class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_collection</name><description>A short handle naming the collection this spectrum belongs to.</description><utype>ssa:DataID.Collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_reference</name><description>URL or bibcode of a publication describing this data.</description><ucd>meta.bib.bibcode</ucd><utype>ssa:Curation.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="20.89" g-colstat:median="14.254" g-colstat:min-value="9.575" g-colstat:percentile03="11.338" g-colstat:percentile97="18.31"><name>mean_i</name><description>Intensity mean I-band magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.299768" g-colstat:max-value="23.813" g-colstat:median="18.907" g-colstat:min-value="12.533" g-colstat:percentile03="15.676" g-colstat:percentile97="21.523"><name>mean_v</name><description>Intensity mean V-band magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="22.94" g-colstat:median="2.441" g-colstat:min-value="0.8" g-colstat:percentile03="0.988" g-colstat:percentile97="3.952"><name>ampl_i</name><description>I-band amplitude of the primary period</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="1748" g-colstat:median="329.1" g-colstat:min-value="64.23" g-colstat:percentile03="151.734" g-colstat:percentile97="538.1"><name>period</name><description>Period of the variable star (primary/longest)</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>period_err</name><description>Uncertainty of period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column></table><table><name>ogle.rotating</name><title>Rotating Variables</title><description> Coordinates and variability parameters of all Rotating Variables from
the OGLE Variable Star Collection. The table was constructed by
merging all rotating variable-related data from all OGLE fields, such
as BLG, GD, LMC, and SMC.</description><nrows>18443</nrows><column><name>object_id</name><description>Star identifier</description><ucd>meta.id;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="285.374" g-colstat:median="269.709" g-colstat:min-value="258.224" g-colstat:percentile03="262.19" g-colstat:percentile97="274.545"><name>raj2000</name><description>Right ascension</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column g-colstat:fillFactor="1" g-colstat:max-value="-19.1854" g-colstat:median="-29.0962" g-colstat:min-value="-38.4517" g-colstat:percentile03="-35.7552" g-colstat:percentile97="-22.0086"><name>dej2000</name><description>Declination</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>ogle4_id</name><description>OGLE-IV Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle3_id</name><description>OGLE-III Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle2_id</name><description>OGLE-II Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>vsx</name><description>VSX/GCVS/Macho or other designation</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle_vartype</name><description>OGLE type of variable star</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_targclass</name><description>Object class (star, QSO,...; use Simbad object classification http://simbad.u-strasbg.fr/simbad/sim-display?data=otypes if at all possible)</description><ucd>src.class</ucd><utype>ssa:Target.Class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_collection</name><description>A short handle naming the collection this spectrum belongs to.</description><utype>ssa:DataID.Collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_reference</name><description>URL or bibcode of a publication describing this data.</description><ucd>meta.bib.bibcode</ucd><utype>ssa:Curation.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="20.239" g-colstat:median="16.781" g-colstat:min-value="12.069" g-colstat:percentile03="14.6663" g-colstat:percentile97="18.5787"><name>mean_i</name><description>Intensity mean I-band magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.969094" g-colstat:max-value="22.614" g-colstat:median="18.979" g-colstat:min-value="13.243" g-colstat:percentile03="16.4995" g-colstat:percentile97="21.2278"><name>mean_v</name><description>Intensity mean V-band magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="2.579" g-colstat:median="0.169" g-colstat:min-value="0.017" g-colstat:percentile03="0.064" g-colstat:percentile97="0.431"><name>ampl_i</name><description>I-band amplitude of the primary period</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="235.515" g-colstat:median="24.5486" g-colstat:min-value="0.113159" g-colstat:percentile03="1.48838" g-colstat:percentile97="81.3106"><name>period</name><description>Period of the variable star (primary/longest)</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>period_err</name><description>Uncertainty of period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.969094" g-colstat:max-value="3.947" g-colstat:median="0.304" g-colstat:min-value="0.021" g-colstat:percentile03="0.109" g-colstat:percentile97="0.89284"><name>ampl_v</name><description>V-band amplitude of the primary period</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column></table><table><name>ogle.rrlyr</name><title>RR Lyrae Variables</title><description> Coordinates and variability parameters of all RR Lyrae Variables from
the OGLE Variable Star Collection. The table was constructed by
merging all RR Lyr-related data from all OGLE fields, such as BLG, GD,
LMC, and SMC.</description><nrows>128473</nrows><column><name>object_id</name><description>Star identifier</description><ucd>meta.id;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="359.943" g-colstat:median="259.015" g-colstat:min-value="0.0122917" g-colstat:percentile03="15.7445" g-colstat:percentile97="282.812"><name>raj2000</name><description>Right ascension</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column g-colstat:fillFactor="1" g-colstat:max-value="23.5138" g-colstat:median="-35.5511" g-colstat:min-value="-83.456" g-colstat:percentile03="-74.1438" g-colstat:percentile97="-13.5248"><name>dej2000</name><description>Declination</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>ogle4_id</name><description>OGLE-IV Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle3_id</name><description>OGLE-III Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle2_id</name><description>OGLE-II Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>vsx</name><description>VSX/GCVS/Macho or other designation</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle_vartype</name><description>OGLE type of variable star</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>subtype</name><description>Subtype of Variable Star</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_targclass</name><description>Object class (star, QSO,...; use Simbad object classification http://simbad.u-strasbg.fr/simbad/sim-display?data=otypes if at all possible)</description><ucd>src.class</ucd><utype>ssa:Target.Class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_collection</name><description>A short handle naming the collection this spectrum belongs to.</description><utype>ssa:DataID.Collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_reference</name><description>URL or bibcode of a publication describing this data.</description><ucd>meta.bib.bibcode</ucd><utype>ssa:Curation.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="21.27" g-colstat:median="17.637" g-colstat:min-value="10.786" g-colstat:percentile03="14.833" g-colstat:percentile97="19.261"><name>mean_i</name><description>Intensity mean I-band magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.656823" g-colstat:max-value="22.628" g-colstat:median="19.288" g-colstat:min-value="11.816" g-colstat:percentile03="16.142" g-colstat:percentile97="21.151"><name>mean_v</name><description>Intensity mean V-band magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.999992" g-colstat:max-value="1.712" g-colstat:median="0.452" g-colstat:min-value="0.009" g-colstat:percentile03="0.137" g-colstat:percentile97="0.857"><name>ampl_i</name><description>I-band amplitude of the fundamental-mode period</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="0.998575" g-colstat:median="0.524747" g-colstat:min-value="0.200496" g-colstat:percentile03="0.265914" g-colstat:percentile97="0.724626"><name>period</name><description>Fundamental mode period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="0.00027872" g-colstat:median="1.14e-06" g-colstat:min-value="1e-08" g-colstat:percentile03="7e-08" g-colstat:percentile97="1.25084e-05"><name>period_err</name><description>Uncertainty of period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="57000.4" g-colstat:median="56999.6" g-colstat:min-value="55999.5" g-colstat:percentile03="55999.5" g-colstat:percentile97="57000"><name>epoch</name><description>Time of maximum brightness (fundamental mode)</description><unit>d</unit><ucd>src.var;time.epoch</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.0260522" g-colstat:max-value="0.524169" g-colstat:median="0.362729" g-colstat:min-value="0.217365" g-colstat:percentile03="0.323566" g-colstat:percentile97="0.419068"><name>period1</name><description>First-overtone period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.0260522" g-colstat:max-value="5.645e-05" g-colstat:median="1.2e-06" g-colstat:min-value="1e-08" g-colstat:percentile03="4e-07" g-colstat:percentile97="7.8e-06"><name>period1_err</name><description>Uncertainty of the first-overtone period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column></table><table><name>ogle.t2cep</name><title>Type II Cepheids</title><description> Coordinates and variability parameters of all Type II Cepheids from
the OGLE Variable Star Collection. The table was constructed by
merging all Type II Cepheids-related data from all OGLE fields, such
as BLG, GD, LMC, and SMC.</description><nrows>1985</nrows><column><name>object_id</name><description>Star identifier</description><ucd>meta.id;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="288.772" g-colstat:median="264.776" g-colstat:min-value="1.82725" g-colstat:percentile03="69.6383" g-colstat:percentile97="283.543"><name>raj2000</name><description>Right ascension</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column g-colstat:fillFactor="1" g-colstat:max-value="20.3328" g-colstat:median="-30.3679" g-colstat:min-value="-80.8652" g-colstat:percentile03="-72.6889" g-colstat:percentile97="-3.71163"><name>dej2000</name><description>Declination</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>ogle4_id</name><description>OGLE-IV Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle3_id</name><description>OGLE-III Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle2_id</name><description>OGLE-II Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>vsx</name><description>VSX/GCVS/Macho or other designation</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle_vartype</name><description>OGLE type of variable star</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>subtype</name><description>Subtype of Variable Star</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_targclass</name><description>Object class (star, QSO,...; use Simbad object classification http://simbad.u-strasbg.fr/simbad/sim-display?data=otypes if at all possible)</description><ucd>src.class</ucd><utype>ssa:Target.Class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_collection</name><description>A short handle naming the collection this spectrum belongs to.</description><utype>ssa:DataID.Collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_reference</name><description>URL or bibcode of a publication describing this data.</description><ucd>meta.bib.bibcode</ucd><utype>ssa:Curation.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="19.765" g-colstat:median="15.284" g-colstat:min-value="10.452" g-colstat:percentile03="11.8504" g-colstat:percentile97="18.223"><name>mean_i</name><description>Intensity mean I-band magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.662469" g-colstat:max-value="22.277" g-colstat:median="17.291" g-colstat:min-value="11.453" g-colstat:percentile03="13.7171" g-colstat:percentile97="21.1276"><name>mean_v</name><description>Intensity mean V-band magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="2.703" g-colstat:median="0.542" g-colstat:min-value="0.037" g-colstat:percentile03="0.124" g-colstat:percentile97="0.98796"><name>ampl_i</name><description>I-band amplitude of the primary period</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="84.8102" g-colstat:median="8.46799" g-colstat:min-value="0.786266" g-colstat:percentile03="1.08052" g-colstat:percentile97="40.9248"><name>period</name><description>Period of the variable star (primary/longest)</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="0.372452" g-colstat:median="0.000124" g-colstat:min-value="3e-07" g-colstat:percentile03="6e-07" g-colstat:percentile97="0.0194266"><name>period_err</name><description>Uncertainty of period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="60084.2" g-colstat:median="60001" g-colstat:min-value="56999.5" g-colstat:percentile03="57000.1" g-colstat:percentile97="60026.9"><name>epoch</name><description>Time of maximum brightness; mjd (HJD)</description><unit>d</unit><ucd>src.var;time.epoch</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column></table><table><name>ogle.transits</name><title>Transiting planet candidates</title><description> Coordinates and variability parameters of candidates for transiting
planets from the OGLE Variable Star Collection. The table was
constructed by merging all transits-related data</description><nrows>99</nrows><column><name>object_id</name><description>Star identifier</description><ucd>meta.id;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="271.404" g-colstat:median="269.615" g-colstat:min-value="267.43" g-colstat:percentile03="267.597" g-colstat:percentile97="271.283"><name>raj2000</name><description>Right ascension</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column g-colstat:fillFactor="1" g-colstat:max-value="-27.3756" g-colstat:median="-28.6918" g-colstat:min-value="-30.2504" g-colstat:percentile03="-30.0797" g-colstat:percentile97="-27.4825"><name>dej2000</name><description>Declination</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>ogle4_id</name><description>OGLE-IV Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle3_id</name><description>OGLE-III Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle2_id</name><description>OGLE-II Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>vsx</name><description>VSX/GCVS/Macho or other designation</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle_vartype</name><description>OGLE type of variable star</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_targclass</name><description>Object class (star, QSO,...; use Simbad object classification http://simbad.u-strasbg.fr/simbad/sim-display?data=otypes if at all possible)</description><ucd>src.class</ucd><utype>ssa:Target.Class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_collection</name><description>A short handle naming the collection this spectrum belongs to.</description><utype>ssa:DataID.Collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_reference</name><description>URL or bibcode of a publication describing this data.</description><ucd>meta.bib.bibcode</ucd><utype>ssa:Curation.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="15.497" g-colstat:median="15.128" g-colstat:min-value="12.8" g-colstat:percentile03="13.645" g-colstat:percentile97="15.4722"><name>mean_i</name><description>Intensity mean I-band magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="17.413" g-colstat:median="16.438" g-colstat:min-value="13.359" g-colstat:percentile03="14.7549" g-colstat:percentile97="17.3667"><name>mean_v</name><description>Intensity mean V-band magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="63.2195" g-colstat:median="5.85454" g-colstat:min-value="0.670014" g-colstat:percentile03="0.745405" g-colstat:percentile97="51.341"><name>period</name><description>Orbital period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>period_err</name><description>Uncertainty of period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="55503.5" g-colstat:median="55378.2" g-colstat:min-value="55260.5" g-colstat:percentile03="55261.2" g-colstat:percentile97="55402.7"><name>epoch</name><description>Time of inferior conjunction (transit)</description><unit>d</unit><ucd>src.var;time.epoch</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="0.7671" g-colstat:median="0.2232" g-colstat:min-value="0.0777" g-colstat:percentile03="0.087704" g-colstat:percentile97="0.580958"><name>duration</name><description>Duration of transit from 1st contact to 4th contact</description><unit>d</unit><ucd>time.duration</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="0.04167" g-colstat:median="0.006492" g-colstat:min-value="0.001189" g-colstat:percentile03="0.00150844" g-colstat:percentile97="0.0216799"><name>depth</name><description>Transit depth</description><ucd>src.var.amplitude</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="1" g-colstat:median="0.998" g-colstat:min-value="0.808" g-colstat:percentile03="0.84394" g-colstat:percentile97="1"><name>probability</name><description>Probability(planet signal)</description><ucd>stat.probability</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="96.27" g-colstat:median="20.52" g-colstat:min-value="6.25" g-colstat:percentile03="6.5122" g-colstat:percentile97="62.8922"><name>snr</name><description>Signal-to-noise ratio</description><ucd>stat.snr</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column></table><table><name>ogle.cv</name><title>Cataclysmic Variables</title><description> Coordinates and variability parameters of of dwarf nova candidates
(Cataclysmic Variables) from the OGLE Variable Star Collection.</description><nrows>1094</nrows><column><name>object_id</name><description>Star identifier</description><ucd>meta.id;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="282.683" g-colstat:median="270.569" g-colstat:min-value="0.203958" g-colstat:percentile03="231.478" g-colstat:percentile97="274.977"><name>raj2000</name><description>Right ascension</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column g-colstat:fillFactor="1" g-colstat:max-value="-19.6952" g-colstat:median="-29.0768" g-colstat:min-value="-79.5322" g-colstat:percentile03="-44.5426" g-colstat:percentile97="-22.0653"><name>dej2000</name><description>Declination</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>ogle_vartype</name><description>OGLE type of variable star</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_targclass</name><description>Object class (star, QSO,...; use Simbad object classification http://simbad.u-strasbg.fr/simbad/sim-display?data=otypes if at all possible)</description><ucd>src.class</ucd><utype>ssa:Target.Class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_collection</name><description>A short handle naming the collection this spectrum belongs to.</description><utype>ssa:DataID.Collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_reference</name><description>URL or bibcode of a publication describing this data.</description><ucd>meta.bib.bibcode</ucd><utype>ssa:Curation.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="6.26" g-colstat:median="1.7265" g-colstat:min-value="0.111" g-colstat:percentile03="0.27337" g-colstat:percentile97="3.91683"><name>ampl_i</name><description>I-band amplitude of the primary period</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="19.829" g-colstat:median="18.0925" g-colstat:min-value="11.778" g-colstat:percentile03="15.3816" g-colstat:percentile97="19.0724"><name>peak_i</name><description>I-band peak magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="217.1" g-colstat:median="8.95" g-colstat:min-value="1.1" g-colstat:percentile03="3.4" g-colstat:percentile97="25.321"><name>duration</name><description>Mean outburst duration</description><unit>d</unit><ucd>src.var;time.duration</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="22.764" g-colstat:median="1.3985" g-colstat:min-value="0.093" g-colstat:percentile03="0.20595" g-colstat:percentile97="10.2717"><name>frequency</name><description>Number of outbursts per year</description><unit>yr**-1</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.023766" g-colstat:max-value="3.96659" g-colstat:median="0.30509" g-colstat:min-value="0.0606085" g-colstat:percentile03="0.0648195" g-colstat:percentile97="1.58762"><name>period</name><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.023766" g-colstat:max-value="0.0001" g-colstat:median="7.5e-07" g-colstat:min-value="2e-08" g-colstat:percentile03="2e-08" g-colstat:percentile97="6.25e-05"><name>period_err</name><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.0137112" g-colstat:max-value="0.14474" g-colstat:median="0.0788" g-colstat:min-value="0.05805" g-colstat:percentile03="0.059457" g-colstat:percentile97="0.127638"><name>sh_period</name><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.0137112" g-colstat:max-value="0.0005" g-colstat:median="5e-05" g-colstat:min-value="1.2e-05" g-colstat:percentile03="1.536e-05" g-colstat:percentile97="0.000416"><name>sh_period_err</name><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>vsx</name><description>VSX designation</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>xray_id</name><description>X-ray source name</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.035649" g-colstat:max-value="6.18" g-colstat:median="1.08" g-colstat:min-value="0.12" g-colstat:percentile03="0.1368" g-colstat:percentile97="4.7424"><name>dist</name><description>Angular distance between the star and X-ray source</description><unit>arcsec</unit><ucd>pos.angdistance</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>chandra_id</name><description>Identifier in the Chandra Galactic Bulge Survey \ Full X-Ray Point Source Catalog (Jonker et al. 2011, 2014)</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>ogle.m54</name><description>The (almost) original table M54variables.dat with identification and
parameters of stars from Sagittarius Dwarf Spheroidal Galaxy and its
M54 Globular Cluster</description><nrows>172</nrows><column><name>object_id</name><description>Star identifier</description><ucd>meta.id;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>raj2000</name><description>Right ascension</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>dej2000</name><description>Declination</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>ogle4_id</name><description>OGLE-IV Identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>vsx</name><description>VSX/GCVS/Macho or other designation</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ogle_vartype</name><description>OGLE type of variable star</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>subtype</name><description>Subtype of Variable Star</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_targclass</name><description>Object class (star, QSO,...; use Simbad object classification http://simbad.u-strasbg.fr/simbad/sim-display?data=otypes if at all possible)</description><ucd>src.class</ucd><utype>ssa:Target.Class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_collection</name><description>A short handle naming the collection this spectrum belongs to.</description><utype>ssa:DataID.Collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_reference</name><description>URL or bibcode of a publication describing this data.</description><ucd>meta.bib.bibcode</ucd><utype>ssa:Curation.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>mean_i</name><description>Intensity mean I-band magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>mean_v</name><description>Intensity mean V-band magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>ampl_i</name><description>I-band amplitude of the primary period</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>period</name><description>Period of the variable star (primary/longest)</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>period_err</name><description>Uncertainty of period</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column></table><table><name>ogle.lightcurves</name><description>The united table with photometry points of all OGLE Lightcurves</description><nrows>1660000000</nrows><column><name>object_id</name><description>Object identifier for this photometry point</description><ucd>meta.id;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column><column><name>passband</name><description>Bandpass (i.e., rough spectral location) of this dataset</description><ucd>instr.bandpass</ucd><utype>ssa:DataID.Bandpass</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="60369.4" g-colstat:median="56154.1" g-colstat:min-value="50530.3" g-colstat:percentile03="52561" g-colstat:percentile97="57934.1"><name>obs_time</name><description>mjd of the photometry point</description><unit>d</unit><ucd>time.epoch</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="27.387" g-colstat:median="17.927" g-colstat:min-value="9.095" g-colstat:percentile03="13.972" g-colstat:percentile97="19.785"><name>magnitude</name><description>Stellar magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="33.35" g-colstat:median="0.022" g-colstat:min-value="0" g-colstat:percentile03="0.004" g-colstat:percentile97="0.112"><name>mag_err</name><description>Estimation of magnitude error</description><unit>mag</unit><ucd>stat.error;phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="4" g-colstat:median="4" g-colstat:min-value="0" g-colstat:percentile03="0" g-colstat:percentile97="4"><name>ogle_phase</name><description>OGLE project phase code (0–4): 2 = OGLE II, 3 = OGLE III, 4 = OGLE IV; 0 = not specified</description><ucd>meta.id;meta.dataset</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column></table><table><name>ogle.raw_data</name><title>Timeseries Metadata (Raw Table)</title><description>A united view over original ident tables for SSA/ObsCore ingestion</description><nrows>1500000</nrows><column><name>ssa_dstitle</name><description>A compact and descriptive designation of the dataset.</description><ucd>meta.title;meta.dataset</ucd><utype>ssa:DataID.Title</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_targname</name><description>Common name of object observed.</description><ucd>meta.id;src</ucd><utype>ssa:Target.Name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column><column><name>ssa_targclass</name><description>Object class (star, QSO,...; use Simbad object classification http://simbad.u-strasbg.fr/simbad/sim-display?data=otypes if at all possible)</description><ucd>src.class</ucd><utype>ssa:Target.Class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_pubdid</name><description>Dataset identifier assigned by the publisher</description><ucd>meta.ref.ivoid</ucd><utype>ssa:Curation.PublisherDID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_bandpass</name><description>Bandpass (i.e., rough spectral location) of this dataset; this should be the most appropriate term from the vocabulary http://www.ivoa.net/rdf/messenger.</description><ucd>instr.bandpass</ucd><utype>ssa:DataID.Bandpass</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_specmid</name><description>Midpoint of region covered in this dataset</description><unit>m</unit><ucd>instr.bandpass</ucd><utype>ssa:Char.SpectralAxis.Coverage.Location.Value</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specstart</name><description>Lower value of spectral coordinate</description><unit>m</unit><ucd>em.wl;stat.min</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Start</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specend</name><description>Upper value of spectral coordinate</description><unit>m</unit><ucd>em.wl;stat.max</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Stop</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specext</name><description>Width of the spectrum</description><unit>m</unit><ucd>instr.bandwidth</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Extent</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_fluxucd</name><description>UCD of the flux column</description><ucd>meta.ucd</ucd><utype>ssa:Char.FluxAxis.Ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_timeext</name><description>Exposure duration</description><unit>s</unit><ucd>time.duration</ucd><utype>ssa:Char.TimeAxis.Coverage.Bounds.Extent</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_length</name><description>Number of points in the spectrum</description><utype>ssa:Dataset.Length</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>ssa_collection</name><description>A short handle naming the collection this spectrum belongs to.</description><utype>ssa:DataID.Collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_reference</name><description>URL or bibcode of a publication describing this data.</description><ucd>meta.bib.bibcode</ucd><utype>ssa:Curation.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="59519.2" g-colstat:median="56910" g-colstat:min-value="49999.5" g-colstat:percentile03="52125" g-colstat:percentile97="57298.5"><name>t_min</name><description>Lower bound of times represented in the data set</description><unit>d</unit><ucd>time.start;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.starttime</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="60624" g-colstat:median="57878.3" g-colstat:min-value="51222.3" g-colstat:percentile03="57227.2" g-colstat:percentile97="58787"><name>t_max</name><description>Upper bound of times represented in the data set</description><unit>d</unit><ucd>time.end;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.stoptime</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>preview</name><description>Location of a preview; this can be NULL if no preview is available, 'AUTO' to make DaCHS try its luck itself, or a URL or a file path for pre-computed previews.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>accref</name><description>Access key for the data</description><ucd>meta.ref.url</ucd><utype>Access.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><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>yr</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><ucd>meta.code.mime</ucd><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 xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>ssa_location</name><description>ICRS location of aperture center</description><unit>deg</unit><ucd>pos.eq</ucd><utype>ssa:Char.SpatialAxis.Coverage.Location.Value</utype><dataType arraysize="2" extendedType="point" xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_region</name><description>Rough coverage based on location and aperture.</description><ucd>pos.outline;obs.field</ucd><dataType arraysize="*" extendedType="polygon" xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>datalink</name><description>A link to a datalink document for this timeseries</description><ucd>meta.ref.url</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>mean_mag</name><description>Stellar magnitude</description><unit>mag</unit><ucd>phot.mag;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column></table></schema><schema><name>gaiadr3_eb</name><title>Gaia DR3 eclipsing binaries</title><description>
This schema contains data re-published from the official
Gaia DR3 TAP services (e.g., ivo://uni-heidelberg.de/gaia/tap).
It provides simplified access to data related to eclipsing binary stars,
including epoch photometry and basic parameters from the gaiadr3.gaia_source
and gaiadr3.vari_eclipsing_binary tables. Timeseries are available via SSAP and DataLink.</description><table><name>gaiadr3_eb.ts_ssa</name><title>Gaia DR3 epoch photometry of eclipsing binaries</title><description> This table contains metadata of photometric timeseries for eclipsing
binaries from Gaia DR3 epoch photometry in IVOA SSA format. The actual
data is available through a datalink service.

 We store only fluxes, which can be turned into Vega magnitudes using
Gaia DR3 zero points: ZP_G_Vega = 25.6873668671 ± 0.0027553202
ZP_Bp_Vega = 25.3385422158 ± 0.0027901700 ZP_Rp_Vega = 24.7478955012 ±
0.0037793818

 mag = -2.5 log10(flux) + ZP

 Corresponding zero points will be stored as parameters in the
lightcurve instance</description><nrows>6546911</nrows><column g-colstat:fillFactor="1" g-colstat:max-value="6.91753e+18" g-colstat:median="4.25319e+18" g-colstat:min-value="4.66262e+13" g-colstat:percentile03="4.20767e+17" g-colstat:percentile97="6.43373e+18"><name>source_id</name><description>Unique source identifier within Gaia DR3</description><ucd>meta.id;meta.main</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag></column><column><name>accref</name><description>Access key for the data</description><ucd>meta.ref.url;meta.dataset</ucd><utype>ssa:Access.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><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>yr</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><ucd>meta.code.mime</ucd><utype>ssa:Access.Format</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="50000" g-colstat:median="50000" g-colstat:min-value="50000" g-colstat:percentile03="50000" g-colstat:percentile97="50000"><name>accsize</name><description>Size of the data in bytes</description><unit>byte</unit><utype>ssa:Access.Size</utype><dataType xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>ssa_dstitle</name><description>A compact and descriptive designation of the dataset.</description><ucd>meta.title;meta.dataset</ucd><utype>ssa:DataID.Title</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_creatordid</name><description>Dataset identifier assigned by the creator</description><ucd>meta.id</ucd><utype>ssa:DataID.CreatorDID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_pubdid</name><description>Dataset identifier assigned by the publisher</description><ucd>meta.ref.ivoid</ucd><utype>ssa:Curation.PublisherDID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_cdate</name><description>Processing/Creation date</description><ucd>time;meta.dataset</ucd><utype>ssa:DataID.Date</utype><dataType arraysize="19" extendedType="timestamp" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="61121" g-colstat:median="61121" g-colstat:min-value="61121" g-colstat:percentile03="61121" g-colstat:percentile97="61121"><name>ssa_pdate</name><description>Date last published.</description><utype>ssa:Curation.Date</utype><dataType arraysize="19" extendedType="timestamp" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_bandpass</name><description>Bandpass (i.e., rough spectral location) of this dataset; this should be the most appropriate term from the vocabulary http://www.ivoa.net/rdf/messenger.</description><ucd>instr.bandpass</ucd><utype>ssa:DataID.Bandpass</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_cversion</name><description>Creator assigned version for this dataset (will be incremented when this particular item is changed).</description><ucd>meta.version;meta.dataset</ucd><utype>ssa:DataID.Version</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_targname</name><description>Common name of object observed.</description><ucd>meta.id;src</ucd><utype>ssa:Target.Name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column><column><name>ssa_targclass</name><description>Object class (star, QSO,...; use Simbad object classification http://simbad.u-strasbg.fr/simbad/sim-display?data=otypes if at all possible)</description><ucd>src.class</ucd><utype>ssa:Target.Class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_redshift</name><description>Redshift of target object</description><ucd>src.redshift</ucd><utype>ssa:Target.Redshift</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_targetpos</name><description>Equatorial (ICRS) position of the target object.</description><ucd>pos.eq;src</ucd><utype>ssa:Target.pos.spoint</utype><dataType arraysize="2" extendedType="point" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_snr</name><description>Signal-to-noise ratio estimated for this dataset</description><ucd>stat.snr</ucd><utype>ssa:Derived.SNR</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_location</name><description>ICRS location of aperture center</description><unit>deg</unit><ucd>pos.eq</ucd><utype>ssa:Char.SpatialAxis.Coverage.Location.Value</utype><dataType arraysize="2" extendedType="point" xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="0.000277778" g-colstat:median="0.000277778" g-colstat:min-value="0.000277778" g-colstat:percentile03="0.000277778" g-colstat:percentile97="0.000277778"><name>ssa_aperture</name><description>Angular diameter of aperture</description><unit>deg</unit><ucd>phys.angSize;instr.fov</ucd><utype>ssa:Char.SpatialAxis.Coverage.Bounds.Extent</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_dateobs</name><description>Midpoint of exposure (MJD)</description><unit>d</unit><ucd>time.epoch</ucd><utype>ssa:Char.TimeAxis.Coverage.Location.Value</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="1037.65" g-colstat:median="951.881" g-colstat:min-value="0" g-colstat:percentile03="474.501" g-colstat:percentile97="1005.07"><name>ssa_timeext</name><description>Exposure duration</description><unit>s</unit><ucd>time.duration</ucd><utype>ssa:Char.TimeAxis.Coverage.Bounds.Extent</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="7.939e-07" g-colstat:median="6.72e-07" g-colstat:min-value="5.32e-07" g-colstat:percentile03="5.32e-07" g-colstat:percentile97="7.939e-07"><name>ssa_specmid</name><description>Midpoint of region covered in this dataset</description><unit>m</unit><ucd>instr.bandpass</ucd><utype>ssa:Char.SpectralAxis.Coverage.Location.Value</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="7.071e-07" g-colstat:median="4.27e-07" g-colstat:min-value="3.437e-07" g-colstat:percentile03="3.437e-07" g-colstat:percentile97="7.071e-07"><name>ssa_specext</name><description>Width of the spectrum</description><unit>m</unit><ucd>instr.bandwidth</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Extent</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="6.2e-07" g-colstat:median="3.309e-07" g-colstat:min-value="3.302e-07" g-colstat:percentile03="3.302e-07" g-colstat:percentile97="6.2e-07"><name>ssa_specstart</name><description>Lower value of spectral coordinate</description><unit>m</unit><ucd>em.wl;stat.min</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Start</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="1.047e-06" g-colstat:median="1.038e-06" g-colstat:min-value="6.739e-07" g-colstat:percentile03="6.739e-07" g-colstat:percentile97="1.047e-06"><name>ssa_specend</name><description>Upper value of spectral coordinate</description><unit>m</unit><ucd>em.wl;stat.max</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Stop</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="269" g-colstat:median="42" g-colstat:min-value="1" g-colstat:percentile03="3" g-colstat:percentile97="80"><name>ssa_length</name><description>Number of points in the spectrum</description><utype>ssa:Dataset.Length</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>ssa_model</name><description>Data model name and version</description><utype>ssa:Dataset.DataModel</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_csysname</name><description>System RA and Dec are given in</description><utype>ssa:CoordSys.SpaceFrame.Name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_timesi</name><description>Time conversion factor in Osuna-Salgado convention.</description><utype>ssa:Dataset.TimeSI</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_spectralsi</name><description>Spectral conversion factor in Osuna-Salgado convention</description><utype>ssa:Dataset.SpectralSI</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_spectralucd</name><description>UCD of the spectral column in the spectra served; when you have wavelengths, use em.wl for vacuum wavelengths, em.wl;obs.atmos for air wavelengths.</description><ucd>meta.ucd</ucd><utype>ssa:Char.SpectralAxis.Ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_spectralunit</name><description>Unit of the spectral column</description><ucd>meta.unit</ucd><utype>ssa:Char.SpectralAxis.Unit</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_fluxsi</name><description>Flux/magnitude conversion factor in Osuna-Salgado convention</description><utype>ssa:Dataset.FluxSI</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_fluxucd</name><description>UCD of the flux column</description><ucd>meta.ucd</ucd><utype>ssa:Char.FluxAxis.Ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_fluxunit</name><description>Unit of the flux column</description><ucd>meta.unit</ucd><utype>ssa:Char.FluxAxis.Unit</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_dstype</name><description>Type of data (spectrum, time series, etc)</description><utype>ssa:Dataset.Type</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_publisher</name><description>Publisher of the datasets included here.</description><ucd>meta.curation</ucd><utype>ssa:Curation.Publisher</utype><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType></column><column><name>ssa_creator</name><description>Creator of the datasets included here.</description><utype>ssa:DataID.Creator</utype><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>nullable</flag></column><column><name>ssa_collection</name><description>A short handle naming the collection this spectrum belongs to.</description><utype>ssa:DataID.Collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_instrument</name><description>Instrument or code used to produce these datasets</description><ucd>meta.id;instr</ucd><utype>ssa:DataID.Instrument</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_datasource</name><description>Method of generation for the data (one of survey, pointed, theory, custom, artificial).</description><utype>ssa:DataID.DataSource</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_creationtype</name><description>Process used to produce the data (archival, cutout, filtered, mosaic, projection, spectralExtraction, or catalogExtraction)</description><utype>ssa:DataID.CreationType</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_reference</name><description>URL or bibcode of a publication describing this data.</description><ucd>meta.bib.bibcode</ucd><utype>ssa:Curation.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_fluxstaterror</name><description>Statistical error in flux</description><ucd>stat.error;phot.flux.density;em</ucd><utype>ssa:Char.FluxAxis.Accuracy.StatError</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_fluxsyserror</name><description>Systematic error in flux</description><ucd>stat.error.sys;phot.flux.density;em</ucd><utype>ssa:Char.FluxAxis.Accuracy.SysError</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_fluxcalib</name><description>Type of flux calibration (ABSOLUTE, CALIBRATED, RELATIVE, NORMALIZED, or UNCALIBRATED).</description><utype>ssa:Char.FluxAxis.Calibration</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_binsize</name><description>Bin size in wavelength</description><unit>m</unit><ucd>em.wl;spect.binSize</ucd><utype>ssa:Char.SpectralAxis.Accuracy.BinSize</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_spectstaterror</name><description>Statistical error in wavelength</description><unit>m</unit><ucd>stat.error;em</ucd><utype>ssa:Char.SpectralAxis.Accuracy.StatError</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_spectsyserror</name><description>Systematic error in wavelength</description><unit>m</unit><ucd>stat.error.sys;em</ucd><utype>ssa:Char.SpectralAxis.Accuracy.SysError</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_speccalib</name><description>Type of wavelength calibration</description><ucd>meta.code.qual</ucd><utype>ssa:Char.SpectralAxis.Calibration</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_specres</name><description>Resolution (in meters of wavelength) on the spectral axis</description><unit>m</unit><ucd>spect.resolution;em.wl</ucd><utype>ssa:Char.SpectralAxis.Resolution</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_spaceerror</name><description>Statistical error in position</description><unit>deg</unit><ucd>stat.error;pos.eq</ucd><utype>ssa:Char.SpatialAxis.Accuracy.StatError</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_spacecalib</name><description>Type of calibration in spatial coordinates</description><ucd>meta.code.qual</ucd><utype>ssa:Char.SpatialAxis.Calibration</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_spaceres</name><description>Spatial resolution of data</description><unit>deg</unit><ucd>pos.angResolution</ucd><utype>ssa:Char.SpatialAxis.Resolution</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="59519.2" g-colstat:median="56910" g-colstat:min-value="49999.5" g-colstat:percentile03="52125" g-colstat:percentile97="57298.5"><name>t_min</name><description>Lower bound of times represented in the data set</description><unit>d</unit><ucd>time.start;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.starttime</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="60624" g-colstat:median="57878.3" g-colstat:min-value="51222.3" g-colstat:percentile03="57227.2" g-colstat:percentile97="58787"><name>t_max</name><description>Upper bound of times represented in the data set</description><unit>d</unit><ucd>time.end;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.stoptime</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>preview</name><description>Location of a preview; this can be NULL if no preview is available, 'AUTO' to make DaCHS try its luck itself, or a URL or a file path for pre-computed previews.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_region</name><description>Rough coverage based on location and aperture.</description><ucd>pos.outline;obs.field</ucd><dataType arraysize="*" extendedType="polygon" xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>datalink</name><description>A link to a datalink document for this timeseries</description><ucd>meta.ref.url</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>gaiadr3_eb.gaia_source_lite_eb</name><title>Subset of gaiadr3.gaia_source_lite table for eclipsing binaries</title><description>
This is a light version of the full gaiadr3.gaia_source table,
containing astrometric and photometric columns and most columns
with astrophysical parameters for eclipsing binaries.
The full DR3 is available via the TAP services ivo://uni-heidelberg.de/gaia/tap
and ivo://esavo/gaia/tap</description><nrows>2200000</nrows><column g-colstat:fillFactor="1" g-colstat:max-value="6.91753e+18" g-colstat:median="4.25293e+18" g-colstat:min-value="4.66262e+13" g-colstat:percentile03="4.21896e+17" g-colstat:percentile97="6.40955e+18"><name>source_id</name><description>Gaia DR3 unique source identifier. Note that this *cannot* be matched against the DR1 or DR2 source_ids.</description><ucd>meta.id;meta.main</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="360" g-colstat:median="258.059" g-colstat:min-value="0.000784986" g-colstat:percentile03="40.0816" g-colstat:percentile97="328.509"><name>ra</name><description>Barycentric Right Ascension in ICRS at epoch J2016.0</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 g-colstat:fillFactor="1" g-colstat:max-value="89.6039" g-colstat:median="-26.1955" g-colstat:min-value="-89.9073" g-colstat:percentile03="-68.875" g-colstat:percentile97="60.3253"><name>dec</name><description>Barycentric Declination in ICRS at epoch J2016.0</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 g-colstat:fillFactor="1" g-colstat:max-value="84.022" g-colstat:median="0.121729" g-colstat:min-value="0.00408885" g-colstat:percentile03="0.0137778" g-colstat:percentile97="0.641263"><name>ra_error</name><description>Standard error of ra (with cos δ applied).</description><unit>mas</unit><ucd>stat.error;pos.eq.ra</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="71.0491" g-colstat:median="0.115139" g-colstat:min-value="0.00477921" g-colstat:percentile03="0.0135991" g-colstat:percentile97="0.55124"><name>dec_error</name><description>Standard error of dec</description><unit>mas</unit><ucd>stat.error;pos.eq.dec</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.999303" g-colstat:max-value="346.608" g-colstat:median="-2.42835" g-colstat:min-value="-293.624" g-colstat:percentile03="-9.40079" g-colstat:percentile97="3.98937"><name>pmra</name><description>Proper motion in right ascension of the source in ICRS at J2016.0. This is the tangent plane projection (i.e., multiplied by cos(δ)) 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 xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column g-colstat:fillFactor="0.999303" g-colstat:max-value="282.451" g-colstat:median="-2.7849" g-colstat:min-value="-386.098" g-colstat:percentile03="-10.0655" g-colstat:percentile97="4.7029"><name>pmdec</name><description>Proper motion in declination at J2016.0.</description><unit>mas/yr</unit><ucd>pos.pm;pos.eq.dec</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column g-colstat:fillFactor="0.999303" g-colstat:max-value="2.4386" g-colstat:median="0.159382" g-colstat:min-value="0.00455464" g-colstat:percentile03="0.0180019" g-colstat:percentile97="0.782364"><name>pmra_error</name><description>Standard error of pmra</description><unit>mas/yr</unit><ucd>stat.error;pos.pm;pos.eq.ra</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.999303" g-colstat:max-value="2.18863" g-colstat:median="0.145832" g-colstat:min-value="0.00653421" g-colstat:percentile03="0.017402" g-colstat:percentile97="0.594502"><name>pmdec_error</name><description>Standard error of pmdec</description><unit>mas/yr</unit><ucd>stat.error;pos.pm;pos.eq.dec</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.999303" g-colstat:max-value="39.2363" g-colstat:median="0.287416" g-colstat:min-value="-41.277" g-colstat:percentile03="-0.700187" g-colstat:percentile97="1.54454"><name>parallax</name><description>Absolute barycentric stellar parallax of the source at the reference epoch J2016.0. If looking for a distance, consider joining with gedr3dist.main and using the distances from there.</description><unit>mas</unit><ucd>pos.parallax</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column g-colstat:fillFactor="0.999303" g-colstat:max-value="3.03176" g-colstat:median="0.155089" g-colstat:min-value="0.00795688" g-colstat:percentile03="0.0185213" g-colstat:percentile97="0.697196"><name>parallax_error</name><description>Standard error of parallax</description><unit>mas</unit><ucd>stat.error;pos.parallax</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="20.2085" g-colstat:median="18.2721" g-colstat:min-value="4.46021" g-colstat:percentile03="13.8259" g-colstat:percentile97="19.8935"><name>phot_g_mean_mag</name><description>Mean magnitude in the integrated G band. This is computed from the G-band mean flux applying the magnitude zero-point in the Vega scale. To obtain error estimates, see phot_g_mean_flux_over_error.</description><unit>mag</unit><ucd>phot.mag;em.opt</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>indexed</flag><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="3.09643e+08" g-colstat:median="924.932" g-colstat:min-value="155.427" g-colstat:percentile03="207.757" g-colstat:percentile97="55539.9"><name>phot_g_mean_flux</name><description>Integrated mean G flux</description><unit>s**-1</unit><ucd>phot.flux;em.opt;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="2.93005e+06" g-colstat:median="3.67366" g-colstat:min-value="0.389474" g-colstat:percentile03="1.20182" g-colstat:percentile97="137.807"><name>phot_g_mean_flux_error</name><description>Integrated mean G flux divided by its error. Errors are computed from the dispersion about the weighted mean of the input calibrated photometry.</description><unit>s**-1</unit><ucd>stat.error;phot.flux;em.opt</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="11582.6" g-colstat:median="222.067" g-colstat:min-value="18.4794" g-colstat:percentile03="81.0326" g-colstat:percentile97="1643.35"><name>phot_g_mean_flux_over_error</name><description>Error on the integrated mean G flux</description><ucd>stat.snr;phot.flux;em.opt</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.973156" g-colstat:max-value="21.4778" g-colstat:median="17.3558" g-colstat:min-value="3.99495" g-colstat:percentile03="13.2207" g-colstat:percentile97="19.022"><name>phot_rp_mean_mag</name><description>Mean magnitude in the integrated RP band. This is computed from the RP-band mean flux applying the magnitude zero-point in the Vega scale. To obtain error estimates, see phot_rp_mean_flux_over_error.</description><unit>mag</unit><ucd>phot.mag;em.opt.R</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>indexed</flag><flag>nullable</flag></column><column g-colstat:fillFactor="0.973156" g-colstat:max-value="2.00069e+08" g-colstat:median="905.389" g-colstat:min-value="20.3245" g-colstat:percentile03="195.144" g-colstat:percentile97="40819.9"><name>phot_rp_mean_flux</name><description>Integrated mean RP flux</description><unit>s**-1</unit><ucd>phot.flux;em.opt.R;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.973156" g-colstat:max-value="3.76672e+06" g-colstat:median="15.8989" g-colstat:min-value="0.000980777" g-colstat:percentile03="5.73934" g-colstat:percentile97="346.414"><name>phot_rp_mean_flux_error</name><description>Integrated mean RP flux divided by its error. Errors are computed from the dispersion about the weighted mean of the input calibrated photometry.</description><unit>s**-1</unit><ucd>stat.error;phot.flux;em.opt.R</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.973156" g-colstat:max-value="1.13206e+07" g-colstat:median="52.8485" g-colstat:min-value="0.160098" g-colstat:percentile03="12.4121" g-colstat:percentile97="486.435"><name>phot_rp_mean_flux_over_error</name><description>Error on the integrated mean RP flux</description><ucd>stat.snr;phot.flux;em.opt.R</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.972417" g-colstat:max-value="24.329" g-colstat:median="18.8198" g-colstat:min-value="4.34338" g-colstat:percentile03="14.1538" g-colstat:percentile97="20.8847"><name>phot_bp_mean_mag</name><description>Mean magnitude in the integrated BP band. This is computed from the BP-band mean flux applying the magnitude zero-point in the Vega scale. To obtain error estimates, see phot_bp_mean_flux_over_error.</description><unit>mag</unit><ucd>phot.mag;em.opt.B</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>indexed</flag><flag>nullable</flag></column><column g-colstat:fillFactor="0.972417" g-colstat:max-value="2.50073e+08" g-colstat:median="405.038" g-colstat:min-value="2.53394" g-colstat:percentile03="60.4709" g-colstat:percentile97="29778.2"><name>phot_bp_mean_flux</name><description>Integrated mean BP flux</description><unit>s**-1</unit><ucd>phot.flux;em.opt.B;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.972417" g-colstat:max-value="6.9551e+06" g-colstat:median="10.8582" g-colstat:min-value="0.00256938" g-colstat:percentile03="4.28406" g-colstat:percentile97="246.551"><name>phot_bp_mean_flux_error</name><description>Integrated mean BP flux divided by its error. Errors are computed from the dispersion about the weighted mean of the input calibrated photometry.</description><unit>s**-1</unit><ucd>stat.error;phot.flux;em.opt.B</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.972417" g-colstat:max-value="108080" g-colstat:median="35.9199" g-colstat:min-value="0.147873" g-colstat:percentile03="6.84717" g-colstat:percentile97="366.145"><name>phot_bp_mean_flux_over_error</name><description>Error on the integrated mean BP flux</description><ucd>stat.snr;phot.flux;em.opt.B</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.0352216" g-colstat:max-value="813.328" g-colstat:median="-3.91685" g-colstat:min-value="-724.532" g-colstat:percentile03="-97.0532" g-colstat:percentile97="93.7659"><name>radial_velocity</name><description>Spectroscopic radial velocity in the solar barycentric reference frame. For stars brighter than about 12 mag, this is the median of all single-epoch measurements. For fainter stars, RV estimation is from a co-added spectrum.</description><unit>km/s</unit><ucd>spect.dopplerVeloc.opt;em.opt.I</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.0352216" g-colstat:max-value="39.9822" g-colstat:median="8.15025" g-colstat:min-value="0.165133" g-colstat:percentile03="2.92384" g-colstat:percentile97="25.453"><name>radial_velocity_error</name><description>Error in radial_velocity; this is the error of the median for bright stars. For faint stars, it is derived from the cross-correlation function.</description><unit>km/s</unit><ucd>stat.error;spect.dopplerVeloc</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.999303" g-colstat:max-value="78.2375" g-colstat:median="1.026" g-colstat:min-value="0.494919" g-colstat:percentile03="0.930603" g-colstat:percentile97="2.39712"><name>ruwe</name><description>Renormalized Unit Weight Error; this is a revised measure for the overall consistency of the solution as defined by GAIA-C3-TN-LU-LL-124-01. A suggested cut on this is RUWE &lt;1.40) See the note for details.</description><ucd>stat.weight</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.999303" g-colstat:max-value="481.739" g-colstat:median="5.32069" g-colstat:min-value="0.0031313" g-colstat:percentile03="0.871537" g-colstat:percentile97="13.48"><name>pm</name><description>Total proper motion</description><unit>mas/yr</unit><ucd>pos.pm;pos.eq</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.584497" g-colstat:max-value="37043.8" g-colstat:median="4996.81" g-colstat:min-value="2737.3" g-colstat:percentile03="3700.63" g-colstat:percentile97="9425.85"><name>teff_gspphot</name><description>Effective temperature from GSP-Phot Aeneas best library using BP/RP spectra</description><unit>K</unit><ucd>phys.temperature.effective</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.584497" g-colstat:max-value="35687.3" g-colstat:median="4935.29" g-colstat:min-value="2729.12" g-colstat:percentile03="3666.58" g-colstat:percentile97="9300.77"><name>teff_gspphot_lower</name><description>Lower confidence level (16%) of effective temperature from GSP-Phot Aeneas best library using BP/RP spectra</description><unit>K</unit><ucd>phys.temperature.effective;stat.min</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.584497" g-colstat:max-value="37522" g-colstat:median="5096.18" g-colstat:min-value="2753.42" g-colstat:percentile03="3738.07" g-colstat:percentile97="9530.79"><name>teff_gspphot_upper</name><description>Upper confidence level (84%) of effective temperature from GSP-Phot Aeneas best library using BP/RP spectra</description><unit>K</unit><ucd>phys.temperature.effective;stat.max</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.584497" g-colstat:max-value="5.3757" g-colstat:median="4.6268" g-colstat:min-value="0.3353" g-colstat:percentile03="3.7317" g-colstat:percentile97="4.9816"><name>logg_gspphot</name><description>Surface gravity from GSP-Phot Aeneas best library using BP/RP spectra</description><unit>log(cm/s**2)</unit><ucd>phys.gravity</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.584497" g-colstat:max-value="5.3686" g-colstat:median="4.5815" g-colstat:min-value="0.3345" g-colstat:percentile03="3.689" g-colstat:percentile97="4.9103"><name>logg_gspphot_lower</name><description>Lower confidence level (16%) of surface gravity from GSP-Phot Aeneas best library using BP/RP spectra</description><unit>log(cm/s**2)</unit><ucd>phys.gravity;stat.min</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.584497" g-colstat:max-value="5.3852" g-colstat:median="4.6668" g-colstat:min-value="0.3379" g-colstat:percentile03="3.7689" g-colstat:percentile97="5.0373"><name>logg_gspphot_upper</name><description>Upper confidence level (84%) of surface gravity from GSP-Phot Aeneas best library using BP/RP spectra</description><unit>log(cm/s**2)</unit><ucd>phys.gravity;stat.max</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.584497" g-colstat:max-value="0.7994" g-colstat:median="-1.2585" g-colstat:min-value="-4.1498" g-colstat:percentile03="-3.4789" g-colstat:percentile97="0.010793"><name>mh_gspphot</name><description>Iron abundance from GSP-Phot Aeneas best library using BP/RP spectra</description><unit>dex</unit><ucd>phys.abund.Z</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.584497" g-colstat:max-value="0.7983" g-colstat:median="-1.3917" g-colstat:min-value="-4.1504" g-colstat:percentile03="-3.8351" g-colstat:percentile97="-0.0139"><name>mh_gspphot_lower</name><description>Lower confidence level (16%) of iron abundance from GSP-Phot Aeneas best library using BP/RP spectra</description><unit>dex</unit><ucd>phys.abund.Z;stat.min</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.584497" g-colstat:max-value="0.7999" g-colstat:median="-1.074" g-colstat:min-value="-4.1485" g-colstat:percentile03="-3.1635" g-colstat:percentile97="0.063793"><name>mh_gspphot_upper</name><description>Upper confidence level (84%) of iron abundance from GSP-Phot Aeneas best library using BP/RP spectra</description><unit>dex</unit><ucd>phys.abund.Z;stat.max</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column></table><table><name>gaiadr3_eb.vari_eclipsing_binary_lite</name><title>gaiadr3.vari_eclipsing_binary</title><description> This table describes the properties of eclipsing binaries resulting
from the variability analysis in Gaia DR3. It includes most columns
from the gaiadr3.vari_eclipsing_binary table.</description><nrows>2200000</nrows><column g-colstat:fillFactor="1" g-colstat:max-value="6.91753e+18" g-colstat:median="4.25238e+18" g-colstat:min-value="4.66262e+13" g-colstat:percentile03="4.22208e+17" g-colstat:percentile97="6.43423e+18"><name>source_id</name><description>Gaia DR3 unique source identifier. Note that this *cannot* be matched against the DR1 or DR2 source_ids.</description><ucd>meta.id;meta.main</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="2681.47" g-colstat:median="2221.84" g-colstat:min-value="1723.41" g-colstat:percentile03="2071.98" g-colstat:percentile97="2431.98"><name>reference_time</name><description>Reference time used for the geometric model fit; JD-2455197.5</description><unit>d</unit><ucd>time.epoch</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="4.99993" g-colstat:median="2.02518" g-colstat:min-value="0.00147299" g-colstat:percentile03="0.0715909" g-colstat:percentile97="4.12352"><name>frequency</name><description>Frequency of geometric model of the eclipsing binary light curve</description><unit>d**-1</unit><ucd>src.orbital</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="0.00075505" g-colstat:median="1.67443e-05" g-colstat:min-value="9.70883e-07" g-colstat:percentile03="2.5554e-06" g-colstat:percentile97="0.000111787"><name>frequency_error</name><description>Uncertainty of frequency</description><unit>d**-1</unit><ucd>stat.error</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="20.4283" g-colstat:median="18.1922" g-colstat:min-value="4.39965" g-colstat:percentile03="13.7562" g-colstat:percentile97="19.7644"><name>geom_model_reference_level</name><description>Magnitude reference level of geometric model</description><unit>mag</unit><ucd>phot.mag;em.opt</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="8.71247" g-colstat:median="0.00985517" g-colstat:min-value="1.26491e-08" g-colstat:percentile03="0.00109721" g-colstat:percentile97="0.213585"><name>geom_model_reference_level_error</name><description>Uncertainty of geomModel_Reference_Level</description><unit>mag</unit><ucd>stat.error;phot.mag;em.opt</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.983448" g-colstat:max-value="0.999877" g-colstat:median="0.25593" g-colstat:min-value="0.000619566" g-colstat:percentile03="0.125104" g-colstat:percentile97="0.584973"><name>geom_model_gaussian1_phase</name><description>Phase of the Gaussian 1 component</description><ucd>time.phase</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.983448" g-colstat:max-value="0.980981" g-colstat:median="0.00512896" g-colstat:min-value="1.51317e-11" g-colstat:percentile03="0.000444157" g-colstat:percentile97="0.0482322"><name>geom_model_gaussian1_phase_error</name><description>Uncertainty of geom_model_gaussian1_phase</description><ucd>stat.error;time.phase</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.983448" g-colstat:max-value="0.986123" g-colstat:median="0.0612252" g-colstat:min-value="9.79677e-06" g-colstat:percentile03="0.00882018" g-colstat:percentile97="0.153272"><name>geom_model_gaussian1_sigma</name><description>Standard deviation [phase] of Gaussian 1 component</description><ucd>stat.stdev</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.983448" g-colstat:max-value="0.901772" g-colstat:median="0.0084805" g-colstat:min-value="5.56823e-11" g-colstat:percentile03="0.000623569" g-colstat:percentile97="0.0784621"><name>geom_model_gaussian1_sigma_error</name><description>Uncertainty of geom_model_gaussian1_sigma</description><ucd>stat.error</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.983448" g-colstat:max-value="67.6638" g-colstat:median="0.261678" g-colstat:min-value="5.79657e-05" g-colstat:percentile03="0.025939" g-colstat:percentile97="0.886654"><name>geom_model_gaussian1_depth</name><description>Magnitude depth of Gaussian 1 component</description><unit>mag</unit><ucd>src.var.amplitude</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.982937" g-colstat:max-value="3.05651e+38" g-colstat:median="0.0292189" g-colstat:min-value="2.05692e-09" g-colstat:percentile03="0.00452314" g-colstat:percentile97="2.40275"><name>geom_model_gaussian1_depth_error</name><description>Uncertainty of geom_model_gaussian1_depth</description><unit>mag</unit><ucd>stat.error;src.var.amplitude</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.944332" g-colstat:max-value="0.999778" g-colstat:median="0.746508" g-colstat:min-value="0.000137739" g-colstat:percentile03="0.50011" g-colstat:percentile97="0.870844"><name>geom_model_gaussian2_phase</name><description>Phase of the Gaussian 2 component</description><ucd>time.phase</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.944332" g-colstat:max-value="0.978755" g-colstat:median="0.00551746" g-colstat:min-value="3.6354e-12" g-colstat:percentile03="0.000498334" g-colstat:percentile97="0.0505539"><name>geom_model_gaussian2_phase_error</name><description>Uncertainty of geom_model_gaussian2_phase</description><ucd>stat.error;time.phase</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.944332" g-colstat:max-value="0.902753" g-colstat:median="0.0637642" g-colstat:min-value="1.38794e-05" g-colstat:percentile03="0.00936824" g-colstat:percentile97="0.153746"><name>geom_model_gaussian2_sigma</name><description>Standard deviation [phase] of Gaussian 2 component</description><ucd>stat.stdev</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.944332" g-colstat:max-value="0.907649" g-colstat:median="0.0086296" g-colstat:min-value="8.94884e-12" g-colstat:percentile03="0.000690561" g-colstat:percentile97="0.0787718"><name>geom_model_gaussian2_sigma_error</name><description>Uncertainty of geom_model_gaussian2_sigma</description><ucd>stat.error</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.944332" g-colstat:max-value="35.8863" g-colstat:median="0.264853" g-colstat:min-value="5.54783e-06" g-colstat:percentile03="0.0284366" g-colstat:percentile97="0.853901"><name>geom_model_gaussian2_depth</name><description>Magnitude depth of Gaussian 2 component</description><unit>mag</unit><ucd>src.var.amplitude</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.943945" g-colstat:max-value="3.26746e+38" g-colstat:median="0.0291725" g-colstat:min-value="2.42056e-10" g-colstat:percentile03="0.00468881" g-colstat:percentile97="1.71336"><name>geom_model_gaussian2_depth_error</name><description>Uncertainty of geom_model_gaussian2_depth</description><unit>mag</unit><ucd>stat.error;src.var.amplitude</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.256298" g-colstat:max-value="0.902119" g-colstat:median="0.0703392" g-colstat:min-value="2.68924e-10" g-colstat:percentile03="0.00396442" g-colstat:percentile97="0.153098"><name>geom_model_cosine_half_period_amplitude</name><description>Amplitude of the cosine component with half the period of the geometric model</description><unit>mag</unit><ucd>src.var.amplitude</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.256298" g-colstat:max-value="0.421152" g-colstat:median="0.00980714" g-colstat:min-value="9.95268e-09" g-colstat:percentile03="0.0013416" g-colstat:percentile97="0.0459067"><name>geom_model_cosine_half_period_amplitude_error</name><description>Uncertainty of geom_model_cosine_half_period_amplitude</description><unit>mag</unit><ucd>stat.error;src.var.amplitude</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.256298" g-colstat:max-value="0.996347" g-colstat:median="0.262645" g-colstat:min-value="0.00103802" g-colstat:percentile03="0.154979" g-colstat:percentile97="0.800224"><name>geom_model_cosine_half_period_phase</name><description>Reference phase of the cosine component with half the period of the geometric model</description><ucd>time.phase</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.256298" g-colstat:max-value="0.980981" g-colstat:median="0.00290441" g-colstat:min-value="3.6354e-12" g-colstat:percentile03="0.00052581" g-colstat:percentile97="0.021261"><name>geom_model_cosine_half_period_phase_error</name><description>Uncertainty of geom_model_cosine_half_period_phase</description><ucd>stat.error;time.phase</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.983448" g-colstat:max-value="0.999877" g-colstat:median="0.5329" g-colstat:min-value="0.00087285" g-colstat:percentile03="0.160961" g-colstat:percentile97="0.830709"><name>derived_primary_ecl_phase</name><description>Primary eclipse: phase at geometrically deepest point</description><ucd>time.phase</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.983448" g-colstat:max-value="0.978941" g-colstat:median="0.00429342" g-colstat:min-value="3.6354e-12" g-colstat:percentile03="0.000237262" g-colstat:percentile97="0.0342524"><name>derived_primary_ecl_phase_error</name><description>Primary eclipse: uncertainty of derivedPrimary_Ecl_Phase</description><ucd>stat.error;time.phase</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.983448" g-colstat:max-value="0.4" g-colstat:median="0.324462" g-colstat:min-value="5.48619e-05" g-colstat:percentile03="0.0403565" g-colstat:percentile97="0.4"><name>derived_primary_ecl_duration</name><description>Primary eclipse: duration [phase fraction]</description><ucd>time.duration</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.983448" g-colstat:max-value="1.41001" g-colstat:median="0.0108508" g-colstat:min-value="0" g-colstat:percentile03="0" g-colstat:percentile97="0.147796"><name>derived_primary_ecl_duration_error</name><description>Primary eclipse: uncertainty of derivedPrimary_Ecl_Duration</description><ucd>stat.error;time.duration</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.983448" g-colstat:max-value="67.6638" g-colstat:median="0.353207" g-colstat:min-value="0.00377927" g-colstat:percentile03="0.0931933" g-colstat:percentile97="1.20735"><name>derived_primary_ecl_depth</name><description>Primary eclipse: depth</description><unit>mag</unit><ucd>src.var.amplitude</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.983102" g-colstat:max-value="3.2072e+38" g-colstat:median="0.0232247" g-colstat:min-value="0" g-colstat:percentile03="0.00240954" g-colstat:percentile97="2.34596"><name>derived_primary_ecl_depth_error</name><description>Primary eclipse: uncertainty of derivedPrimary_Ecl_Depth</description><unit>mag</unit><ucd>stat.error;src.var.amplitude</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.944332" g-colstat:max-value="1" g-colstat:median="0.436875" g-colstat:min-value="1.11264e-06" g-colstat:percentile03="0.140856" g-colstat:percentile97="0.852037"><name>derived_secondary_ecl_phase</name><description>Secondary eclipse: phase at geometrically second deepest point</description><ucd>time.phase</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.944332" g-colstat:max-value="1.43569" g-colstat:median="0.00657031" g-colstat:min-value="1.50937e-11" g-colstat:percentile03="0.000946931" g-colstat:percentile97="0.0626924"><name>derived_secondary_ecl_phase_error</name><description>Secondary eclipse: uncertainty of derivedSecondary_Ecl_Phase</description><ucd>stat.error;time.phase</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.944332" g-colstat:max-value="0.4" g-colstat:median="0.375096" g-colstat:min-value="7.77247e-05" g-colstat:percentile03="0.0658852" g-colstat:percentile97="0.4"><name>derived_secondary_ecl_duration</name><description>Secondary eclipse: duration [phase fraction]</description><ucd>time.duration</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.944332" g-colstat:max-value="1.4248" g-colstat:median="0.0176501" g-colstat:min-value="0" g-colstat:percentile03="0" g-colstat:percentile97="0.214754"><name>derived_secondary_ecl_duration_error</name><description>Secondary eclipse: uncertainty of derivedSecondary_Ecl_Duration</description><ucd>stat.error;time.duration</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.944332" g-colstat:max-value="6.38951" g-colstat:median="0.202386" g-colstat:min-value="7.10543e-15" g-colstat:percentile03="0.0197325" g-colstat:percentile97="0.613122"><name>derived_secondary_ecl_depth</name><description>Secondary eclipse: depth</description><unit>mag</unit><ucd>src.var.amplitude</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.943796" g-colstat:max-value="3.26746e+38" g-colstat:median="0.0191492" g-colstat:min-value="6.50215e-08" g-colstat:percentile03="0.00321978" g-colstat:percentile97="1.32109"><name>derived_secondary_ecl_depth_error</name><description>Secondary eclipse: uncertainty of derivedSecondary_Ecl_Depth</description><unit>mag</unit><ucd>stat.error;src.var.amplitude</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>model_type</name><description>Type of geometrical model of the light curve</description><ucd>meta.code.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>gaiadr3_eb.lightcurves</name><title>Gaia DR3 epoch photometry for eclipsing binaries</title><description>This table contains all rows of Gaia DR3 epoch photometry for
eclipsing binaries. The data were retrieved via the original Gaia DR3
DataLink service.</description><nrows>267547343</nrows><column><name>source_id</name><description>Unique source identifier within Gaia DR3</description><ucd>meta.id;meta.main</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag></column><column><name>obs_time</name><description>observation time converted to mjd ??? Different times are defined for each band. For G, it is the field-of-view transit averaged observation time. For BP and RP, it is the observation time of the BP CCD transit. The units are Barycentric JD (in TCB) in days -2,455,197.5, computed as follows. First the observation time is converted from On-board Mission Time (OBMT) into Julian date in TCB (Temps Coordonnee Barycentrique). Next a correction is applied for the light-travel time to the Solar system barycentre, resulting in Barycentric Julian Date (BJD). Finally, an offset of 2,455,197.5 days is applied (corresponding to a reference time $T_0$ at 2010-01-01T00:00:00) to have a conveniently small numerical value. Although the centroiding time accuracy of the individual CCD observations is (much) below 1~ms (e.g. in BP and RP), the G band observation time is averaged over typically 9 CCD observations taken in a time range of about 44sec.</description><unit>d</unit><ucd>time.epoch</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag></column><column><name>flux</name><description>Band flux value for the transit. For G band, it is a combination of individual SM-AF CCD fluxes. For BP and RP bands, it is an integrated CCD flux.</description><unit>s**-1</unit><ucd>phot.flux;em.opt;stat.mean</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>flux_error</name><description>Flux error. If the flux has been rejected or is unavailable, this error will be set to null.</description><unit>s**-1</unit><ucd>stat.error;phot.flux;em.opt</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>band</name><description>Photometric band. Values: G (per-transit combined SM-AF flux), BP (blue photometer integrated flux) and RP (red photometer integrated flux)</description><ucd>instr.bandpass</ucd><utype>ssa:DataID.Bandpass</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column></table><table><name>gaiadr3_eb.raw_data</name><title>Gaia DR3 epoch photometry of eclipsing binaries (Raw Table)</title><description>Gaia DR3 timeseries of eclipsing binaries for SSA/ObsCore ingestion</description><column><name>ssa_dstitle</name><description>A compact and descriptive designation of the dataset.</description><ucd>meta.title;meta.dataset</ucd><utype>ssa:DataID.Title</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_pubdid</name><description>Dataset identifier assigned by the publisher</description><ucd>meta.ref.ivoid</ucd><utype>ssa:Curation.PublisherDID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_bandpass</name><description>Bandpass (i.e., rough spectral location) of this dataset; this should be the most appropriate term from the vocabulary http://www.ivoa.net/rdf/messenger.</description><ucd>instr.bandpass</ucd><utype>ssa:DataID.Bandpass</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_specmid</name><description>Midpoint of region covered in this dataset</description><unit>m</unit><ucd>instr.bandpass</ucd><utype>ssa:Char.SpectralAxis.Coverage.Location.Value</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specstart</name><description>Lower value of spectral coordinate</description><unit>m</unit><ucd>em.wl;stat.min</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Start</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specend</name><description>Upper value of spectral coordinate</description><unit>m</unit><ucd>em.wl;stat.max</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Stop</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specext</name><description>Width of the spectrum</description><unit>m</unit><ucd>instr.bandwidth</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Extent</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_fluxucd</name><description>UCD of the flux column</description><ucd>meta.ucd</ucd><utype>ssa:Char.FluxAxis.Ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_timeext</name><description>Exposure duration</description><unit>s</unit><ucd>time.duration</ucd><utype>ssa:Char.TimeAxis.Coverage.Bounds.Extent</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_length</name><description>Number of points in the spectrum</description><utype>ssa:Dataset.Length</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="59519.2" g-colstat:median="56910" g-colstat:min-value="49999.5" g-colstat:percentile03="52125" g-colstat:percentile97="57298.5"><name>t_min</name><description>Lower bound of times represented in the data set</description><unit>d</unit><ucd>time.start;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.starttime</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="60624" g-colstat:median="57878.3" g-colstat:min-value="51222.3" g-colstat:percentile03="57227.2" g-colstat:percentile97="58787"><name>t_max</name><description>Upper bound of times represented in the data set</description><unit>d</unit><ucd>time.end;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.stoptime</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>preview</name><description>Location of a preview; this can be NULL if no preview is available, 'AUTO' to make DaCHS try its luck itself, or a URL or a file path for pre-computed previews.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>accref</name><description>Access key for the data</description><ucd>meta.ref.url</ucd><utype>Access.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><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>yr</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><ucd>meta.code.mime</ucd><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 xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>ssa_location</name><description>ICRS location of aperture center</description><unit>deg</unit><ucd>pos.eq</ucd><utype>ssa:Char.SpatialAxis.Coverage.Location.Value</utype><dataType arraysize="2" extendedType="point" xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_region</name><description>Rough coverage based on location and aperture.</description><ucd>pos.outline;obs.field</ucd><dataType arraysize="*" extendedType="polygon" xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>datalink</name><description>A link to a datalink document for this timeseries</description><ucd>meta.ref.url</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>source_id</name><description>Unique source identifier within Gaia DR3</description><ucd>meta.id;meta.main</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag></column></table></schema><schema><name>upjs_ts</name><title>Timeseries originating from small telescopes in Kolonica Observatory,
Slovakia</title><description>
Time series in this collection were derived from CCD images obtained at the Kolonica Observatory, Slovakia.

The observations were carried out to monitor selected fields centred on eclipsing binary
stars with two small telescopes.

The first instrument, ZIGA (PlaneWave CDK20, Corrected Dall–Kirkham), has a 508 mm aperture
and is equipped with a Moravian Instruments G4-16000 CCD camera with UBVRI Bessell photometric filters.
The second instrument, Alica (Explore Scientific MN-152, Maksutov–Newton), has a 152 mm aperture and
is equipped with a Moravian Instruments G2-8300 CCD camera with Sloan g′ r′ i′ photometric filters.
Both telescopes are currently in operation at the observatory.

The time series were produced with a custom photometric pipeline (Parimicha, Š., in preparation).
Differential photometry is performed using comparison star magnitudes from APASS DR9.

Beyond the primary target (typically an eclipsing binary), the pipeline derives calibrated magnitudes
for all stars in the field with sufficient signal-to-noise ratio.
This approach, we believe, may help researchers follow the behaviour of other interesting objects over time.

For each photometric point, we provide the list of comparison stars used in its calculation
(which may vary for each star and each image).

The corresponding calibrated images are published separately in the upjs_img image collection.</description><table><name>upjs_ts.ts_ssa</name><description> This table contains metadata about the photometric timeseries from
Kolonica in IVOA SSA format. The actual data is available through a
datalink service or in the lightcurves table.</description><column><name>accref</name><description>Access key for the data</description><ucd>meta.ref.url;meta.dataset</ucd><utype>ssa:Access.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>owner</name><description>Owner of the data</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>embargo</name><description>Date the data will become/became public</description><unit>yr</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><ucd>meta.code.mime</ucd><utype>ssa:Access.Format</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>accsize</name><description>Size of the data in bytes</description><unit>byte</unit><utype>ssa:Access.Size</utype><dataType xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>ssa_dstitle</name><description>A compact and descriptive designation of the dataset.</description><ucd>meta.title;meta.dataset</ucd><utype>ssa:DataID.Title</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_creatordid</name><description>Dataset identifier assigned by the creator</description><ucd>meta.id</ucd><utype>ssa:DataID.CreatorDID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_pubdid</name><description>Dataset identifier assigned by the publisher</description><ucd>meta.ref.ivoid</ucd><utype>ssa:Curation.PublisherDID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_cdate</name><description>Processing/Creation date</description><ucd>time;meta.dataset</ucd><utype>ssa:DataID.Date</utype><dataType arraysize="19" extendedType="timestamp" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="61121" g-colstat:median="61121" g-colstat:min-value="61121" g-colstat:percentile03="61121" g-colstat:percentile97="61121"><name>ssa_pdate</name><description>Date last published.</description><utype>ssa:Curation.Date</utype><dataType arraysize="19" extendedType="timestamp" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_bandpass</name><description>Bandpass (i.e., rough spectral location) of this dataset; this should be the most appropriate term from the vocabulary http://www.ivoa.net/rdf/messenger.</description><ucd>instr.bandpass</ucd><utype>ssa:DataID.Bandpass</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_cversion</name><description>Creator assigned version for this dataset (will be incremented when this particular item is changed).</description><ucd>meta.version;meta.dataset</ucd><utype>ssa:DataID.Version</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_targname</name><description>Common name of object observed.</description><ucd>meta.id;src</ucd><utype>ssa:Target.Name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_targclass</name><description>Object class (star, QSO,...; use Simbad object classification http://simbad.u-strasbg.fr/simbad/sim-display?data=otypes if at all possible)</description><ucd>src.class</ucd><utype>ssa:Target.Class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_redshift</name><description>Redshift of target object</description><ucd>src.redshift</ucd><utype>ssa:Target.Redshift</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_targetpos</name><description>Equatorial (ICRS) position of the target object.</description><ucd>pos.eq;src</ucd><utype>ssa:Target.pos.spoint</utype><dataType arraysize="2" extendedType="point" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_snr</name><description>Signal-to-noise ratio estimated for this dataset</description><ucd>stat.snr</ucd><utype>ssa:Derived.SNR</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_location</name><description>ICRS location of aperture center</description><unit>deg</unit><ucd>pos.eq</ucd><utype>ssa:Char.SpatialAxis.Coverage.Location.Value</utype><dataType arraysize="2" extendedType="point" xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="0.000277778" g-colstat:median="0.000277778" g-colstat:min-value="0.000277778" g-colstat:percentile03="0.000277778" g-colstat:percentile97="0.000277778"><name>ssa_aperture</name><description>Angular diameter of aperture</description><unit>deg</unit><ucd>phys.angSize;instr.fov</ucd><utype>ssa:Char.SpatialAxis.Coverage.Bounds.Extent</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_dateobs</name><description>Midpoint of exposure (MJD)</description><unit>d</unit><ucd>time.epoch</ucd><utype>ssa:Char.TimeAxis.Coverage.Location.Value</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>ssa_timeext</name><description>Exposure duration</description><unit>s</unit><ucd>time.duration</ucd><utype>ssa:Char.TimeAxis.Coverage.Bounds.Extent</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specmid</name><description>Midpoint of region covered in this dataset</description><unit>m</unit><ucd>instr.bandpass</ucd><utype>ssa:Char.SpectralAxis.Coverage.Location.Value</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specext</name><description>Width of the spectrum</description><unit>m</unit><ucd>instr.bandwidth</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Extent</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specstart</name><description>Lower value of spectral coordinate</description><unit>m</unit><ucd>em.wl;stat.min</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Start</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specend</name><description>Upper value of spectral coordinate</description><unit>m</unit><ucd>em.wl;stat.max</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Stop</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_length</name><description>Number of points in the spectrum</description><utype>ssa:Dataset.Length</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>ssa_model</name><description>Data model name and version</description><utype>ssa:Dataset.DataModel</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_csysname</name><description>System RA and Dec are given in</description><utype>ssa:CoordSys.SpaceFrame.Name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_timesi</name><description>Time conversion factor in Osuna-Salgado convention.</description><utype>ssa:Dataset.TimeSI</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_spectralsi</name><description>Spectral conversion factor in Osuna-Salgado convention</description><utype>ssa:Dataset.SpectralSI</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_spectralucd</name><description>UCD of the spectral column in the spectra served; when you have wavelengths, use em.wl for vacuum wavelengths, em.wl;obs.atmos for air wavelengths.</description><ucd>meta.ucd</ucd><utype>ssa:Char.SpectralAxis.Ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_spectralunit</name><description>Unit of the spectral column</description><ucd>meta.unit</ucd><utype>ssa:Char.SpectralAxis.Unit</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_fluxsi</name><description>Flux/magnitude conversion factor in Osuna-Salgado convention</description><utype>ssa:Dataset.FluxSI</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_fluxucd</name><description>UCD of the flux column</description><ucd>meta.ucd</ucd><utype>ssa:Char.FluxAxis.Ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_fluxunit</name><description>Unit of the flux column</description><ucd>meta.unit</ucd><utype>ssa:Char.FluxAxis.Unit</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_dstype</name><description>Type of data (spectrum, time series, etc)</description><utype>ssa:Dataset.Type</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_publisher</name><description>Publisher of the datasets included here.</description><ucd>meta.curation</ucd><utype>ssa:Curation.Publisher</utype><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType></column><column><name>ssa_creator</name><description>Creator of the datasets included here.</description><utype>ssa:DataID.Creator</utype><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>nullable</flag></column><column><name>ssa_collection</name><description>A short handle naming the collection this spectrum belongs to.</description><utype>ssa:DataID.Collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_instrument</name><description>Instrument or code used to produce these datasets</description><ucd>meta.id;instr</ucd><utype>ssa:DataID.Instrument</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_datasource</name><description>Method of generation for the data (one of survey, pointed, theory, custom, artificial).</description><utype>ssa:DataID.DataSource</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_creationtype</name><description>Process used to produce the data (archival, cutout, filtered, mosaic, projection, spectralExtraction, or catalogExtraction)</description><utype>ssa:DataID.CreationType</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_reference</name><description>URL or bibcode of a publication describing this data.</description><ucd>meta.bib.bibcode</ucd><utype>ssa:Curation.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_fluxstaterror</name><description>Statistical error in flux</description><ucd>stat.error;phot.flux.density;em</ucd><utype>ssa:Char.FluxAxis.Accuracy.StatError</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_fluxsyserror</name><description>Systematic error in flux</description><ucd>stat.error.sys;phot.flux.density;em</ucd><utype>ssa:Char.FluxAxis.Accuracy.SysError</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_fluxcalib</name><description>Type of flux calibration (ABSOLUTE, CALIBRATED, RELATIVE, NORMALIZED, or UNCALIBRATED).</description><utype>ssa:Char.FluxAxis.Calibration</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_binsize</name><description>Bin size in wavelength</description><unit>m</unit><ucd>em.wl;spect.binSize</ucd><utype>ssa:Char.SpectralAxis.Accuracy.BinSize</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_spectstaterror</name><description>Statistical error in wavelength</description><unit>m</unit><ucd>stat.error;em</ucd><utype>ssa:Char.SpectralAxis.Accuracy.StatError</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_spectsyserror</name><description>Systematic error in wavelength</description><unit>m</unit><ucd>stat.error.sys;em</ucd><utype>ssa:Char.SpectralAxis.Accuracy.SysError</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_speccalib</name><description>Type of wavelength calibration</description><ucd>meta.code.qual</ucd><utype>ssa:Char.SpectralAxis.Calibration</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_specres</name><description>Resolution (in meters of wavelength) on the spectral axis</description><unit>m</unit><ucd>spect.resolution;em.wl</ucd><utype>ssa:Char.SpectralAxis.Resolution</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_spaceerror</name><description>Statistical error in position</description><unit>deg</unit><ucd>stat.error;pos.eq</ucd><utype>ssa:Char.SpatialAxis.Accuracy.StatError</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_spacecalib</name><description>Type of calibration in spatial coordinates</description><ucd>meta.code.qual</ucd><utype>ssa:Char.SpatialAxis.Calibration</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_spaceres</name><description>Spatial resolution of data</description><unit>deg</unit><ucd>pos.angResolution</ucd><utype>ssa:Char.SpatialAxis.Resolution</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="59519.2" g-colstat:median="56910" g-colstat:min-value="49999.5" g-colstat:percentile03="52125" g-colstat:percentile97="57298.5"><name>t_min</name><description>Lower bound of times represented in the data set</description><unit>d</unit><ucd>time.start;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.starttime</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="60624" g-colstat:median="57878.3" g-colstat:min-value="51222.3" g-colstat:percentile03="57227.2" g-colstat:percentile97="58787"><name>t_max</name><description>Upper bound of times represented in the data set</description><unit>d</unit><ucd>time.end;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.stoptime</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>preview</name><description>Location of a preview; this can be NULL if no preview is available, 'AUTO' to make DaCHS try its luck itself, or a URL or a file path for pre-computed previews.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_region</name><description>Rough coverage based on location and aperture.</description><ucd>pos.outline;obs.field</ucd><dataType arraysize="*" extendedType="polygon" xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>datalink</name><description>A link to a datalink document for this lightcurve.</description><ucd>meta.ref.url</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>object_id</name><description>Object id in the original table</description><ucd>meta.id;meta.main</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>mean_mag</name><description>stellar magnitude</description><unit>mag</unit><ucd>phot.mag;stat.mean</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>ra</name><description>Right ascension</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>dec</name><description>Declination</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column></table><table><name>upjs_ts.objects</name><description>The external table with objects</description><nrows>14331</nrows><column g-colstat:fillFactor="1" g-colstat:max-value="14331" g-colstat:median="7166" g-colstat:min-value="1" g-colstat:percentile03="430.9" g-colstat:percentile97="13901.1"><name>object_id</name><description>Internal object identifier</description><ucd>meta.id;meta.main</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>indexed</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="359.861" g-colstat:median="257.029" g-colstat:min-value="2.9171" g-colstat:percentile03="5.13877" g-colstat:percentile97="357.323"><name>ra</name><description>Right ascension from</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="86.001" g-colstat:median="60.4551" g-colstat:min-value="5.2806" g-colstat:percentile03="26.6036" g-colstat:percentile97="80.567"><name>dec</name><description>Declination</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag></column><column><name>coordequ</name><description>Equatorial coordiantes, ICRS</description><ucd>pos.eq</ucd><dataType arraysize="2" extendedType="point" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="3.44302e+18" g-colstat:median="1.8666e+18" g-colstat:min-value="4.13944e+17" g-colstat:percentile03="4.14021e+17" g-colstat:percentile97="3.43099e+18"><name>gaia_name</name><description>Gaia DR3 identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType></column><column><name>simbad_name</name><description>Simbad resolvable name</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>vsx_name</name><description>VSX name</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>class</name><description>Target class</description><ucd>src.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>description</name><description>Target description</description><ucd>meta.note</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>upjs_ts.lightcurves</name><description>The external table with photometric points of all objects</description><nrows>1500000</nrows><column g-colstat:fillFactor="1" g-colstat:max-value="1.47816e+06" g-colstat:median="744220" g-colstat:min-value="1" g-colstat:percentile03="44177.2" g-colstat:percentile97="1.43394e+06"><name>id</name><description>Identifier for this photometry point</description><ucd>meta.id;meta.main</ucd><dataType xsi:type="vs:VOTableType">long</dataType></column><column g-colstat:fillFactor="1" g-colstat:max-value="14331" g-colstat:median="7153" g-colstat:min-value="1" g-colstat:percentile03="136" g-colstat:percentile97="14253"><name>object_id</name><description>Object identifier for this photometry point</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>indexed</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="59518.1" g-colstat:median="58777.9" g-colstat:min-value="58724.9" g-colstat:percentile03="58725" g-colstat:percentile97="59518"><name>dateobs</name><description>Timestamp with timezone</description><ucd>time.epoch</ucd><dataType arraysize="19" extendedType="timestamp" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="99.99" g-colstat:median="13.8027" g-colstat:min-value="4.4477" g-colstat:percentile03="10.2959" g-colstat:percentile97="16.0076"><name>magnitude</name><description>Stellar magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="18.8468" g-colstat:median="0.0642" g-colstat:min-value="0.0141" g-colstat:percentile03="0.0314" g-colstat:percentile97="0.2285"><name>mag_err</name><description>Estimation of magnitude error</description><unit>mag</unit><ucd>stat.error;phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="9" g-colstat:median="3" g-colstat:min-value="2" g-colstat:percentile03="2" g-colstat:percentile97="9"><name>photosys_id</name><description>Photometric system identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>indexed</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="99.99" g-colstat:median="4.2267" g-colstat:min-value="-3.6834" g-colstat:percentile03="0.671425" g-colstat:percentile97="99.99"><name>mag_diff</name><description>Differential magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="9.99" g-colstat:median="0.0268" g-colstat:min-value="0.0004" g-colstat:percentile03="0.0026" g-colstat:percentile97="9.99"><name>mag_diff_err</name><description>Estimation of differential magnitude error</description><unit>mag</unit><ucd>stat.error;phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="0" g-colstat:median="0" g-colstat:min-value="0" g-colstat:percentile03="0" g-colstat:percentile97="0"><name>quality</name><description>Quality flag</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>image_filename</name><description>Path to the fits image</description><ucd>meta.id;meta.fits</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>comp_stars</name><description>Gaia DR3 ids of comparison stars for the photomery point</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column></table><table><name>upjs_ts.raw_data</name><description>A view over lightcurves and objects for SSA/ObsCore ingestion</description><column><name>ssa_dstitle</name><description>A compact and descriptive designation of the dataset.</description><ucd>meta.title;meta.dataset</ucd><utype>ssa:DataID.Title</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_targname</name><description>Common name of object observed.</description><ucd>meta.id;src</ucd><utype>ssa:Target.Name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_pubdid</name><description>Dataset identifier assigned by the publisher</description><ucd>meta.ref.ivoid</ucd><utype>ssa:Curation.PublisherDID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_length</name><description>Number of points in the spectrum</description><utype>ssa:Dataset.Length</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>ssa_timeext</name><description>Exposure duration</description><unit>s</unit><ucd>time.duration</ucd><utype>ssa:Char.TimeAxis.Coverage.Bounds.Extent</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_bandpass</name><description>Bandpass (i.e., rough spectral location) of this dataset; this should be the most appropriate term from the vocabulary http://www.ivoa.net/rdf/messenger.</description><ucd>instr.bandpass</ucd><utype>ssa:DataID.Bandpass</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_specmid</name><description>Midpoint of region covered in this dataset</description><unit>m</unit><ucd>instr.bandpass</ucd><utype>ssa:Char.SpectralAxis.Coverage.Location.Value</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specstart</name><description>Lower value of spectral coordinate</description><unit>m</unit><ucd>em.wl;stat.min</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Start</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specend</name><description>Upper value of spectral coordinate</description><unit>m</unit><ucd>em.wl;stat.max</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Stop</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specext</name><description>Width of the spectrum</description><unit>m</unit><ucd>instr.bandwidth</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Extent</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_fluxucd</name><description>UCD of the flux column</description><ucd>meta.ucd</ucd><utype>ssa:Char.FluxAxis.Ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_csysname</name><description>System RA and Dec are given in</description><utype>ssa:CoordSys.SpaceFrame.Name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column g-colstat:fillFactor="1" g-colstat:max-value="59519.2" g-colstat:median="56910" g-colstat:min-value="49999.5" g-colstat:percentile03="52125" g-colstat:percentile97="57298.5"><name>t_min</name><description>Lower bound of times represented in the data set</description><unit>d</unit><ucd>time.start;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.starttime</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="60624" g-colstat:median="57878.3" g-colstat:min-value="51222.3" g-colstat:percentile03="57227.2" g-colstat:percentile97="58787"><name>t_max</name><description>Upper bound of times represented in the data set</description><unit>d</unit><ucd>time.end;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.stoptime</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>accref</name><description>Access key for the data</description><ucd>meta.ref.url</ucd><utype>Access.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>preview</name><description>Location of a preview; this can be NULL if no preview is available, 'AUTO' to make DaCHS try its luck itself, or a URL or a file path for pre-computed previews.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_location</name><description>ICRS location of aperture center</description><unit>deg</unit><ucd>pos.eq</ucd><utype>ssa:Char.SpatialAxis.Coverage.Location.Value</utype><dataType arraysize="2" extendedType="point" xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_region</name><description>Rough coverage based on location and aperture.</description><ucd>pos.outline;obs.field</ucd><dataType arraysize="*" extendedType="polygon" xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>datalink</name><description>A link to a datalink document for this lightcurve.</description><ucd>meta.ref.url</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>object_id</name><description>Object id in the original table</description><ucd>meta.id;meta.main</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>mean_mag</name><description>stellar magnitude</description><unit>mag</unit><ucd>phot.mag;stat.mean</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>ra</name><description>Right ascension</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>dec</name><description>Declination</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column></table></schema><schema><name>upjs_img</name><title>Images From Kolonica Observatory</title><description>
The images in this collection were acquired to monitor selected sky fields around 
eclipsing binary stars at the Kolonica Observatory, Slovakia. 

The Kolonica Observatory is located on the Kolonica Saddle and is operated by the Vihorlat
Observatory in Humenné. It lies in the northeastern part of Slovakia, within the Poloniny Dark-Sky Park, 
a location with the darkest night skies in Slovakia and among the darkest in Europe.

Two small telescopes were used to obtain the images in this collection.
The first telescope, named ZIGA (PlaneWave CDK20 — Corrected Dall–Kirkham), has a 508 mm aperture
and is equipped with a Moravian Instruments G4-16000 CCD camera and UBVRI Bessell photometric filters.
The second telescope, named Alica (Explore Scientific MN-152 — Maksutov–Newton), has a 152 mm aperture
and is equipped with a Moravian Instruments G2-8300 CCD camera and g′ r′ i′ Sloan photometric filters.
Both telescopes are currently in operation, and the archive is expected to be updated with new data.

We publish the photometric time series derived from these images in the upjs_ts collection.</description><table><name>upjs_img.main</name><description>
The images in this collection were acquired to monitor selected sky fields around 
eclipsing binary stars at the Kolonica Observatory, Slovakia. 

The Kolonica Observatory is located on the Kolonica Saddle and is operated by the Vihorlat
Observatory in Humenné. It lies in the northeastern part of Slovakia, within the Poloniny Dark-Sky Park, 
a location with the darkest night skies in Slovakia and among the darkest in Europe.

Two small telescopes were used to obtain the images in this collection.
The first telescope, named ZIGA (PlaneWave CDK20 — Corrected Dall–Kirkham), has a 508 mm aperture
and is equipped with a Moravian Instruments G4-16000 CCD camera and UBVRI Bessell photometric filters.
The second telescope, named Alica (Explore Scientific MN-152 — Maksutov–Newton), has a 152 mm aperture
and is equipped with a Moravian Instruments G2-8300 CCD camera and g′ r′ i′ Sloan photometric filters.
Both telescopes are currently in operation, and the archive is expected to be updated with new data.

We publish the photometric time series derived from these images in the upjs_ts collection.</description><nrows>8158</nrows><column><name>dataproduct_type</name><description>High level scientific classification of the data product, taken from an enumeration</description><ucd>meta.code.class</ucd><utype>obscore:obsdataset.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.code.class</ucd><utype>obscore:obsdataset.dataproductsubtype</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="2" g-colstat:median="2" g-colstat:min-value="2" g-colstat:percentile03="2" g-colstat:percentile97="2"><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:obsdataset.caliblevel</utype><dataType 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.ivoid</ucd><utype>obscore:curation.publisherdid</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><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 g-colstat:fillFactor="1" g-colstat:max-value="4109" g-colstat:median="3440" g-colstat:min-value="889" g-colstat:percentile03="908" g-colstat:percentile97="3797"><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 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 g-colstat:fillFactor="1" g-colstat:max-value="359.844" g-colstat:median="225.28" g-colstat:min-value="3.20523" g-colstat:percentile03="3.32415" g-colstat:percentile97="359.487"><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 xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="85.6943" g-colstat:median="73.0316" g-colstat:min-value="0.152042" g-colstat:percentile03="5.60351" g-colstat:percentile97="85.6839"><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 xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="3.82473" g-colstat:median="0.874943" g-colstat:min-value="0.43387" g-colstat:percentile03="0.436915" g-colstat:percentile97="1.76795"><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 xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>s_region</name><description>Region covered by the observation, as a polygon</description><ucd>pos.outline;obs.field</ucd><utype>obscore:char.spatialaxis.coverage.support.area</utype><dataType arraysize="*" extendedType="adql:REGION" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="4.97314" g-colstat:median="1.08765" g-colstat:min-value="0.00985535" g-colstat:percentile03="1.08478" g-colstat:percentile97="3.02574"><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.value</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="59518.1" g-colstat:median="58787.8" g-colstat:min-value="58724.8" g-colstat:percentile03="58725" g-colstat:percentile97="59517.9"><name>t_min</name><description>Lower bound of times represented in the data set</description><unit>d</unit><ucd>time.start;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.starttime</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="59518.1" g-colstat:median="58787.8" g-colstat:min-value="58724.8" g-colstat:percentile03="58725" g-colstat:percentile97="59517.9"><name>t_max</name><description>Upper bound of times represented in the data set</description><unit>d</unit><ucd>time.end;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.stoptime</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="120" g-colstat:median="30" g-colstat:min-value="10" g-colstat:percentile03="10" g-colstat:percentile97="100"><name>t_exptime</name><description>Total exposure time</description><unit>s</unit><ucd>time.duration;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.support.extent</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><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.value</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="7.02e-07" g-colstat:median="4.85e-07" g-colstat:min-value="3.6e-07" g-colstat:percentile03="3.6e-07" g-colstat:percentile97="7.02e-07"><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.lolimit</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="1.102e-06" g-colstat:median="6.7e-07" g-colstat:min-value="5.55e-07" g-colstat:percentile03="5.6e-07" g-colstat:percentile97="1.102e-06"><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.hilimit</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>em_res_power</name><description>Spectral resolving power lambda/delta lambda</description><ucd>spect.resolution</ucd><utype>obscore:char.spectralaxis.resolution.resolpower.refval</utype><dataType xsi:type="vs:VOTableType">float</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 g-colstat:fillFactor="1" g-colstat:max-value="2048" g-colstat:median="2048" g-colstat:min-value="1024" g-colstat:percentile03="1024" g-colstat:percentile97="2048"><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 xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="2048" g-colstat:median="2048" g-colstat:min-value="1024" g-colstat:percentile03="1024" g-colstat:percentile97="2048"><name>s_xel2</name><description>Number of elements (typically pixels) along the second spatial axis.</description><ucd>meta.number</ucd><utype>obscore:Char.SpatialAxis.numBins2</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="1" g-colstat:median="1" g-colstat:min-value="1" g-colstat:percentile03="1" g-colstat:percentile97="1"><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 xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="1" g-colstat:median="1" g-colstat:min-value="1" g-colstat:percentile03="1" g-colstat:percentile97="1"><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 xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>pol_xel</name><description>Number of elements (typically pixels) along the polarization axis.</description><ucd>meta.number</ucd><utype>obscore:Char.PolarizationAxis.numBins</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="4.97314" g-colstat:median="1.08765" g-colstat:min-value="0.00985535" g-colstat:percentile03="1.08478" g-colstat:percentile97="3.02574"><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 xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>em_ucd</name><description>Nature of the product's spectral axis (typically, em.freq, em.wl, or em.energy)</description><ucd>meta.ucd</ucd><utype>obscore:Char.SpectralAxis.ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>source_table</name><description>Name of a TAP-queriable table this data originates from. This source table usually provides more information on the the data than what is given in obscore. See the TAP_SCHEMA of the originating TAP server for details.</description><ucd>meta.id;meta.table</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>bandpass_id</name><description>Free-form name of the bandpass (filter, detector, whatever else defines the spectral response) this observation was taken in.</description><ucd>instr.bandpass</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table></schema><schema><name>personal</name><title>Observations from personal collections</title><description> This project is dedicated to publishing observations of variable
stars, in particular light curves, from personal archives. All data
has been published with the permission of the respective owners.</description><table><name>personal.ts_ssa</name><description> This table contains metadata for the photometric time series from
personal collections in IVOA SSA format. The actual data is available
through a datalink service.</description><column><name>object_id</name><description>Star identifier</description><ucd>meta.id;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>accref</name><description>Access key for the data</description><ucd>meta.ref.url;meta.dataset</ucd><utype>ssa:Access.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><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>yr</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><ucd>meta.code.mime</ucd><utype>ssa:Access.Format</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>accsize</name><description>Size of the data in bytes</description><unit>byte</unit><utype>ssa:Access.Size</utype><dataType xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>ssa_dstitle</name><description>A compact and descriptive designation of the dataset.</description><ucd>meta.title;meta.dataset</ucd><utype>ssa:DataID.Title</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_creatordid</name><description>Dataset identifier assigned by the creator</description><ucd>meta.id</ucd><utype>ssa:DataID.CreatorDID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_pubdid</name><description>Dataset identifier assigned by the publisher</description><ucd>meta.ref.ivoid</ucd><utype>ssa:Curation.PublisherDID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_cdate</name><description>Processing/Creation date</description><ucd>time;meta.dataset</ucd><utype>ssa:DataID.Date</utype><dataType arraysize="19" extendedType="timestamp" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="61121" g-colstat:median="61121" g-colstat:min-value="61121" g-colstat:percentile03="61121" g-colstat:percentile97="61121"><name>ssa_pdate</name><description>Date last published.</description><utype>ssa:Curation.Date</utype><dataType arraysize="19" extendedType="timestamp" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_bandpass</name><description>Bandpass (i.e., rough spectral location) of this dataset; this should be the most appropriate term from the vocabulary http://www.ivoa.net/rdf/messenger.</description><ucd>instr.bandpass</ucd><utype>ssa:DataID.Bandpass</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>ssa_cversion</name><description>Creator assigned version for this dataset (will be incremented when this particular item is changed).</description><ucd>meta.version;meta.dataset</ucd><utype>ssa:DataID.Version</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_targname</name><description>Common name of object observed.</description><ucd>meta.id;src</ucd><utype>ssa:Target.Name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column><column><name>ssa_targclass</name><description>Object class (star, QSO,...; use Simbad object classification http://simbad.u-strasbg.fr/simbad/sim-display?data=otypes if at all possible)</description><ucd>src.class</ucd><utype>ssa:Target.Class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_redshift</name><description>Redshift of target object</description><ucd>src.redshift</ucd><utype>ssa:Target.Redshift</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_targetpos</name><description>Equatorial (ICRS) position of the target object.</description><ucd>pos.eq;src</ucd><utype>ssa:Target.pos.spoint</utype><dataType arraysize="2" extendedType="point" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_snr</name><description>Signal-to-noise ratio estimated for this dataset</description><ucd>stat.snr</ucd><utype>ssa:Derived.SNR</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_location</name><description>ICRS location of aperture center</description><unit>deg</unit><ucd>pos.eq</ucd><utype>ssa:Char.SpatialAxis.Coverage.Location.Value</utype><dataType arraysize="2" extendedType="point" xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="0.000277778" g-colstat:median="0.000277778" g-colstat:min-value="0.000277778" g-colstat:percentile03="0.000277778" g-colstat:percentile97="0.000277778"><name>ssa_aperture</name><description>Angular diameter of aperture</description><unit>deg</unit><ucd>phys.angSize;instr.fov</ucd><utype>ssa:Char.SpatialAxis.Coverage.Bounds.Extent</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_dateobs</name><description>Midpoint of exposure (MJD)</description><unit>d</unit><ucd>time.epoch</ucd><utype>ssa:Char.TimeAxis.Coverage.Location.Value</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>ssa_timeext</name><description>Exposure duration</description><unit>s</unit><ucd>time.duration</ucd><utype>ssa:Char.TimeAxis.Coverage.Bounds.Extent</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specmid</name><description>Midpoint of region covered in this dataset</description><unit>m</unit><ucd>instr.bandpass</ucd><utype>ssa:Char.SpectralAxis.Coverage.Location.Value</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specext</name><description>Width of the spectrum</description><unit>m</unit><ucd>instr.bandwidth</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Extent</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specstart</name><description>Lower value of spectral coordinate</description><unit>m</unit><ucd>em.wl;stat.min</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Start</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_specend</name><description>Upper value of spectral coordinate</description><unit>m</unit><ucd>em.wl;stat.max</ucd><utype>ssa:Char.SpectralAxis.Coverage.Bounds.Stop</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_length</name><description>Number of points in the spectrum</description><utype>ssa:Dataset.Length</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>ssa_model</name><description>Data model name and version</description><utype>ssa:Dataset.DataModel</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_csysname</name><description>System RA and Dec are given in</description><utype>ssa:CoordSys.SpaceFrame.Name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_timesi</name><description>Time conversion factor in Osuna-Salgado convention.</description><utype>ssa:Dataset.TimeSI</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_spectralsi</name><description>Spectral conversion factor in Osuna-Salgado convention</description><utype>ssa:Dataset.SpectralSI</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_spectralucd</name><description>UCD of the spectral column in the spectra served; when you have wavelengths, use em.wl for vacuum wavelengths, em.wl;obs.atmos for air wavelengths.</description><ucd>meta.ucd</ucd><utype>ssa:Char.SpectralAxis.Ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_spectralunit</name><description>Unit of the spectral column</description><ucd>meta.unit</ucd><utype>ssa:Char.SpectralAxis.Unit</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_fluxsi</name><description>Flux/magnitude conversion factor in Osuna-Salgado convention</description><utype>ssa:Dataset.FluxSI</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_fluxucd</name><description>UCD of the flux column</description><ucd>meta.ucd</ucd><utype>ssa:Char.FluxAxis.Ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_fluxunit</name><description>Unit of the flux column</description><ucd>meta.unit</ucd><utype>ssa:Char.FluxAxis.Unit</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>ssa_dstype</name><description>Type of data (spectrum, time series, etc)</description><utype>ssa:Dataset.Type</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_publisher</name><description>Publisher of the datasets included here.</description><ucd>meta.curation</ucd><utype>ssa:Curation.Publisher</utype><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType></column><column><name>ssa_creator</name><description>Creator of the datasets included here.</description><utype>ssa:DataID.Creator</utype><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>nullable</flag></column><column><name>ssa_collection</name><description>A short handle naming the collection this spectrum belongs to.</description><utype>ssa:DataID.Collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_instrument</name><description>Instrument or code used to produce these datasets</description><ucd>meta.id;instr</ucd><utype>ssa:DataID.Instrument</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_datasource</name><description>Method of generation for the data (one of survey, pointed, theory, custom, artificial).</description><utype>ssa:DataID.DataSource</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_creationtype</name><description>Process used to produce the data (archival, cutout, filtered, mosaic, projection, spectralExtraction, or catalogExtraction)</description><utype>ssa:DataID.CreationType</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_reference</name><description>URL or bibcode of a publication describing this data.</description><ucd>meta.bib.bibcode</ucd><utype>ssa:Curation.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_fluxstaterror</name><description>Statistical error in flux</description><ucd>stat.error;phot.flux.density;em</ucd><utype>ssa:Char.FluxAxis.Accuracy.StatError</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_fluxsyserror</name><description>Systematic error in flux</description><ucd>stat.error.sys;phot.flux.density;em</ucd><utype>ssa:Char.FluxAxis.Accuracy.SysError</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_fluxcalib</name><description>Type of flux calibration (ABSOLUTE, CALIBRATED, RELATIVE, NORMALIZED, or UNCALIBRATED).</description><utype>ssa:Char.FluxAxis.Calibration</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_binsize</name><description>Bin size in wavelength</description><unit>m</unit><ucd>em.wl;spect.binSize</ucd><utype>ssa:Char.SpectralAxis.Accuracy.BinSize</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_spectstaterror</name><description>Statistical error in wavelength</description><unit>m</unit><ucd>stat.error;em</ucd><utype>ssa:Char.SpectralAxis.Accuracy.StatError</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_spectsyserror</name><description>Systematic error in wavelength</description><unit>m</unit><ucd>stat.error.sys;em</ucd><utype>ssa:Char.SpectralAxis.Accuracy.SysError</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_speccalib</name><description>Type of wavelength calibration</description><ucd>meta.code.qual</ucd><utype>ssa:Char.SpectralAxis.Calibration</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_specres</name><description>Resolution (in meters of wavelength) on the spectral axis</description><unit>m</unit><ucd>spect.resolution;em.wl</ucd><utype>ssa:Char.SpectralAxis.Resolution</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_spaceerror</name><description>Statistical error in position</description><unit>deg</unit><ucd>stat.error;pos.eq</ucd><utype>ssa:Char.SpatialAxis.Accuracy.StatError</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssa_spacecalib</name><description>Type of calibration in spatial coordinates</description><ucd>meta.code.qual</ucd><utype>ssa:Char.SpatialAxis.Calibration</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>ssa_spaceres</name><description>Spatial resolution of data</description><unit>deg</unit><ucd>pos.angResolution</ucd><utype>ssa:Char.SpatialAxis.Resolution</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="59519.2" g-colstat:median="56910" g-colstat:min-value="49999.5" g-colstat:percentile03="52125" g-colstat:percentile97="57298.5"><name>t_min</name><description>Lower bound of times represented in the data set</description><unit>d</unit><ucd>time.start;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.starttime</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="60624" g-colstat:median="57878.3" g-colstat:min-value="51222.3" g-colstat:percentile03="57227.2" g-colstat:percentile97="58787"><name>t_max</name><description>Upper bound of times represented in the data set</description><unit>d</unit><ucd>time.end;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.stoptime</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>preview</name><description>Location of a preview; this can be NULL if no preview is available, 'AUTO' to make DaCHS try its luck itself, or a URL or a file path for pre-computed previews.</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_region</name><description>Rough coverage based on location and aperture.</description><ucd>pos.outline;obs.field</ucd><dataType arraysize="*" extendedType="polygon" xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>datalink</name><description>A link to a datalink document for this timeseries</description><ucd>meta.ref.url</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>mean_mag</name><description>Stellar magnitude</description><unit>mag</unit><ucd>phot.mag;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column></table><table><name>personal.objects</name><description>Basic parameters of variable star targets included in the time-series
archive</description><nrows>5</nrows><column><name>object_id</name><description>Star identifier</description><ucd>meta.id;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="347.796" g-colstat:median="297.278" g-colstat:min-value="149.271" g-colstat:percentile03="158.58" g-colstat:percentile97="346.331"><name>raj2000</name><description>Right ascension</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="52.5111" g-colstat:median="39.8267" g-colstat:min-value="0.11619" g-colstat:percentile03="0.28238" g-colstat:percentile97="52.2571"><name>dej2000</name><description>Declination</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag></column><column g-colstat:fillFactor="0"><name>period</name><description>Period of the variable star</description><unit>d</unit><ucd>src.var;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>epoch</name><description>Time of maximum brightness; mjd (HJD)</description><unit>d</unit><ucd>src.var;time.epoch</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>identifiers</name><description>Other designation</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0.4" g-colstat:max-value="2.07277e+18" g-colstat:median="1.83295e+18" g-colstat:min-value="1.59314e+18" g-colstat:percentile03="1.60753e+18" g-colstat:percentile97="2.05838e+18"><name>gaia_id</name><description>Gaia DR3 identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>varclass</name><description>Target class (variable star class</description><ucd>src.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_targclass</name><description>Object class (star, QSO,...; use Simbad object classification http://simbad.u-strasbg.fr/simbad/sim-display?data=otypes if at all possible)</description><ucd>src.class</ucd><utype>ssa:Target.Class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_collection</name><description>A short handle naming the collection this spectrum belongs to.</description><utype>ssa:DataID.Collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ssa_reference</name><description>URL or bibcode of a publication describing this data.</description><ucd>meta.bib.bibcode</ucd><utype>ssa:Curation.Reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>description</name><description>Target description</description><ucd>meta.note</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>personal.lightcurves</name><description>The basic table with photometry points of all objects</description><nrows>13150</nrows><column><name>object_id</name><description>Object identifier for this photometry point</description><ucd>meta.id;meta.main</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag></column><column><name>passband</name><description>Bandpass (i.e., rough spectral location) of this dataset</description><ucd>instr.bandpass</ucd><utype>ssa:DataID.Bandpass</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="59495.9" g-colstat:median="57898" g-colstat:min-value="36804.5" g-colstat:percentile03="41515.4" g-colstat:percentile97="59466"><name>obs_time</name><description>mjd of the photometry point</description><unit>d</unit><ucd>time.epoch</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="20.8" g-colstat:median="14.844" g-colstat:min-value="2.48" g-colstat:percentile03="10.9" g-colstat:percentile97="17.089"><name>magnitude</name><description>Stellar magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>mag_err</name><description>Estimation of magnitude error</description><unit>mag</unit><ucd>stat.error;phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="5" g-colstat:median="0" g-colstat:min-value="0" g-colstat:percentile03="0" g-colstat:percentile97="4"><name>facility</name><description>Facility and telescope code: 1 = AISAS, Z-600, 2 = Nauchny, Z-600, 3 = Nauchny, Maksutov-50, 0 = not specified</description><ucd>meta.id;meta.dataset</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>note</name><description>Comment</description><ucd>meta.note</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table></schema></tableset></ri:Resource>