<?xml version='1.0'?><?xml-stylesheet href='/static/xsl/oai.xsl' type='text/xsl'?><ri:Resource created="2009-12-01T10:00:00Z" status="active" updated="2024-12-16T10:25:54Z" 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>ALeRCE TAP service TAP service</title><shortName>alerce TAP</shortName><identifier>ivo://x-unregistred/tap</identifier><curation><publisher>ALeRCE (Automatic Learning for the Rapid Classification of Events)</publisher><creator><name>ALeRCE Team</name><logo>https://tap.alerce.online/favicon.png</logo></creator><date role="Updated">2026-03-16T19:34:29Z</date><contact><name>ALeRCE Team</name><address>Beauchef 851, Edificio Norte, piso 6. Santiago, Chile.</address><email>alerce.broker@gmail.com</email></contact></curation><content><subject>virtual-observatories</subject><subject>catalogs</subject><description>The ALeRCE TAP service'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: allwise, band, catalog_id_lut, classifier, detection, feature, feature_name_lut, feature_version_lut, forced_photometry, lsst_detection, lsst_dia_object, lsst_forced_photometry, lsst_mpc_orbits, lsst_ss_detection, lsst_ss_object, magstat, object, probability, sid_lut, taxonomy, xmatch, ztf_dataquality, ztf_detection, ztf_forced_photometry, ztf_gaia, ztf_non_detection, ztf_object, ztf_ps1, ztf_reference, ztf_ss from the alerce_tap schema, columns, groups, key_columns, keys, schemas, tables from the tap_schema schema.</description><referenceURL>http://tap.alerce.online/__system__/tap/run/info</referenceURL><relationship><relationshipType>IsServiceFor</relationshipType><relatedResource ivo-id="ivo://x-unregistred/alerce_tap/multisurvey_lowercase/d">ALeRCE Multi-Survey Object Catalog</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://tap.alerce.online/tap</accessURL></interface><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_apply_pm(ra DOUBLE PRECISION, dec DOUBLE PRECISION, pmra DOUBLE PRECISION, pmde DOUBLE PRECISION, epdist DOUBLE PRECISION) -&gt; POINT</form><description>Returns a POINT (in the UNDEFINED reference frame) for the position
an object at ra/dec with proper motion pmra/pmde has after epdist years.

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

This function goes through the tangential plane.  Since it does not have
information on distance and radial velocity, it cannot reconstruct
the true space motion, and hence its results will degrade over time.

This function should not be used in new queries; use ivo_epoch_prop
instead.</description></feature><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_epoch_prop(ra DOUBLE PRECISION, dec DOUBLE PRECISION, parallax DOUBLE PRECISION, pmra DOUBLE PRECISION, pmdec DOUBLE PRECISION, radial_velocity DOUBLE PRECISION, ref_epoch DOUBLE PRECISION, out_epoch DOUBLE PRECISION) -&gt; DOUBLE PRECISION[6]</form><description>Returns a 6-vector of (ra, dec, parallax, pmra, pmdec, rv)
at out_epoch for these quantities at ref_epoch.

Essentially, it will apply the proper motion under the assumption of
linear motion.  Despite the name of the positional parameters, this is
not restricted to equatorial systems, as long as positions and proper
motions are expressed in the same reference frames.

Units on input and output are degrees for ra and dec, mas for parallax,
mas/yr for pmra and pmdec, and km/s for the radial velocity.

ref_epoch and out_epoch are given in Julian years.

parallax, pmra, pmdec, and radial_velocity may be None and will enter
the computations as 0 then, except in the case of parallax, which
will be some small value.  When abs(parallax) is smaller or equal
to that small value, parallax and radial velocity will be NULL on
output.

In daily use, you probably want to use the ivo_epoch_prop_pos functions.</description></feature><feature><form>ivo_epoch_prop_pos(ra DOUBLE PRECISION, dec DOUBLE PRECISION, parallax DOUBLE PRECISION, pmra DOUBLE PRECISION, pmdec DOUBLE PRECISION, radial_velocity DOUBLE PRECISION, ref_epoch DOUBLE PRECISION, out_epoch DOUBLE PRECISION) -&gt; POINT</form><description>Returns a POINT giving the position at out_epoch for an object
with the six parameters at ref_epoch.

Essentially, it will apply the proper motion under the assumption of
linear motion.  Despite the name of the positional parameters, this is
not restricted to equatorial systems, as long as positions and proper
motions are expressed in the same reference frames.

Units on input are degrees for ra and dec, mas for parallax,
mas/yr for pmra and pmdec, and km/s for the radial velocity.
ref_epoch and out_epoch are given in Julian years.

parallax, pmra, pmdec, and radial_velocity may be None and will enter
the computations as 0 then, except in the case of parallax, which
will be some small value.</description></feature><feature><form>ivo_epoch_prop_pos(ra DOUBLE PRECISION, dec DOUBLE PRECISION, pmra DOUBLE PRECISION, pmdec DOUBLE PRECISION, ref_epoch DOUBLE PRECISION, out_epoch DOUBLE PRECISION) -&gt; POINT</form><description>A variant of ivo_epoch_prop_pos that behave as if parallax
		and radial_velocity were both passed as NULL.</description></feature><feature><form>ivo_geom_transform(from_sys TEXT, to_sys TEXT, geo GEOMETRY) -&gt; GEOMETRY</form><description>The function transforms ADQL geometries between various reference systems.
geo can be a POINT, a CIRCLE, or a POLYGON, and the function will return a
geometry of the same type.  In the current implementation, from_sys and
to_sys must be literal strings (i.e., they cannot be computed through
expressions or be taken from database columns).

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

We currently support the following reference frames: ICRS, FK5 (which
is treated as ICRS), FK4 (for B1950. without epoch-dependent corrections),
GALACTIC.  Reference frame names are case-sensitive.</description></feature><feature><form>ivo_hashlist_has(hashlist TEXT, item TEXT) -&gt; INTEGER</form><description>The function takes two strings; the first is a list of words not
containing the hash sign (#), concatenated by hash signs, the second is
a word not containing the hash sign.  It returns 1 if, compared
case-insensitively, the second argument is in the list of words coded in
the first argument.  The behaviour in case the the second
argument contains a hash sign is unspecified.</description></feature><feature><form>ivo_hasword(haystack TEXT, needle TEXT) -&gt; INTEGER</form><description>gavo_hasword returns 1 if needle shows up in haystack, 0 otherwise.  This
is for "google-like"-searches in text-like fields.  In word, you can
actually employ a fairly complex query language; see
https://www.postgresql.org/docs/current/textsearch.html
for details.</description></feature><feature><form>ivo_healpix_center(hpxOrder INTEGER, hpxIndex BIGINT) -&gt; POINT</form><description>returns a POINT corresponding to the center of the healpix with
the given index at the given order.</description></feature><feature><form>ivo_healpix_index(order INTEGER, ra DOUBLE PRECISION, dec DOUBLE PRECISION) -&gt; BIGINT</form><description>Returns the index of the (nest) healpix with order containing the
spherical point (ra, dec).

An alternative, 2-argument form

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

is also available.</description></feature><feature><form>ivo_histogram(val REAL, lower REAL, upper REAL, nbins INTEGER) -&gt; INTEGER[]</form><description>The aggregate function returns a histogram of val with nbins+2 elements.
Assuming 0-based arrays, result[0] contains the number of underflows (i.e.,
val&lt;lower), result[nbins+1] the number of overflows.  Elements 1..nbins
are the counts in nbins bins of width (upper-lower)/nbins.  Clients
will have to convert back to physical units using some external
communication, there currently is no (meta-) data as lower and upper in
the TAP response.</description></feature><feature><form>ivo_interval_has(val NUMERIC, iv INTERVAL) -&gt; INTEGER</form><description>The function returns 1 if the interval iv contains val, 0 otherwise.
The lower limit is always included in iv, behaviour on the upper
limit is column-specific.</description></feature><feature><form>ivo_interval_overlaps(l1 NUMERIC, h1 NUMERIC, l2 NUMERIC, h2 NUMERIC) -&gt; INTEGER</form><description>The function returns 1 if the interval [l1...h1] overlaps with
the interval [l2...h2].  For the purposes of this function,
the case l1=h2 or l2=h1 is treated as overlap.  The function
returns 0 for non-overlapping intervals.</description></feature><feature><form>ivo_nocasematch(value TEXT, pattern TEXT) -&gt; INTEGER</form><description>ivo_nocasematch returns 1 if pattern matches value, 0 otherwise.
pattern is defined as for the SQL LIKE operator, but the
match is performed case-insensitively.  This function in effect
provides a surrogate for the ILIKE SQL operator that is missing from
ADQL.

On this site, this is actually implemented using python's and SQL's
LOWER, so for everything except ASCII, your mileage will vary.</description></feature><feature><form>ivo_normal_random(mu REAL, sigma REAL) -&gt; REAL</form><description>The function returns a random number drawn from a normal distribution
with mean mu and width sigma.

Implementation note: Right now, the Gaussian is approximated by
summing up and scaling ten calls to random.  This, hence, is not
very precise or fast.  It might work for some use cases, and we
will provide a better implementation if this proves inadequate.</description></feature><feature><form>ivo_simbadpoint(identifier TEXT) -&gt; POINT</form><description>gavo_simbadpoint queries simbad for an identifier and returns the
corresponding point.  Note that identifier can only be a literal,
i.e., as simple string rather than a column name. This is because
our database cannot query simbad, and we probably wouldn't want
to fire off millions of simbad queries anyway; use simbad's own
TAP service for this kind of application.</description></feature><feature><form>ivo_string_agg(expression TEXT, delimiter TEXT) -&gt; TEXT</form><description>An aggregate function returning all values of
expression within a GROUP contcatenated with delimiter</description></feature><feature><form>ivo_to_jd(d TIMESTAMP) -&gt; DOUBLE PRECISION</form><description>The function converts a postgres timestamp to julian date.
This is naive; no corrections for timezones, let alone time
scales or the like are done; you can thus not expect this to be
good to second-precision unless you are careful in the construction
of the timestamp.</description></feature><feature><form>ivo_to_mjd(d TIMESTAMP) -&gt; DOUBLE PRECISION</form><description>The function converts a postgres timestamp to modified julian date.
This is naive; no corrections for timezones, let alone time
scales or the like are done; you can thus not expect this to be
good to second-precision unless you are careful in the construction
of the timestamp.</description></feature></languageFeatures><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adqlgeo"><feature><form>BOX</form></feature><feature><form>POINT</form></feature><feature><form>CIRCLE</form></feature><feature><form>POLYGON</form></feature><feature><form>REGION</form></feature><feature><form>CENTROID</form></feature><feature><form>COORD1</form></feature><feature><form>COORD2</form></feature><feature><form>DISTANCE</form></feature><feature><form>CONTAINS</form></feature><feature><form>INTERSECTS</form></feature><feature><form>AREA</form></feature></languageFeatures><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adql-conditional"><feature><form>COALESCE</form></feature></languageFeatures><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adql-string"><feature><form>LOWER</form></feature><feature><form>ILIKE</form></feature><feature><form>UPPER</form></feature></languageFeatures><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adql-offset"><feature><form>OFFSET</form></feature></languageFeatures><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adql-type"><feature><form>CAST</form></feature></languageFeatures><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adql-unit"><feature><form>IN_UNIT</form></feature></languageFeatures><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adql-common-table"><feature><form>WITH</form></feature></languageFeatures><languageFeatures type="ivo://org.gavo.dc/std/exts#extra-adql-keywords"><feature><form>TABLESAMPLE</form><description>Written after a table reference, TABLESAMPLE(10) will make the database only use 10% of the rows; these are `somewhat random' in that the system will use random blocks.  This should be good enough when just testing queries (and much better than using TOP n).</description></feature><feature><form>MOC</form><description>A geometry function creating MOCs.  It either takes a string argument with an ASCII MOC ('4/13 17-18 8/3002'), or an order and another geometry.</description></feature><feature><form>VECTORMATH</form><description>You can compute with vectors here. See https://wiki.ivoa.net/twiki/bin/view/IVOA/ADQLVectorMath for an overview of the functions and operators available.</description></feature><feature><form>CASE</form><description>The SQL92 CASE expression</description></feature></languageFeatures><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adql-sets"><feature><form>UNION</form></feature><feature><form>EXCEPT</form></feature><feature><form>INTERSECT</form></feature></languageFeatures></language><outputFormat><mime>text/tab-separated-values</mime><alias>tsv</alias></outputFormat><outputFormat><mime>text/plain</mime><alias>txt</alias></outputFormat><outputFormat><mime>text/csv</mime><alias>csv_bare</alias></outputFormat><outputFormat><mime>text/csv;header=present</mime><alias>csv</alias></outputFormat><outputFormat><mime>application/json</mime><alias>json</alias></outputFormat><outputFormat><mime>application/geo+json</mime><alias>geojson</alias></outputFormat><outputFormat ivo-id="ivo://ivoa.net/std/TAPRegExt#output-votable-binary"><mime>application/x-votable+xml</mime><alias>votable</alias></outputFormat><outputFormat ivo-id="ivo://ivoa.net/std/TAPRegExt#output-votable-binary2"><mime>application/x-votable+xml;serialization=BINARY2</mime><alias>votable/b2</alias><alias>votableb2</alias></outputFormat><outputFormat ivo-id="ivo://ivoa.net/std/TAPRegExt#output-votable-td"><mime>application/x-votable+xml;serialization=TABLEDATA</mime><alias>text/xml</alias><alias>votable/td</alias><alias>votabletd</alias></outputFormat><outputFormat><mime>application/x-votable+xml;serialization=TABLEDATA;version=1.1</mime><alias>text/xml</alias><alias>votabletd1.1</alias></outputFormat><outputFormat><mime>application/x-votable+xml;version=1.1</mime><alias>text/xml</alias><alias>votable1.1</alias></outputFormat><outputFormat><mime>application/x-votable+xml;serialization=TABLEDATA;version=1.2</mime><alias>text/xml</alias><alias>votabletd1.2</alias></outputFormat><outputFormat><mime>application/x-votable+xml;serialization=TABLEDATA;version=1.6</mime><alias>vodml</alias></outputFormat><outputFormat><mime>application/x-votable+xml;version=1.6</mime><alias>vodmlb</alias></outputFormat><outputFormat><mime>text/html</mime><alias>html</alias></outputFormat><outputFormat><mime>application/fits</mime><alias>fits</alias></outputFormat><uploadMethod ivo-id="ivo://ivoa.net/std/TAPRegExt#upload-inline"/><uploadMethod ivo-id="ivo://ivoa.net/std/TAPRegExt#upload-http"/><uploadMethod ivo-id="ivo://ivoa.net/std/TAPRegExt#upload-https"/><uploadMethod ivo-id="ivo://ivoa.net/std/TAPRegExt#upload-ftp"/><retentionPeriod><default>172800</default></retentionPeriod><executionDuration><default>3600</default></executionDuration><outputLimit><default unit="row">20000</default><hard unit="row">20000000</hard></outputLimit><uploadLimit><hard unit="byte">20000000</hard></uploadLimit></capability><capability standardID="ivo://ivoa.net/std/VOSI#availability"><interface role="std" xsi:type="vs:ParamHTTP"><accessURL use="full">https://tap.alerce.online/__system__/tap/run/availability</accessURL></interface></capability><capability standardID="ivo://ivoa.net/std/VOSI#capabilities"><interface role="std" xsi:type="vs:ParamHTTP"><accessURL use="full">https://tap.alerce.online/__system__/tap/run/capabilities</accessURL></interface></capability><capability standardID="ivo://ivoa.net/std/VOSI#tables"><interface role="std" version="1.1" xsi:type="vs:ParamHTTP"><accessURL use="full">https://tap.alerce.online/__system__/tap/run/tableMetadata</accessURL></interface></capability><tableset><schema><name>tap_schema</name><description> ALeRCE TAP service'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>alerce_tap</name><title>ALeRCE Multi-Survey Object Catalog</title><description>
Multi-survey astronomical object catalog containing astrometric and
statistical information from multiple surveys. This table provides
aggregated properties for astronomical objects including position,
detection statistics, and temporal coverage.</description><table><name>alerce_tap.object</name><title>Object table</title><description>
This table contains aggregated information about astronomical 
objects observed in multiple surveys. Each record corresponds 
to a unique object identified by its position and survey. 
The table includes astrometric properties (mean RA/Dec), 
detection statistics (number of detections, forced photometry measurements, non-detections), 
and temporal coverage (first and last observation dates).</description><column><name>oid</name><description>Internal object identifier</description><ucd>meta.id;src</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>tid</name><description>Telescope identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType></column><column><name>sid</name><description>Survey identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>meanra</name><description>Mean right ascension (ICRS)</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag></column><column><name>meandec</name><description>Mean declination (ICRS)</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag></column><column><name>sigmara</name><description>Standard deviation of right ascension</description><unit>deg</unit><ucd>stat.error;pos.eq.ra</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>sigmadec</name><description>Standard deviation of declination</description><unit>deg</unit><ucd>stat.error;pos.eq.dec</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>firstmjd</name><description>First observation MJD</description><unit>d</unit><ucd>time.start;obs</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag></column><column><name>lastmjd</name><description>Last observation MJD</description><unit>d</unit><ucd>time.end;obs</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag></column><column><name>deltamjd</name><description>Time span between first and last observation</description><unit>d</unit><ucd>time.interval</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>n_det</name><description>Number of detections</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>indexed</flag></column><column><name>n_forced</name><description>Number of forced photometry measurements</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>n_non_det</name><description>Number of non-detections</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>created_date</name><description>Date when the record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>updated_date</name><description>Date when the record was last updated</description><ucd>time.processing</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.ztf_object</name><title>ZTF Object Properties</title><description>
ZTF-specific properties for astronomical objects including color indices,
stellar classification, photometric correction flags, and historical detection
statistics from the Zwicky Transient Facility survey.</description><column><name>oid</name><description>Unique identifier for this object</description><ucd>meta.id;src</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>g_r_max</name><description>Maximum g-r color (difference between minimum g and r band magnitudes)</description><ucd>phot.color;stat.max</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>g_r_max_corr</name><description>Maximum g-r color using corrected magnitudes</description><ucd>phot.color;stat.max;arith.corrected</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>g_r_mean</name><description>Mean g-r color (difference between mean g and r band magnitudes)</description><ucd>phot.color;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>g_r_mean_corr</name><description>Mean g-r color using corrected magnitudes</description><ucd>phot.color;stat.mean;arith.corrected</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>corrected</name><description>Whether the corrected light curve was computed and can be used</description><dataType xsi:type="vs:VOTableType">boolean</dataType></column><column><name>stellar</name><description>Whether the object is likely a stellar-like (unresolved) source based on PS1 and ZTF reference image properties</description><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>reference_change</name><description>Reference image change flag indicating template update</description><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>diffpos</name><description>Difference image positivity flag</description><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>ndethist</name><description>Number of spatially-coincident detections within 1.5 arcsec going back to beginning of survey; only detections on the same field and readout-channel ID are counted, down to S/N ~ 3</description><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>ncovhist</name><description>Number of times the object position fell on any field and readout-channel going back to beginning of survey</description><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>mjdstarthist</name><description>Earliest Modified Julian Date corresponding to ndethist</description><unit>d</unit><ucd>time.start</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>mjdendhist</name><description>Latest Modified Julian Date corresponding to ndethist</description><unit>d</unit><ucd>time.end</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>created_date</name><description>Date record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.lsst_dia_object</name><title>LSST Difference Image Analysis Objects</title><description>
Summary catalog of transient and variable objects detected in LSST difference imaging.
Contains aggregated photometric measurements across all bands (u, g, r, i, z, y),
including PSF flux statistics, forced photometry fluxes, and temporal information
for each detected DIA object.</description><column><name>oid</name><description>Unique identifier of this DiaObject</description><ucd>meta.id;src</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>validitystartmjdtai</name><description>Processing time when validity of this diaObject starts, expressed as Modified Julian Date, International Atomic Time</description><unit>d</unit><ucd>time.start</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>ra</name><description>Right ascension coordinate of the position of the object</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag></column><column><name>raerr</name><description>Uncertainty of ra</description><unit>deg</unit><ucd>stat.error;pos.eq.ra</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>dec</name><description>Declination coordinate of the position of the object</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag></column><column><name>decerr</name><description>Uncertainty of dec</description><unit>deg</unit><ucd>stat.error;pos.eq.dec</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ra_dec_cov</name><description>Covariance between ra and dec</description><unit>deg**2</unit><ucd>stat.covariance;pos.eq</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>u_psffluxmean</name><description>Weighted mean point-source model magnitude for u filter</description><ucd>phot.flux;em.opt.U;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>u_psffluxmeanerr</name><description>Standard error of u_psfFluxMean</description><ucd>stat.error;phot.flux;em.opt.U</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>u_psffluxsigma</name><description>Standard deviation of the distribution of u_psfFlux</description><ucd>stat.stdev;phot.flux;em.opt.U</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>u_psffluxndata</name><description>The number of u-band data points</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>u_fpfluxmean</name><description>Weighted mean forced photometry flux for u filter</description><ucd>phot.flux;em.opt.U;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>u_fpfluxmeanerr</name><description>Standard error of u_fpFluxMean</description><ucd>stat.error;phot.flux;em.opt.U</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>g_psffluxmean</name><description>Weighted mean point-source model magnitude for g filter</description><ucd>phot.flux;em.opt.B;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>g_psffluxmeanerr</name><description>Standard error of g_psfFluxMean</description><ucd>stat.error;phot.flux;em.opt.B</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>g_psffluxsigma</name><description>Standard deviation of the distribution of g_psfFlux</description><ucd>stat.stdev;phot.flux;em.opt.B</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>g_psffluxndata</name><description>The number of g-band data points</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>g_fpfluxmean</name><description>Weighted mean forced photometry flux for g filter</description><ucd>phot.flux;em.opt.B;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>g_fpfluxmeanerr</name><description>Standard error of g_fpFluxMean</description><ucd>stat.error;phot.flux;em.opt.B</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>r_psffluxmean</name><description>Weighted mean point-source model magnitude for r filter</description><ucd>phot.flux;em.opt.R;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>r_psffluxmeanerr</name><description>Standard error of r_psfFluxMean</description><ucd>stat.error;phot.flux;em.opt.R</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>r_psffluxsigma</name><description>Standard deviation of the distribution of r_psfFlux</description><ucd>stat.stdev;phot.flux;em.opt.R</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>r_psffluxndata</name><description>The number of r-band data points</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>r_fpfluxmean</name><description>Weighted mean forced photometry flux for r filter</description><ucd>phot.flux;em.opt.R;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>r_fpfluxmeanerr</name><description>Standard error of r_fpFluxMean</description><ucd>stat.error;phot.flux;em.opt.R</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>i_psffluxmean</name><description>Weighted mean point-source model magnitude for i filter</description><ucd>phot.flux;em.opt.I;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>i_psffluxmeanerr</name><description>Standard error of i_psfFluxMean</description><ucd>stat.error;phot.flux;em.opt.I</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>i_psffluxsigma</name><description>Standard deviation of the distribution of i_psfFlux</description><ucd>stat.stdev;phot.flux;em.opt.I</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>i_psffluxndata</name><description>The number of i-band data points</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>i_fpfluxmean</name><description>Weighted mean forced photometry flux for i filter</description><ucd>phot.flux;em.opt.I;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>i_fpfluxmeanerr</name><description>Standard error of i_fpFluxMean</description><ucd>stat.error;phot.flux;em.opt.I</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>z_psffluxmean</name><description>Weighted mean point-source model magnitude for z filter</description><ucd>phot.flux;em.opt.I;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>z_psffluxmeanerr</name><description>Standard error of z_psfFluxMean</description><ucd>stat.error;phot.flux;em.opt.I</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>z_psffluxsigma</name><description>Standard deviation of the distribution of z_psfFlux</description><ucd>stat.stdev;phot.flux;em.opt.I</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>z_psffluxndata</name><description>The number of z-band data points</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>z_fpfluxmean</name><description>Weighted mean forced photometry flux for z filter</description><ucd>phot.flux;em.opt.I;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>z_fpfluxmeanerr</name><description>Standard error of z_fpFluxMean</description><ucd>stat.error;phot.flux;em.opt.I</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>y_psffluxmean</name><description>Weighted mean point-source model magnitude for y filter</description><ucd>phot.flux;em.IR.NIR;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>y_psffluxmeanerr</name><description>Standard error of y_psfFluxMean</description><ucd>stat.error;phot.flux;em.IR.NIR</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>y_psffluxsigma</name><description>Standard deviation of the distribution of y_psfFlux</description><ucd>stat.stdev;phot.flux;em.IR.NIR</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>y_psffluxndata</name><description>The number of y-band data points</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>y_fpfluxmean</name><description>Weighted mean forced photometry flux for y filter</description><ucd>phot.flux;em.IR.NIR;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>y_fpfluxmeanerr</name><description>Standard error of y_fpFluxMean</description><ucd>stat.error;phot.flux;em.IR.NIR</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>u_sciencefluxmean</name><description>Weighted mean forced photometry flux for u filter</description><ucd>phot.flux;em.opt.U;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>u_sciencefluxmeanerr</name><description>Standard error of u_scienceFluxMean</description><ucd>stat.error;phot.flux;em.opt.U</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>g_sciencefluxmean</name><description>Weighted mean forced photometry flux for g filter</description><ucd>phot.flux;em.opt.B;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>g_sciencefluxmeanerr</name><description>Standard error of g_scienceFluxMean</description><ucd>stat.error;phot.flux;em.opt.B</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>r_sciencefluxmean</name><description>Weighted mean forced photometry flux for r filter</description><ucd>phot.flux;em.opt.R;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>r_sciencefluxmeanerr</name><description>Standard error of r_scienceFluxMean</description><ucd>stat.error;phot.flux;em.opt.R</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>i_sciencefluxmean</name><description>Weighted mean forced photometry flux for i filter</description><ucd>phot.flux;em.opt.I;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>i_sciencefluxmeanerr</name><description>Standard error of i_scienceFluxMean</description><ucd>stat.error;phot.flux;em.opt.I</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>z_sciencefluxmean</name><description>Weighted mean forced photometry flux for z filter</description><ucd>phot.flux;em.opt.I;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>z_sciencefluxmeanerr</name><description>Standard error of z_scienceFluxMean</description><ucd>stat.error;phot.flux;em.opt.I</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>y_sciencefluxmean</name><description>Weighted mean forced photometry flux for y filter</description><ucd>phot.flux;em.IR.NIR;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>y_sciencefluxmeanerr</name><description>Standard error of y_scienceFluxMean</description><ucd>stat.error;phot.flux;em.IR.NIR</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>u_psffluxmin</name><description>Minimum observed u band fluxes</description><ucd>phot.flux;em.opt.U;stat.min</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>u_psffluxmax</name><description>Maximum observed u band fluxes</description><ucd>phot.flux;em.opt.U;stat.max</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>u_psffluxmaxslope</name><description>Maximum slope between u band flux obsevations max(delta_flux/delta_time)</description><unit>nJy/d</unit><ucd>arith.rate;phot.flux;em.opt.U;stat.max</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>u_psffluxerrmean</name><description>Mean of the u band flux errors</description><ucd>stat.error;phot.flux;em.opt.U;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>g_psffluxmin</name><description>Minimum observed g band fluxes</description><ucd>phot.flux;em.opt.B;stat.min</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>g_psffluxmax</name><description>Maximum observed g band fluxes</description><ucd>phot.flux;em.opt.B;stat.max</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>g_psffluxmaxslope</name><description>Maximum slope between g band flux obsevations max(delta_flux/delta_time)</description><unit>nJy/d</unit><ucd>arith.rate;phot.flux;em.opt.B;stat.max</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>g_psffluxerrmean</name><description>Mean of the g band flux errors</description><ucd>stat.error;phot.flux;em.opt.B;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>r_psffluxmin</name><description>Minimum observed r band fluxes</description><ucd>phot.flux;em.opt.R;stat.min</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>r_psffluxmax</name><description>Maximum observed r band fluxes</description><ucd>phot.flux;em.opt.R;stat.max</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>r_psffluxmaxslope</name><description>Maximum slope between r band flux obsevations max(delta_flux/delta_time)</description><unit>nJy/d</unit><ucd>arith.rate;phot.flux;em.opt.R;stat.max</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>r_psffluxerrmean</name><description>Mean of the r band flux errors</description><ucd>stat.error;phot.flux;em.opt.R;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>i_psffluxmin</name><description>Minimum observed i band fluxes</description><ucd>phot.flux;em.opt.I;stat.min</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>i_psffluxmax</name><description>Maximum observed i band fluxes</description><ucd>phot.flux;em.opt.I;stat.max</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>i_psffluxmaxslope</name><description>Maximum slope between i band flux obsevations max(delta_flux/delta_time)</description><unit>nJy/d</unit><ucd>arith.rate;phot.flux;em.opt.I;stat.max</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>i_psffluxerrmean</name><description>Mean of the i band flux errors</description><ucd>stat.error;phot.flux;em.opt.I;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>z_psffluxmin</name><description>Minimum observed z band fluxes</description><ucd>phot.flux;em.opt.I;stat.min</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>z_psffluxmax</name><description>Maximum observed z band fluxes</description><ucd>phot.flux;em.opt.I;stat.max</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>z_psffluxmaxslope</name><description>Maximum slope between z band flux obsevations max(delta_flux/delta_time)</description><unit>nJy/d</unit><ucd>arith.rate;phot.flux;em.opt.I;stat.max</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>z_psffluxerrmean</name><description>Mean of the z band flux errors</description><ucd>stat.error;phot.flux;em.opt.I;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>y_psffluxmin</name><description>Minimum observed y band fluxes</description><ucd>phot.flux;em.IR.NIR;stat.min</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>y_psffluxmax</name><description>Maximum observed y band fluxes</description><ucd>phot.flux;em.IR.NIR;stat.max</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>y_psffluxmaxslope</name><description>Maximum slope between y band flux obsevations max(delta_flux/delta_time)</description><unit>nJy/d</unit><ucd>arith.rate;phot.flux;em.IR.NIR;stat.max</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>y_psffluxerrmean</name><description>Mean of the y band flux errors</description><ucd>stat.error;phot.flux;em.IR.NIR;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>firstdiasourcemjdtai</name><description>First DIA source MJD in TAI</description><unit>d</unit><ucd>time.start</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>lastdiasourcemjdtai</name><description>Last DIA source MJD in TAI</description><unit>d</unit><ucd>time.end</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>ndiasources</name><description>Number of DIA sources</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>created_date</name><description>Date record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.lsst_ss_object</name><title>LSST Solar System Objects</title><description>
Properties of solar system objects observed by LSST, including orbital parameters,
photometric phase curves, minimum orbit intersection distances (MOID), and
H-G12 magnitude models fitted in each photometric band.</description><column><name>oid</name><description>Solar system object identifier</description><ucd>meta.id;src</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>designation</name><description>The unpacked primary provisional designation for this object</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>nobs</name><description>Total number of LSST observations of this object</description><ucd>meta.number;obs</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>arc</name><description>Timespan (arc) of all LSST observations, t_last - t_first</description><unit>d</unit><ucd>time.duration;obs</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>firstobservationmjdtai</name><description>The time of the first LSST observation of this object (could be precovered), TAI</description><unit>d</unit><ucd>time.epoch;obs</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>moidearth</name><description>Minimum orbit intersection distance to Earth</description><unit>AU</unit><ucd>pos.distance;src.orbital</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>moidearthdeltav</name><description>DeltaV at the MOID point</description><unit>km/s</unit><ucd>phys.veloc.orbital</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>moideartheclipticlongitude</name><description>Ecliptic longitude of the MOID point (Earth's orbit)</description><unit>deg</unit><ucd>pos.ecliptic.lon</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>moidearthtrueanomaly</name><description>True anomaly of the MOID point on Earth's orbit</description><unit>deg</unit><ucd>pos.phaseAng</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>moidearthtrueanomalyobject</name><description>True anomaly of the MOID point on the object's orbit</description><unit>deg</unit><ucd>pos.phaseAng;src.orbital</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>tisserand_j</name><description>Tisserand parameter with respect to Jupiter (T_J)</description><ucd>src.orbital.TissJ</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>extendednessmax</name><description>Maximum extendedness value from the DiaSource</description><ucd>phys.size;stat.max</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>extendednessmedian</name><description>Median extendedness value from the DiaSource</description><ucd>phys.size;stat.median</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>extendednessmin</name><description>Minimum extendedness value from the DiaSource</description><ucd>phys.size;stat.min</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>u_nobs</name><description>Total number of data points (u band)</description><ucd>meta.number;obs</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>u_h</name><description>Best fit absolute magnitude (u band)</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>u_herr</name><description>Error in the estimate of H (u band)</description><unit>mag</unit><ucd>stat.error;phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>u_g12</name><description>Best fit G12 slope parameter (u band)</description><ucd>stat.fit.param</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>u_g12err</name><description>Error in the estimate of G12 (u band)</description><ucd>stat.error;stat.fit.param</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>u_h_u_g12_cov</name><description>H–G12 covariance (u band)</description><unit>mag**2</unit><ucd>stat.covariance;phot.mag;stat.fit.param</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>u_nobsused</name><description>The number of data points used to fit the phase curve (u band)</description><ucd>meta.number;obs</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>u_chi2</name><description>Chi^2 statistic of the phase curve fit (u band)</description><ucd>stat.fit.chi2</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>u_phaseanglemin</name><description>Minimum phase angle observed (u band)</description><unit>deg</unit><ucd>pos.phaseAng;stat.min</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>u_phaseanglemax</name><description>Maximum phase angle observed (u band)</description><unit>deg</unit><ucd>pos.phaseAng;stat.max</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>u_slope_fit_failed</name><description>G12 fit failed in u band. G12 contains a fiducial value used to fit H</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>g_nobs</name><description>Total number of data points (g band)</description><ucd>meta.number;obs</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>g_h</name><description>Best fit absolute magnitude (g band)</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>g_herr</name><description>Error in the estimate of H (g band)</description><unit>mag</unit><ucd>stat.error;phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>g_g12</name><description>Best fit G12 slope parameter (g band)</description><ucd>stat.fit.param</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>g_g12err</name><description>Error in the estimate of G12 (g band)</description><ucd>stat.error;stat.fit.param</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>g_h_g_g12_cov</name><description>H–G12 covariance (g band)</description><unit>mag**2</unit><ucd>stat.covariance;phot.mag;stat.fit.param</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>g_nobsused</name><description>The number of data points used to fit the phase curve (g band)</description><ucd>meta.number;obs</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>g_chi2</name><description>Chi^2 statistic of the phase curve fit (g band)</description><ucd>stat.fit.chi2</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>g_phaseanglemin</name><description>Minimum phase angle observed (g band)</description><unit>deg</unit><ucd>pos.phaseAng;stat.min</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>g_phaseanglemax</name><description>Maximum phase angle observed (g band)</description><unit>deg</unit><ucd>pos.phaseAng;stat.max</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>g_slope_fit_failed</name><description>G12 fit failed in g band. G12 contains a fiducial value used to fit H</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>r_nobs</name><description>Total number of data points (r band)</description><ucd>meta.number;obs</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>r_h</name><description>Best fit absolute magnitude (r band)</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>r_herr</name><description>Error in the estimate of H (r band)</description><unit>mag</unit><ucd>stat.error;phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>r_g12</name><description>Best fit G12 slope parameter (r band)</description><ucd>stat.fit.param</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>r_g12err</name><description>Error in the estimate of G12 (r band)</description><ucd>stat.error;stat.fit.param</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>r_h_r_g12_cov</name><description>H–G12 covariance (r band)</description><unit>mag**2</unit><ucd>stat.covariance;phot.mag;stat.fit.param</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>r_nobsused</name><description>The number of data points used to fit the phase curve (r band)</description><ucd>meta.number;obs</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>r_chi2</name><description>Chi^2 statistic of the phase curve fit (r band)</description><ucd>stat.fit.chi2</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>r_phaseanglemin</name><description>Minimum phase angle observed (r band)</description><unit>deg</unit><ucd>pos.phaseAng;stat.min</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>r_phaseanglemax</name><description>Maximum phase angle observed (r band)</description><unit>deg</unit><ucd>pos.phaseAng;stat.max</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>r_slope_fit_failed</name><description>G12 fit failed in r band. G12 contains a fiducial value used to fit H</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>i_nobs</name><description>Total number of data points (i band)</description><ucd>meta.number;obs</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>i_h</name><description>Best fit absolute magnitude (i band)</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>i_herr</name><description>Error in the estimate of H (i band)</description><unit>mag</unit><ucd>stat.error;phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>i_g12</name><description>Best fit G12 slope parameter (i band)</description><ucd>stat.fit.param</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>i_g12err</name><description>Error in the estimate of G12 (i band)</description><ucd>stat.error;stat.fit.param</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>i_h_i_g12_cov</name><description>H–G12 covariance (i band)</description><unit>mag**2</unit><ucd>stat.covariance;phot.mag;stat.fit.param</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>i_nobsused</name><description>The number of data points used to fit the phase curve (i band)</description><ucd>meta.number;obs</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>i_chi2</name><description>Chi^2 statistic of the phase curve fit (i band)</description><ucd>stat.fit.chi2</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>i_phaseanglemin</name><description>Minimum phase angle observed (i band)</description><unit>deg</unit><ucd>pos.phaseAng;stat.min</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>i_phaseanglemax</name><description>Maximum phase angle observed (i band)</description><unit>deg</unit><ucd>pos.phaseAng;stat.max</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>i_slope_fit_failed</name><description>G12 fit failed in i band. G12 contains a fiducial value used to fit H</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>z_nobs</name><description>Total number of data points (z band)</description><ucd>meta.number;obs</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>z_h</name><description>Best fit absolute magnitude (z band)</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>z_herr</name><description>Error in the estimate of H (z band)</description><unit>mag</unit><ucd>stat.error;phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>z_g12</name><description>Best fit G12 slope parameter (z band)</description><ucd>stat.fit.param</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>z_g12err</name><description>Error in the estimate of G12 (z band)</description><ucd>stat.error;stat.fit.param</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>z_h_z_g12_cov</name><description>H–G12 covariance (z band)</description><unit>mag**2</unit><ucd>stat.covariance;phot.mag;stat.fit.param</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>z_nobsused</name><description>The number of data points used to fit the phase curve (z band)</description><ucd>meta.number;obs</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>z_chi2</name><description>Chi^2 statistic of the phase curve fit (z band)</description><ucd>stat.fit.chi2</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>z_phaseanglemin</name><description>Minimum phase angle observed (z band)</description><unit>deg</unit><ucd>pos.phaseAng;stat.min</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>z_phaseanglemax</name><description>Maximum phase angle observed (z band)</description><unit>deg</unit><ucd>pos.phaseAng;stat.max</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>z_slope_fit_failed</name><description>G12 fit failed in z band. G12 contains a fiducial value used to fit H</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>y_nobs</name><description>Total number of data points (y band)</description><ucd>meta.number;obs</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>y_h</name><description>Best fit absolute magnitude (y band)</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>y_herr</name><description>Error in the estimate of H (y band)</description><unit>mag</unit><ucd>stat.error;phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>y_g12</name><description>Best fit G12 slope parameter (y band)</description><ucd>stat.fit.param</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>y_g12err</name><description>Error in the estimate of G12 (y band)</description><ucd>stat.error;stat.fit.param</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>y_h_y_g12_cov</name><description>H–G12 covariance (y band)</description><unit>mag**2</unit><ucd>stat.covariance;phot.mag;stat.fit.param</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>y_nobsused</name><description>The number of data points used to fit the phase curve (y band)</description><ucd>meta.number;obs</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>y_chi2</name><description>Chi^2 statistic of the phase curve fit (y band)</description><ucd>stat.fit.chi2</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>y_phaseanglemin</name><description>Minimum phase angle observed (y band)</description><unit>deg</unit><ucd>pos.phaseAng;stat.min</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>y_phaseanglemax</name><description>Maximum phase angle observed (y band)</description><unit>deg</unit><ucd>pos.phaseAng;stat.max</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>y_slope_fit_failed</name><description>G12 fit failed in y band. G12 contains a fiducial value used to fit H</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>created_date</name><description>Date record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.lsst_mpc_orbits</name><title>Minor Planet Center Orbital Elements</title><description>
Complete orbital solutions from the Minor Planet Center for solar system objects,
including Keplerian orbital elements, non-gravitational parameters (Yarkovsky, SRP, A1-A3),
observational arc statistics, fit quality metrics, and Earth MOID calculations.</description><column><name>ssobjectid</name><description>Solar system object identifier</description><ucd>meta.id;src</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>designation</name><description>The unpacked primary provisional designation for this object</description><ucd>meta.id;src</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>packed_primary_provisional_designation</name><description>The primary provisional designation in packed form (e.g. K08A00B)</description><ucd>meta.id;src</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>unpacked_primary_provisional_designation</name><description>The primary provisional designation in unpacked form (e.g. 2008 AB)</description><ucd>meta.id;src</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>mpc_orb_jsonb</name><description>Details of the orbit solution in JSON form</description><ucd>meta</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>created_at</name><description>When this row was created</description><ucd>time.creation;meta.dataset</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>updated_at</name><description>When this row was updated</description><ucd>time.processing;meta.dataset</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>orbit_type_int</name><description>Orbit type code</description><ucd>meta.code</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>u_param</name><description>U parameter</description><ucd>meta.code</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>nopp</name><description>Number of oppositions</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>arc_length_total</name><description>Arc length over total observations [days]</description><unit>d</unit><ucd>time.interval</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>arc_length_sel</name><description>Arc length over total observations *selected* [days]</description><unit>d</unit><ucd>time.interval</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>nobs_total</name><description>Total number of all observations (optical + radar) available</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>nobs_total_sel</name><description>Total number of all observations (optical + radar) selected for use in orbit fitting</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>a</name><description>Semi Major Axis [au]</description><unit>AU</unit><ucd>pos.distance;src.orbital</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>q</name><description>Pericenter Distance [au]</description><unit>AU</unit><ucd>pos.distance;src.orbital</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>e</name><description>Eccentricity</description><ucd>src.orbital.eccentricity</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>i</name><description>Inclination [degrees]</description><unit>deg</unit><ucd>src.orbital.inclination</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>node</name><description>Longitude of Ascending Node [degrees]</description><unit>deg</unit><ucd>src.orbital.node</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>argperi</name><description>Argument of Pericenter [degrees]</description><unit>deg</unit><ucd>src.orbital.periastron</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>peri_time</name><description>Time from Pericenter Passage [days]</description><unit>d</unit><ucd>time.epoch</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>yarkovsky</name><description>Yarkovsky Component [10^(-10)*au/day^2]</description><unit>1e-10.au.d-2</unit><ucd>phys.acceleration</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>srp</name><description>Solar-Radiation Pressure Component [m^2/ton]</description><unit>m2.t-1</unit><ucd>phys.acceleration</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>a1</name><description>A1 non-grav components [m^2/ton]</description><unit>m2.t-1</unit><ucd>phys.acceleration</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>a2</name><description>A2 non-grav components [m^2/ton]</description><unit>m2.t-1</unit><ucd>phys.acceleration</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>a3</name><description>A3 non-grav components [m^2/ton]</description><unit>m2.t-1</unit><ucd>phys.acceleration</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>dt</name><description>DT non-grav component</description><ucd>time.interval</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>mean_anomaly</name><description>Mean Anomaly [degrees]</description><unit>deg</unit><ucd>src.orbital.meanAnomaly</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>period</name><description>Orbital Period [days]</description><unit>d</unit><ucd>time.period.revolution;src.orbital</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>mean_motion</name><description>Orbital Mean Motion [degrees per day]</description><unit>deg.d-1</unit><ucd>src.orbital.meanMotion</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>a_unc</name><description>Uncertainty on Semi Major Axis [au]</description><unit>AU</unit><ucd>stat.error;pos.distance;src.orbital</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>q_unc</name><description>Uncertainty on Pericenter Distance [au]</description><unit>AU</unit><ucd>stat.error;pos.distance;src.orbital</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>e_unc</name><description>Uncertainty on Eccentricity</description><ucd>stat.error;src.orbital.eccentricity</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>i_unc</name><description>Uncertainty on Inclination [degrees]</description><unit>deg</unit><ucd>stat.error;src.orbital.inclination</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>node_unc</name><description>Uncertainty on Longitude of Ascending Node [degrees]</description><unit>deg</unit><ucd>stat.error;src.orbital.node</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>argperi_unc</name><description>Uncertainty on Argument of Pericenter [degrees]</description><unit>deg</unit><ucd>stat.error;src.orbital.periastron</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>peri_time_unc</name><description>Time of perihelion passage uncertainty</description><unit>d</unit><ucd>stat.error;time.epoch</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>yarkovsky_unc</name><description>Yarkovsky effect parameter uncertainty</description><ucd>stat.error</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>srp_unc</name><description>Solar radiation pressure parameter uncertainty</description><ucd>stat.error</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>a1_unc</name><description>A1 non-gravitational parameter uncertainty</description><ucd>stat.error</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>a2_unc</name><description>A2 non-gravitational parameter uncertainty</description><ucd>stat.error</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>a3_unc</name><description>A3 non-gravitational parameter uncertainty</description><ucd>stat.error</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>dt_unc</name><description>Time offset uncertainty</description><unit>d</unit><ucd>stat.error;time.interval</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>mean_anomaly_unc</name><description>Mean anomaly uncertainty</description><unit>deg</unit><ucd>stat.error</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>period_unc</name><description>Orbital period uncertainty</description><unit>d</unit><ucd>stat.error;time.period</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>mean_motion_unc</name><description>Mean motion uncertainty</description><unit>deg/d</unit><ucd>stat.error</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>epoch_mjd</name><description>Epoch in MJD</description><unit>d</unit><ucd>time.epoch</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>h</name><description>Absolute magnitude H</description><unit>mag</unit><ucd>phys.magAbs</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>g</name><description>Slope parameter G</description><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>not_normalized_rms</name><description>Non-normalized RMS of fit</description><ucd>stat.fit.residual</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>normalized_rms</name><description>Normalized RMS of fit</description><ucd>stat.fit.residual</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>earth_moid</name><description>Earth minimum orbit intersection distance</description><unit>AU</unit><ucd>phys.distance;pos.earth</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>fitting_datetime</name><description>DateTime of orbital fit</description><ucd>time.processing</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>created_date</name><description>Date record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>updated_date</name><description>Date record was last updated</description><ucd>time.processing</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.detection</name><title>Multi-Survey Detections</title><description>
Generic detection table containing basic information for all detections across
multiple surveys, including position, observation time, and photometric band.
For detailed survey-specific detection properties, see the corresponding
survey-specific detection tables.</description><column><name>oid</name><description>Object identifier</description><ucd>meta.id;src</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>sid</name><description>Survey identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>measurement_id</name><description>Measurement identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>mjd</name><description>Modified Julian Date</description><unit>d</unit><ucd>time.epoch</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>indexed</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>indexed</flag></column><column><name>band</name><description>Photometric band</description><ucd>instr.bandpass</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><column><name>created_date</name><description>Date record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.ztf_detection</name><title>ZTF Detections</title><description>
Individual detections from ZTF difference imaging, including PSF and aperture photometry,
Real/Bogus quality scores, corrected magnitudes accounting for reference flux,
and flags indicating image quality and photometric reliability.</description><column><name>oid</name><description>Unique identifier for this object</description><ucd>meta.id;src</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>sid</name><description>Survey identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType></column><column><name>measurement_id</name><description>Unique identifier for the subtraction candidate (candid from ZTF)</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>pid</name><description>Processing ID for image</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>diffmaglim</name><description>5-sigma magnitude limit in difference image based on PSF-fit photometry</description><unit>mag</unit><ucd>phot.mag;stat.min</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>isdiffpos</name><description>Difference image sign: 1 =&gt; candidate is from positive (science minus reference) subtraction; -1 =&gt; candidate is from negative (reference minus science) subtraction</description><ucd>meta.code</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>nid</name><description>Night ID</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>magpsf</name><description>Magnitude from PSF-fit photometry</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>sigmapsf</name><description>1-sigma uncertainty in magpsf</description><unit>mag</unit><ucd>stat.error;phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>magap</name><description>Aperture magnitude using 8 pixel diameter aperture</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>sigmagap</name><description>1-sigma uncertainty in magap</description><unit>mag</unit><ucd>stat.error;phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>distnr</name><description>Distance to nearest source in reference image PSF-catalog within 30 arcsec</description><unit>arcsec</unit><ucd>pos.angDistance</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>rb</name><description>RealBogus quality score from machine learning classifier, range 0 to 1 where closer to 1 is more reliable</description><ucd>stat.probability</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>rbversion</name><description>Version of RealBogus model/classifier used to assign rb quality score</description><ucd>meta.version</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>drb</name><description>RealBogus quality score from Deep-Learning-based classifier, range 0 to 1 where closer to 1 is more reliable</description><ucd>stat.probability</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>drbversion</name><description>Version of Deep-Learning-based classifier model used to assign drb quality score</description><ucd>meta.version</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>magapbig</name><description>Aperture magnitude using 18 pixel diameter aperture</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>sigmagapbig</name><description>1-sigma uncertainty in magapbig</description><unit>mag</unit><ucd>stat.error;phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>rfid</name><description>Processing ID for reference image to facilitate archive retrieval</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>magpsf_corr</name><description>Corrected PSF magnitude accounting for flux in reference image</description><unit>mag</unit><ucd>phot.mag;arith.corrected</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>sigmapsf_corr</name><description>Error of the corrected PSF magnitude assuming no contribution from an extended component</description><unit>mag</unit><ucd>stat.error;phot.mag;arith.corrected</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>sigmapsf_corr_ext</name><description>Error of the corrected PSF magnitude assuming a contribution from an extended component</description><unit>mag</unit><ucd>stat.error;phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>corrected</name><description>Whether the corrected photometry was applied (True if source present in reference image within 1.4 arcsec)</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>dubious</name><description>Whether the corrected photometry should be flagged as dubious due to inconsistencies</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>parent_candid</name><description>Parent candidate ID if alert coming from previous candidate history (null if from main alert)</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>has_stamp</name><description>Whether the detection has an associated image stamp triplet (when parent_candid is null)</description><ucd>meta.code</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>created_date</name><description>Date record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.lsst_detection</name><title>LSST DIA Source Detections</title><description>
Individual LSST Difference Image Analysis sources, containing detailed measurements
from difference imaging including PSF photometry, aperture photometry, trail and dipole
fitting for moving objects, shape moments, forced photometry on science and template images,
and extensive quality flags for pixels and measurements.</description><column><name>oid</name><description>Object identifier</description><ucd>meta.id;src</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>sid</name><description>Survey identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType></column><column><name>measurement_id</name><description>Unique identifier of this DiaSource</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>parentdiasourceid</name><description>Id of the parent diaSource this diaSource has been deblended from, if any</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>visit</name><description>Visit number</description><ucd>obs.field</ucd><dataType xsi:type="vs:VOTableType">long</dataType></column><column><name>detector</name><description>Detector number</description><ucd>instr.det</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>diaobjectid</name><description>Id of the diaObject this source was associated with, if any. If not, it is set to NULL (each diaSource will be associated with either a diaObject or ssObject)</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>ssobjectid</name><description>Id of the ssObject this source was associated with, if any. If not, it is set to NULL (each diaSource will be associated with either a diaObject or ssObject)</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>raerr</name><description>Uncertainty of ra</description><unit>deg</unit><ucd>stat.error;pos.eq.ra</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>decerr</name><description>Uncertainty of dec</description><unit>deg</unit><ucd>stat.error;pos.eq.dec</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ra_dec_cov</name><description>Covariance between ra and dec</description><unit>deg**2</unit><ucd>stat.covariance;pos.eq</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>x</name><description>x position computed by a centroiding algorithm</description><unit>pix</unit><ucd>pos.cartesian.x</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>xerr</name><description>Uncertainty of x</description><unit>pix</unit><ucd>stat.error;pos.cartesian.x</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>y</name><description>y position computed by a centroiding algorithm</description><unit>pix</unit><ucd>pos.cartesian.y</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>yerr</name><description>Uncertainty of y</description><unit>pix</unit><ucd>stat.error;pos.cartesian.y</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>centroid_flag</name><description>General centroid algorithm failure flag; set if anything went wrong when fitting the centroid. Another centroid flag field should also be set to provide more information</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>apflux</name><description>Flux in a 12 pixel radius aperture on the difference image</description><ucd>phot.flux</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>apfluxerr</name><description>Estimated uncertainty of apFlux</description><ucd>stat.error;phot.flux</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>apflux_flag</name><description>General aperture flux algorithm failure flag; set if anything went wrong when measuring aperture fluxes. Another apFlux flag field should also be set to provide more information</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>apflux_flag_aperturetruncated</name><description>Aperture did not fit within measurement image</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>isnegative</name><description>Source was detected as significantly negative</description><ucd>meta.code</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>snr</name><description>The signal-to-noise ratio at which this source was detected in the difference image</description><ucd>stat.snr</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>psfflux</name><description>Flux for Point Source model. Note this actually measures the flux difference between the template and the visit image</description><ucd>phot.flux</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>psffluxerr</name><description>Uncertainty of psfFlux</description><ucd>stat.error;phot.flux</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>psflnl</name><description>Natural log likelihood of the observed data given the point source model</description><ucd>stat.likelihood</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>psfchi2</name><description>Chi^2 statistic of the point source model fit</description><ucd>stat.fit.chi2</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>psfndata</name><description>The number of data points (pixels) used to fit the point source model</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>psfflux_flag</name><description>Failure to derive linear least-squares fit of psf model. Another psfFlux flag field should also be set to provide more information</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>psfflux_flag_edge</name><description>Object was too close to the edge of the image to use the full PSF model</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>psfflux_flag_nogoodpixels</name><description>Not enough non-rejected pixels in data to attempt the fit</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>trailflux</name><description>Flux for a trailed source model. Note this actually measures the flux difference between the template and the visit image</description><ucd>phot.flux</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>trailfluxerr</name><description>Uncertainty of trailFlux</description><ucd>stat.error;phot.flux</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>trailra</name><description>Right ascension coordinate of centroid for trailed source model</description><unit>deg</unit><ucd>pos.eq.ra</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>trailraerr</name><description>Uncertainty of trailRa</description><unit>deg</unit><ucd>stat.error;pos.eq.ra</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>traildec</name><description>Declination coordinate of centroid for trailed source model</description><unit>deg</unit><ucd>pos.eq.dec</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>traildecerr</name><description>Uncertainty of trailDec</description><unit>deg</unit><ucd>stat.error;pos.eq.dec</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>traillength</name><description>Maximum likelihood fit of trail length</description><unit>arcsec</unit><ucd>phys.angSize</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>traillengtherr</name><description>Uncertainty of trailLength</description><unit>arcsec</unit><ucd>stat.error</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>trailangle</name><description>Maximum likelihood fit of the angle between the meridian through the centroid and the trail direction (bearing)</description><unit>deg</unit><ucd>pos.posAng</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>trailangleerr</name><description>Uncertainty of trailAngle</description><unit>deg</unit><ucd>stat.error</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>trailchi2</name><description>Chi^2 statistic of the trailed source model fit</description><ucd>stat.fit.chi2</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>trailndata</name><description>The number of data points (pixels) used to fit the trailed source model</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>trail_flag_edge</name><description>This flag is set if a trailed source extends onto or past edge pixels</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>dipolemeanflux</name><description>Maximum likelihood value for the mean absolute flux of the two lobes for a dipole model</description><ucd>phot.flux</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>dipolemeanfluxerr</name><description>Uncertainty of dipoleMeanFlux</description><ucd>stat.error;phot.flux</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>dipolefluxdiff</name><description>Maximum likelihood value for the difference of absolute fluxes of the two lobes for a dipole model</description><ucd>phot.flux</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>dipolefluxdifferr</name><description>Uncertainty of dipoleFluxDiff</description><ucd>stat.error;phot.flux</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>dipolelength</name><description>Maximum likelihood value for the lobe separation in dipole model</description><unit>arcsec</unit><ucd>phys.angSize</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>dipoleangle</name><description>Maximum likelihood fit of the angle between the meridian through the centroid and the dipole direction (bearing, from negative to positive lobe)</description><unit>deg</unit><ucd>pos.posAng</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>dipolechi2</name><description>Chi^2 statistic of the model fit</description><ucd>stat.fit.chi2</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>dipolendata</name><description>The number of data points (pixels) used to fit the model</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>scienceflux</name><description>Forced photometry flux for a point source model measured on the visit image centered at DiaSource position</description><ucd>phot.flux</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>sciencefluxerr</name><description>Estimated uncertainty of scienceFlux</description><ucd>stat.error;phot.flux</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>forced_psfflux_flag</name><description>Forced PSF photometry on science image failed. Another forced_PsfFlux flag field should also be set to provide more information</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>forced_psfflux_flag_edge</name><description>Forced PSF flux on science image was too close to the edge of the image to use the full PSF model</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>forced_psfflux_flag_nogoodpixels</name><description>Forced PSF flux not enough non-rejected pixels in data to attempt the fit</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>templateflux</name><description>Forced photometry flux for a point source model measured on the template image centered at the DiaObject position</description><ucd>phot.flux</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>templatefluxerr</name><description>Uncertainty of templateFlux</description><ucd>stat.error;phot.flux</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ixx</name><description>Adaptive second moment of the source intensity</description><unit>nJy.arcsec**2</unit><ucd>phys.size</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>iyy</name><description>Adaptive second moment of the source intensity</description><unit>nJy.arcsec**2</unit><ucd>phys.size</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ixy</name><description>Adaptive second moment of the source intensity</description><unit>nJy.arcsec**2</unit><ucd>phys.size</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ixxpsf</name><description>Adaptive second moment for the PSF</description><unit>nJy.arcsec**2</unit><ucd>phys.size</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>iyypsf</name><description>Adaptive second moment for the PSF</description><unit>nJy.arcsec**2</unit><ucd>phys.size</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ixypsf</name><description>Adaptive second moment for the PSF</description><unit>nJy.arcsec**2</unit><ucd>phys.size</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>shape_flag</name><description>General source shape algorithm failure flag; set if anything went wrong when measuring the shape. Another shape flag field should also be set to provide more information</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>shape_flag_no_pixels</name><description>No pixels to measure shape</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>shape_flag_not_contained</name><description>Center not contained in footprint bounding box</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>shape_flag_parent_source</name><description>This source is a parent source; we should only be measuring on deblended children in difference imaging</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>extendedness</name><description>A measure of extendedness, computed by comparing an object's moment-based traced radius to the PSF moments. extendedness = 1 implies a high degree of confidence that the source is extended. extendedness = 0 implies a high degree of confidence that the source is point-like</description><ucd>src.class.starGalaxy</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>reliability</name><description>Probability (0-1) that the diaSource is astrophysical, derived from a machine learning model</description><ucd>stat.probability</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>isdipole</name><description>Source well fit by a dipole</description><ucd>meta.code</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>dipolefitattempted</name><description>Attempted to fit a dipole model to this source</description><ucd>meta.code</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>timeprocessedmjdtai</name><description>Time when the image was processed and this DiaSource record was generated, expressed as Modified Julian Date, International Atomic Time</description><unit>d</unit><ucd>time.processing</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>timewithdrawnmjdtai</name><description>Time when this record was marked invalid, expressed as Modified Julian Date, International Atomic Time</description><unit>d</unit><ucd>time.processing</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>bboxsize</name><description>Size of the square bounding box that fully contains the detection footprint</description><unit>pix</unit><ucd>phys.angSize</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>pixelflags</name><description>General pixel flags failure; set if anything went wrong when setting pixels flags from this footprint's mask. This implies that some pixelFlags for this source may be incorrectly set to False</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>pixelflags_bad</name><description>Bad pixel in the DiaSource footprint</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>pixelflags_cr</name><description>Cosmic ray in the DiaSource footprint</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>pixelflags_crcenter</name><description>Cosmic ray in the 3x3 region around the centroid</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>pixelflags_edge</name><description>Some of the source footprint is outside usable exposure region (masked EDGE or centroid off image)</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>pixelflags_nodata</name><description>NO_DATA pixel in the source footprint</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>pixelflags_nodatacenter</name><description>NO_DATA pixel in the 3x3 region around the centroid</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>pixelflags_interpolated</name><description>Interpolated pixel in the DiaSource footprint</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>pixelflags_interpolatedcenter</name><description>Interpolated pixel in the 3x3 region around the centroid</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>pixelflags_offimage</name><description>DiaSource center is off image</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>pixelflags_saturated</name><description>Saturated pixel in the DiaSource footprint</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>pixelflags_saturatedcenter</name><description>Saturated pixel in the 3x3 region around the centroid</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>pixelflags_suspect</name><description>DiaSource's footprint includes suspect pixels</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>pixelflags_suspectcenter</name><description>Suspect pixel in the 3x3 region around the centroid</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>pixelflags_streak</name><description>Streak in the DiaSource footprint</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>pixelflags_streakcenter</name><description>Streak in the 3x3 region around the centroid</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>pixelflags_injected</name><description>Injection in the DiaSource footprint</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>pixelflags_injectedcenter</name><description>Injection in the 3x3 region around the centroid</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>pixelflags_injected_template</name><description>Template injection in the DiaSource footprint</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>pixelflags_injected_templatecenter</name><description>Template injection in the 3x3 region around the centroid</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>glint_trail</name><description>This flag is set if the source is part of a glint trail</description><ucd>meta.code</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>has_stamp</name><description>Has image stamp flag</description><ucd>meta.code</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>created_date</name><description>Date record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.lsst_ss_detection</name><title>LSST Solar System Detections</title><description>
Individual LSST detections associated with solar system objects, including
observing geometry (phase angle, elongation, ranges), ephemeris predictions,
ephemeris offsets (O-C residuals), and heliocentric/topocentric state vectors
in ICRS coordinates.</description><column><name>measurement_id</name><description>Unique identifier of this DIA source observation</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>ssobjectid</name><description>LSST solar system object identifier</description><ucd>meta.id;src</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>designation</name><description>Unpacked primary provisional designation for this solar system object</description><ucd>meta.id;src</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ecllambda</name><description>Ecliptic longitude</description><unit>deg</unit><ucd>pos.ecliptic.lon</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>eclbeta</name><description>Ecliptic latitude</description><unit>deg</unit><ucd>pos.ecliptic.lat</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>gallon</name><description>Galactic longitude</description><unit>deg</unit><ucd>pos.galactic.lon</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>gallat</name><description>Galactic latitude</description><unit>deg</unit><ucd>pos.galactic.lat</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>elongation</name><description>Solar elongation, the angular separation of the object from the Sun on the celestial sphere</description><unit>deg</unit><ucd>pos.angDistance</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>phaseangle</name><description>Phase angle, the angle between the Sun and observer as seen from the object</description><unit>deg</unit><ucd>pos.phaseAng</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>toporange</name><description>Topocentric range, the distance from the observer to the object</description><unit>AU</unit><ucd>phys.distance</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>toporangerate</name><description>Topocentric range rate, the radial velocity of the object relative to the observer</description><unit>AU/d</unit><ucd>phys.veloc</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>heliorange</name><description>Heliocentric range, the distance from the Sun to the object</description><unit>AU</unit><ucd>phys.distance</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>heliorangerate</name><description>Heliocentric range rate, the radial velocity of the object relative to the Sun</description><unit>AU/d</unit><ucd>phys.veloc</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ephra</name><description>Predicted ICRS right ascension computed from orbit propagation at observation time</description><unit>deg</unit><ucd>pos.eq.ra;meta.modelled;pos.ephem</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>ephdec</name><description>Predicted ICRS declination computed from orbit propagation at observation time</description><unit>deg</unit><ucd>pos.eq.dec;meta.modelled;pos.ephem</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>ephvmag</name><description>Predicted V-band magnitude computed from orbit propagation at observation time</description><unit>mag</unit><ucd>phot.mag;em.opt.V;meta.modelled;pos.ephem</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ephrate</name><description>Predicted total angular rate of motion on the sky</description><unit>arcsec/h</unit><ucd>pos.pm;pos.ephem</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ephratera</name><description>Predicted angular rate of motion along right ascension</description><unit>arcsec/h</unit><ucd>pos.pm;pos.eq.ra;pos.ephem</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ephratedec</name><description>Predicted angular rate of motion along declination</description><unit>arcsec/h</unit><ucd>pos.pm;pos.eq.dec;pos.ephem</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ephoffset</name><description>Total angular offset between observed and predicted position on the celestial sphere</description><unit>arcsec</unit><ucd>pos.angDistance;stat.fit.omc</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ephoffsetra</name><description>Angular offset in right ascension between observed and predicted position (observed minus predicted)</description><unit>deg</unit><ucd>pos.eq.ra;stat.fit.omc</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>ephoffsetdec</name><description>Angular offset in declination between observed and predicted position (observed minus predicted)</description><unit>deg</unit><ucd>pos.eq.dec;stat.fit.omc</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>ephoffsetalongtrack</name><description>Angular offset along the direction of motion between observed and predicted position</description><unit>arcsec</unit><ucd>pos.angDistance;stat.fit.omc</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ephoffsetcrosstrack</name><description>Angular offset perpendicular to the direction of motion between observed and predicted position</description><unit>arcsec</unit><ucd>pos.angDistance;stat.fit.omc</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>helio_x</name><description>Heliocentric X position component in ICRS reference frame</description><unit>AU</unit><ucd>pos.cartesian.x;pos.heliocentric</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>helio_y</name><description>Heliocentric Y position component in ICRS reference frame</description><unit>AU</unit><ucd>pos.cartesian.y;pos.heliocentric</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>helio_z</name><description>Heliocentric Z position component in ICRS reference frame</description><unit>AU</unit><ucd>pos.cartesian.z;pos.heliocentric</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>helio_vx</name><description>Heliocentric velocity component along X axis in ICRS reference frame</description><unit>AU/d</unit><ucd>phys.veloc;pos.cartesian.x;pos.heliocentric</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>helio_vy</name><description>Heliocentric velocity component along Y axis in ICRS reference frame</description><unit>AU/d</unit><ucd>phys.veloc;pos.cartesian.y;pos.heliocentric</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>helio_vz</name><description>Heliocentric velocity component along Z axis in ICRS reference frame</description><unit>AU/d</unit><ucd>phys.veloc;pos.cartesian.z;pos.heliocentric</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>helio_vtot</name><description>Heliocentric total velocity magnitude</description><unit>AU/d</unit><ucd>phys.veloc;pos.heliocentric</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>topo_x</name><description>Topocentric X position component in ICRS reference frame relative to the observer</description><unit>AU</unit><ucd>pos.cartesian.x</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>topo_y</name><description>Topocentric Y position component in ICRS reference frame relative to the observer</description><unit>AU</unit><ucd>pos.cartesian.y</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>topo_z</name><description>Topocentric Z position component in ICRS reference frame relative to the observer</description><unit>AU</unit><ucd>pos.cartesian.z</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>topo_vx</name><description>Topocentric velocity component along X axis in ICRS reference frame</description><unit>AU/d</unit><ucd>phys.veloc;pos.cartesian.x</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>topo_vy</name><description>Topocentric velocity component along Y axis in ICRS reference frame</description><unit>AU/d</unit><ucd>phys.veloc;pos.cartesian.y</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>topo_vz</name><description>Topocentric velocity component along Z axis in ICRS reference frame</description><unit>AU/d</unit><ucd>phys.veloc;pos.cartesian.z</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>topo_vtot</name><description>Topocentric total velocity magnitude</description><unit>AU/d</unit><ucd>phys.veloc</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>diadistancerank</name><description>Ranking based on the distance between this DIA source and the predicted position of the solar system object, with 1 being the closest match</description><ucd>meta.code.class</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>created_date</name><description>Date record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.forced_photometry</name><title>Multi-Survey Forced Photometry</title><description>
Generic forced photometry measurements across multiple surveys, containing
basic position and timing information. For detailed survey-specific forced
photometry measurements, see the corresponding survey-specific tables.</description><column><name>oid</name><description>Object identifier</description><ucd>meta.id;src</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>sid</name><description>Survey identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>measurement_id</name><description>Measurement identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>mjd</name><description>Modified Julian Date</description><unit>d</unit><ucd>time.epoch</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>indexed</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>indexed</flag></column><column><name>band</name><description>Photometric band</description><ucd>instr.bandpass</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><column><name>created_date</name><description>Date record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.ztf_forced_photometry</name><title>ZTF Forced Photometry</title><description>
ZTF forced photometry measurements at known object positions, including
magnitudes with and without host galaxy corrections, image quality metrics
(seeing, background, zero point), reference source properties, and
processing status flags.</description><column><name>oid</name><description>Object identifier</description><ucd>meta.id;src</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>sid</name><description>Survey identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType></column><column><name>measurement_id</name><description>Measurement identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>pid</name><description>Processing ID</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>mag</name><description>Magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>e_mag</name><description>Magnitude error</description><unit>mag</unit><ucd>stat.error;phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>mag_corr</name><description>Corrected magnitude</description><unit>mag</unit><ucd>phot.mag;arith.corrected</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>e_mag_corr</name><description>Corrected magnitude error</description><unit>mag</unit><ucd>stat.error;phot.mag;arith.corrected</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>e_mag_corr_ext</name><description>Extended corrected magnitude error</description><unit>mag</unit><ucd>stat.error;phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>isdiffpos</name><description>Difference image positive flag</description><ucd>meta.code</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>corrected</name><description>Correction applied flag</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType></column><column><name>dubious</name><description>Dubious measurement flag</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType></column><column><name>parent_candid</name><description>Parent candidate ID</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>field</name><description>Field number</description><ucd>obs.field</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>rcid</name><description>Readout channel ID</description><ucd>instr.det</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>rfid</name><description>Reference image ID</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType></column><column><name>sciinpseeing</name><description>Science image seeing</description><unit>arcsec</unit><ucd>instr.obsty.seeing</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>scibckgnd</name><description>Science image background</description><ucd>instr.skyLevel</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>scisigpix</name><description>Science image sigma per pixel</description><ucd>stat.stdev;instr.pixel</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>magzpsci</name><description>Magnitude zero point</description><unit>mag</unit><ucd>phot.calib</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>magzpsciunc</name><description>Magnitude zero point uncertainty</description><unit>mag</unit><ucd>stat.error;phot.calib</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>magzpscirms</name><description>Magnitude zero point RMS</description><unit>mag</unit><ucd>stat.stdev;phot.calib</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>clrcoeff</name><description>Color coefficient</description><ucd>arith.factor</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>clrcounc</name><description>Color coefficient uncertainty</description><ucd>stat.error;arith.factor</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>exptime</name><description>Exposure time</description><unit>s</unit><ucd>time.duration;obs.exposure</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>adpctdif1</name><description>Adaptive percentile difference 1</description><ucd>stat.value</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>adpctdif2</name><description>Adaptive percentile difference 2</description><ucd>stat.value</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>diffmaglim</name><description>Difference image magnitude limit</description><unit>mag</unit><ucd>phot.mag;stat.min</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>programid</name><description>Program ID</description><ucd>obs.program</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>procstatus</name><description>Processing status</description><ucd>meta.code.status</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>distnr</name><description>Distance to nearest source</description><unit>arcsec</unit><ucd>pos.angDistance</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>ranr</name><description>RA of nearest source</description><unit>deg</unit><ucd>pos.eq.ra</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>decnr</name><description>Dec of nearest source</description><unit>deg</unit><ucd>pos.eq.dec</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>magnr</name><description>Magnitude of nearest source</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>sigmagnr</name><description>Magnitude error of nearest source</description><unit>mag</unit><ucd>stat.error;phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>chinr</name><description>Chi of nearest source</description><ucd>stat.fit.chi2</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>sharpnr</name><description>Sharpness of nearest source</description><ucd>stat.value</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>created_date</name><description>Date record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.lsst_forced_photometry</name><title>LSST Forced Source Photometry</title><description>
LSST forced photometry measurements extracted at DIA object positions on
individual visit images, including PSF flux and forced science flux with
uncertainties, and temporal processing metadata.</description><column><name>oid</name><description>Object identifier</description><ucd>meta.id;src</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>sid</name><description>Survey identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType></column><column><name>measurement_id</name><description>Unique id</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>visit</name><description>Id of the visit where this forcedSource was measured</description><ucd>obs.field</ucd><dataType xsi:type="vs:VOTableType">long</dataType></column><column><name>detector</name><description>Id of the detector where this forcedSource was measured</description><ucd>instr.det</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>psfflux</name><description>Point Source model flux</description><ucd>phot.flux</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>psffluxerr</name><description>Uncertainty of psfFlux</description><ucd>stat.error;phot.flux</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>scienceflux</name><description>Forced photometry flux for a point source model measured on the visit image centered at the DiaObject position</description><ucd>phot.flux</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>sciencefluxerr</name><description>Uncertainty of scienceFlux</description><ucd>stat.error;phot.flux</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>timeprocessedmjdtai</name><description>Time when this record was generated, expressed as Modified Julian Date, International Atomic Time</description><unit>d</unit><ucd>time.processing</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column><column><name>timewithdrawnmjdtai</name><description>Time when this record was marked invalid, expressed as Modified Julian Date, International Atomic Time</description><unit>d</unit><ucd>time.processing</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>created_date</name><description>Date record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.ztf_non_detection</name><title>ZTF Non-Detections</title><description>
ZTF non-detection upper limits providing 5-sigma magnitude limits from
difference images when an object was not detected, useful for constraining
object brightness and variability.</description><column><name>oid</name><description>Unique identifier for this object</description><ucd>meta.id;src</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>sid</name><description>Survey identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType></column><column><name>band</name><description>Filter ID: 1=g, 2=r, 3=i</description><ucd>instr.bandpass</ucd><dataType xsi:type="vs:VOTableType">short</dataType></column><column><name>mjd</name><description>Observation Modified Julian Date at start of exposure when non-detection occurred</description><unit>d</unit><ucd>time.epoch</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>diffmaglim</name><description>5-sigma magnitude limit in difference image based on PSF-fit photometry, providing upper limit for object brightness</description><unit>mag</unit><ucd>phot.mag;stat.min</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>created_date</name><description>Date record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.ztf_ss</name><title>ZTF Solar System Associations</title><description>
Cross-match information linking ZTF detections to known solar system objects
from the Minor Planet Center archive, including angular separation, magnitude,
and object name.</description><column><name>oid</name><description>Unique identifier for this object</description><ucd>meta.id;src</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>measurement_id</name><description>Unique identifier for the subtraction candidate</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>ssdistnr</name><description>Distance to nearest known solar system object; set to -999.0 if none</description><unit>arcsec</unit><ucd>pos.angDistance</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssmagnr</name><description>Magnitude of nearest known solar system object (usually V-band from MPC archive); set to -999.0 if none</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssnamenr</name><description>Name of nearest known solar system object (from MPC archive); 'null' if none</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>created_date</name><description>Date record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.ztf_ps1</name><title>ZTF-Pan-STARRS1 Cross-Match</title><description>
Cross-match of ZTF detections to Pan-STARRS1 catalog sources within 30 arcsec,
including up to three closest matches with multi-band PSF photometry (g, r, i, z),
star/galaxy scores, and angular separations.</description><column><name>oid</name><description>Unique identifier for this object</description><ucd>meta.id;src</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>measurement_id</name><description>Unique identifier for the subtraction candidate</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>objectidps1</name><description>Object ID of closest source from PS1 catalog, if exists within 30 arcsec</description><ucd>meta.id.cross</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>sgmag1</name><description>g-band PSF magnitude of closest source from PS1 catalog, if exists within 30 arcsec</description><unit>mag</unit><ucd>phot.mag;em.opt.B</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>srmag1</name><description>r-band PSF magnitude of closest source from PS1 catalog, if exists within 30 arcsec</description><unit>mag</unit><ucd>phot.mag;em.opt.R</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>simag1</name><description>i-band PSF magnitude of closest source from PS1 catalog, if exists within 30 arcsec</description><unit>mag</unit><ucd>phot.mag;em.opt.I</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>szmag1</name><description>z-band PSF magnitude of closest source from PS1 catalog, if exists within 30 arcsec</description><unit>mag</unit><ucd>phot.mag;em.opt.I</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>sgscore1</name><description>Star/Galaxy score of closest source from PS1 catalog, 0 &lt;= sgscore &lt;= 1 where closer to 1 implies higher likelihood of being a star</description><ucd>src.class.starGalaxy</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>distpsnr1</name><description>Distance of closest source from PS1 catalog, if exists within 30 arcsec</description><unit>arcsec</unit><ucd>pos.angDistance</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>objectidps2</name><description>Object ID of second closest source from PS1 catalog, if exists within 30 arcsec</description><ucd>meta.id.cross</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>sgmag2</name><description>g-band PSF magnitude of second closest source from PS1 catalog, if exists within 30 arcsec</description><unit>mag</unit><ucd>phot.mag;em.opt.B</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>srmag2</name><description>r-band PSF magnitude of second closest source from PS1 catalog, if exists within 30 arcsec</description><unit>mag</unit><ucd>phot.mag;em.opt.R</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>simag2</name><description>i-band PSF magnitude of second closest source from PS1 catalog, if exists within 30 arcsec</description><unit>mag</unit><ucd>phot.mag;em.opt.I</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>szmag2</name><description>z-band PSF magnitude of second closest source from PS1 catalog, if exists within 30 arcsec</description><unit>mag</unit><ucd>phot.mag;em.opt.I</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>sgscore2</name><description>Star/Galaxy score of second closest source from PS1 catalog, if exists within 30 arcsec: 0 &lt;= sgscore &lt;= 1 where closer to 1 implies higher likelihood of being a star</description><ucd>src.class.starGalaxy</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>distpsnr2</name><description>Distance to second closest source from PS1 catalog, if exists within 30 arcsec</description><unit>arcsec</unit><ucd>pos.angDistance</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>objectidps3</name><description>Object ID of third closest source from PS1 catalog, if exists within 30 arcsec</description><ucd>meta.id.cross</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>sgmag3</name><description>g-band PSF magnitude of third closest source from PS1 catalog, if exists within 30 arcsec</description><unit>mag</unit><ucd>phot.mag;em.opt.B</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>srmag3</name><description>r-band PSF magnitude of third closest source from PS1 catalog, if exists within 30 arcsec</description><unit>mag</unit><ucd>phot.mag;em.opt.R</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>simag3</name><description>i-band PSF magnitude of third closest source from PS1 catalog, if exists within 30 arcsec</description><unit>mag</unit><ucd>phot.mag;em.opt.I</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>szmag3</name><description>z-band PSF magnitude of third closest source from PS1 catalog, if exists within 30 arcsec</description><unit>mag</unit><ucd>phot.mag;em.opt.I</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>sgscore3</name><description>Star/Galaxy score of third closest source from PS1 catalog, if exists within 30 arcsec: 0 &lt;= sgscore &lt;= 1 where closer to 1 implies higher likelihood of being a star</description><ucd>src.class.starGalaxy</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>distpsnr3</name><description>Distance to third closest source from PS1 catalog, if exists within 30 arcsec</description><unit>arcsec</unit><ucd>pos.angDistance</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>nmtchps</name><description>Number of source matches from PS1 catalog falling within 30 arcsec</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>created_date</name><description>Date record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.ztf_gaia</name><title>ZTF-Gaia Cross-Match</title><description>
Cross-match of ZTF objects to Gaia DR1 catalog sources within 90 arcsec,
providing distances and G-band magnitudes for the nearest source and
nearest bright source (G &lt; 14 mag).</description><column><name>oid</name><description>Unique identifier for this object</description><ucd>meta.id;src</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>measurement_id</name><description>Unique identifier for the subtraction candidate</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType></column><column><name>neargaia</name><description>Distance to closest source from Gaia DR1 catalog irrespective of magnitude, if exists within 90 arcsec</description><unit>arcsec</unit><ucd>pos.angDistance</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>neargaiabright</name><description>Distance to closest source from Gaia DR1 catalog brighter than magnitude 14, if exists within 90 arcsec</description><unit>arcsec</unit><ucd>pos.angDistance</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>maggaia</name><description>Gaia (G-band) magnitude of closest source from Gaia DR1 catalog irrespective of magnitude, if exists within 90 arcsec</description><unit>mag</unit><ucd>phot.mag;em.opt</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>maggaiabright</name><description>Gaia (G-band) magnitude of closest source from Gaia DR1 catalog brighter than magnitude 14, if exists within 90 arcsec</description><unit>mag</unit><ucd>phot.mag;em.opt</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>created_date</name><description>Date record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.ztf_dataquality</name><title>ZTF Data Quality Metrics</title><description>
Detailed data quality metrics for ZTF detections including image position,
PSF-fit quality (chi-square, FWHM), SExtractor properties, pixel statistics,
photometric calibration parameters, and signal-to-noise measurements.</description><column><name>oid</name><description>Unique identifier for this object</description><ucd>meta.id;src</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>measurement_id</name><description>Unique identifier for the subtraction candidate</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>xpos</name><description>X-image position of candidate on CCD</description><unit>pix</unit><ucd>pos.cartesian.x</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ypos</name><description>Y-image position of candidate on CCD</description><unit>pix</unit><ucd>pos.cartesian.y</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>chipsf</name><description>Reduced chi-square for PSF-fit</description><ucd>stat.fit.goodness</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>sky</name><description>Local sky background estimate [DN]</description><ucd>instr.skyLevel</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>fwhm</name><description>Full Width Half Maximum assuming a Gaussian core, from SExtractor</description><unit>pix</unit><ucd>instr.obsty.seeing</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>classtar</name><description>Star/Galaxy classification score from SExtractor</description><ucd>src.class.starGalaxy</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>mindtoedge</name><description>Distance to nearest edge in image</description><unit>pix</unit><ucd>phys.angSize</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>seeratio</name><description>Ratio: difffwhm / fwhm</description><ucd>stat.fit.goodness</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>aimage</name><description>Windowed profile RMS along major axis from SExtractor</description><unit>pix</unit><ucd>phys.angSize.smajAxis</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>bimage</name><description>Windowed profile RMS along minor axis from SExtractor</description><unit>pix</unit><ucd>phys.angSize.sminAxis</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>aimagerat</name><description>Ratio: aimage / fwhm</description><ucd>arith.ratio</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>bimagerat</name><description>Ratio: bimage / fwhm</description><ucd>arith.ratio</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>nneg</name><description>Number of negative pixels in a 5 x 5 pixel stamp</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>nbad</name><description>Number of prior-tagged bad pixels in a 5 x 5 pixel stamp</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>sumrat</name><description>Ratio: sum(pixels) / sum(abs(pixels)) in a 5 x 5 pixel stamp where stamp is first median-filtered to mitigate outliers</description><ucd>arith.ratio</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>scorr</name><description>Peak-pixel signal-to-noise ratio in point source matched-filtered detection image</description><ucd>stat.correlation</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>dsnrms</name><description>Ratio: D/stddev(D) on event position where D = difference image</description><ucd>stat.stdev</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ssnrms</name><description>Ratio: S/stddev(S) on event position where S = image of convolution: D (x) PSF(D)</description><ucd>stat.stdev</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>magzpsci</name><description>Magnitude zero point for photometry estimates</description><unit>mag</unit><ucd>phot.calib</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>magzpsciunc</name><description>Magnitude zero point uncertainty (in magzpsci)</description><unit>mag</unit><ucd>stat.error;phot.calib</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>magzpscirms</name><description>RMS (deviation from average) in all differences between instrumental photometry and matched photometric calibrators from science image processing</description><unit>mag</unit><ucd>stat.stdev;phot.calib</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>nmatches</name><description>Number of PS1 photometric calibrators used to calibrate science image from science image processing</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>clrcoeff</name><description>Color coefficient from linear fit from photometric calibration of science image</description><ucd>arith.factor</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>clrcounc</name><description>Color coefficient uncertainty from linear fit (corresponding to clrcoeff)</description><ucd>stat.error;arith.factor</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>zpclrcov</name><description>Covariance in magzpsci and clrcoeff from science image processing [mag^2]</description><ucd>stat.covariance</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>zpmed</name><description>Magnitude zero point from median of all differences between instrumental photometry and matched photometric calibrators from science image processing</description><unit>mag</unit><ucd>phot.calib;stat.median</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>clrmed</name><description>Median color of all PS1 photometric calibrators used from science image processing: for filter (fid) = 1, 2, 3, PS1 color used = g-r, g-r, r-i respectively</description><ucd>stat.median</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>clrrms</name><description>RMS color (deviation from average) of all PS1 photometric calibrators used from science image processing</description><ucd>stat.stdev</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>exptime</name><description>Integration time of camera exposure</description><unit>s</unit><ucd>time.duration;obs.exposure</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>created_date</name><description>Date record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.ztf_reference</name><title>ZTF Reference Images</title><description>
Information about ZTF reference (template) images used for difference imaging,
including properties of the nearest catalog source, temporal coverage of the
reference image stack, and field/CCD identifiers.</description><column><name>oid</name><description>Unique identifier for this object</description><ucd>meta.id;src</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>rfid</name><description>Processing ID for reference image to facilitate archive retrieval</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>measurement_id</name><description>Unique identifier for the first detection associated with this reference image</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">long</dataType></column><column><name>band</name><description>Filter ID: 1=g, 2=r, 3=i</description><ucd>instr.bandpass</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>rcid</name><description>Readout channel ID [00 .. 63]</description><ucd>instr.det</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>field</name><description>ZTF field ID</description><ucd>obs.field</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>magnr</name><description>Magnitude of nearest source in reference image PSF-catalog within 30 arcsec</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>sigmagnr</name><description>1-sigma uncertainty in magnr within 30 arcsec</description><unit>mag</unit><ucd>stat.error;phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>chinr</name><description>DAOPhot chi parameter of nearest source in reference image PSF-catalog within 30 arcsec</description><ucd>stat.fit.chi2</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>sharpnr</name><description>DAOPhot sharp parameter of nearest source in reference image PSF-catalog within 30 arcsec (values between -0.13 and 0.1 indicate unresolved sources)</description><ucd>stat.value</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>ranr</name><description>Right ascension of nearest source in reference image PSF-catalog, J2000</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>decnr</name><description>Declination of nearest source in reference image PSF-catalog, J2000</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>mjdstartref</name><description>Observation Modified Julian Date of earliest exposure used to generate reference image</description><unit>d</unit><ucd>time.start</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>mjdendref</name><description>Observation Modified Julian Date of latest exposure used to generate reference image</description><unit>d</unit><ucd>time.end</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>nframesref</name><description>Number of frames (epochal images) used to generate reference image</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>created_date</name><description>Date record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.magstat</name><title>Magnitude Statistics</title><description>
Per-band photometric statistics for each object including mean, median, minimum,
maximum magnitudes, standard deviation, first/last magnitudes, rate of change,
and corrected values accounting for host galaxy flux.</description><column><name>oid</name><description>Object identifier</description><ucd>meta.id;src</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>sid</name><description>Survey identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>band</name><description>Photometric band</description><ucd>instr.bandpass</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>stellar</name><description>Stellar classification flag</description><ucd>src.class.starGalaxy</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>corrected</name><description>Correction applied flag</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">boolean</dataType><flag>nullable</flag></column><column><name>ndubious</name><description>Number of dubious measurements</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>dmdt_first</name><description>First magnitude rate of change</description><unit>mag/d</unit><ucd>arith.rate;phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>dm_first</name><description>First magnitude difference</description><unit>mag</unit><ucd>phot.mag;arith.diff</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>sigmadm_first</name><description>First magnitude difference error</description><unit>mag</unit><ucd>stat.error;phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>dt_first</name><description>First time interval</description><unit>d</unit><ucd>time.interval</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>magmean</name><description>Mean magnitude</description><unit>mag</unit><ucd>phot.mag;stat.mean</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>magmedian</name><description>Median magnitude</description><unit>mag</unit><ucd>phot.mag;stat.median</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>magmax</name><description>Maximum magnitude</description><unit>mag</unit><ucd>phot.mag;stat.max</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>magmin</name><description>Minimum magnitude</description><unit>mag</unit><ucd>phot.mag;stat.min</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>magsigma</name><description>Magnitude standard deviation</description><unit>mag</unit><ucd>stat.stdev;phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>maglast</name><description>Last magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>magfirst</name><description>First magnitude</description><unit>mag</unit><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>magmean_corr</name><description>Corrected mean magnitude</description><unit>mag</unit><ucd>phot.mag;stat.mean;arith.corrected</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>magmedian_corr</name><description>Corrected median magnitude</description><unit>mag</unit><ucd>phot.mag;stat.median;arith.corrected</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>magmax_corr</name><description>Corrected maximum magnitude</description><unit>mag</unit><ucd>phot.mag;stat.max;arith.corrected</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>magmin_corr</name><description>Corrected minimum magnitude</description><unit>mag</unit><ucd>phot.mag;stat.min;arith.corrected</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>magsigma_corr</name><description>Corrected magnitude standard deviation</description><unit>mag</unit><ucd>stat.stdev;phot.mag;arith.corrected</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>maglast_corr</name><description>Corrected last magnitude</description><unit>mag</unit><ucd>phot.mag;arith.corrected</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>magfirst_corr</name><description>Corrected first magnitude</description><unit>mag</unit><ucd>phot.mag;arith.corrected</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>step_id_corr</name><description>Correction step identifier</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>n_det</name><description>Number of detections</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>firstmjd</name><description>First observation MJD</description><unit>d</unit><ucd>time.start</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>lastmjd</name><description>Last observation MJD</description><unit>d</unit><ucd>time.end</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>saturation_rate</name><description>Saturation rate</description><ucd>arith.rate</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>updated_date</name><description>Date record was last updated</description><ucd>time.processing</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.classifier</name><title>Classifier Metadata</title><description>
Metadata for machine learning classifiers used to classify astronomical objects,
including classifier name, version, and associated telescope/survey.</description><column><name>classifier_id</name><description>Classifier identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>classifier_name</name><description>Classifier name</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>classifier_version</name><description>Classifier version</description><ucd>meta.version</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>tid</name><description>Telescope identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType></column><column><name>created_date</name><description>Date record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.taxonomy</name><title>Classification Taxonomy</title><description>
Taxonomy of astronomical object classes used by classifiers, including
class names, display ordering, and the associated classifier producing
these classifications.</description><column><name>class_id</name><description>Class identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>class_name</name><description>Class name</description><ucd>src.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>taxonomy_order</name><description>Display order</description><ucd>meta.code.class</ucd><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>classifier_id</name><description>Classifier identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType></column><column><name>created_date</name><description>Date record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.probability</name><title>Classification Probabilities</title><description>
Classification probabilities for each object assigned by machine learning
classifiers, including probability values, rankings among all classes,
and the timestamp of the classification.</description><column><name>oid</name><description>Object identifier</description><ucd>meta.id;src</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>sid</name><description>Survey identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>classifier_id</name><description>Classifier identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>classifier_version</name><description>Classifier version</description><ucd>meta.version</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>class_id</name><description>Class identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>probability</name><description>Classification probability</description><ucd>stat.probability</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>indexed</flag></column><column><name>ranking</name><description>Classification ranking</description><ucd>meta.code.class</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>lastmjd</name><description>Last observation MJD</description><unit>d</unit><ucd>time.end</ucd><dataType xsi:type="vs:VOTableType">double</dataType></column></table><table><name>alerce_tap.feature</name><title>Light Curve Features</title><description>
Computed features from light curves for each object and photometric band,
including time-series statistics and variability metrics used as inputs
to machine learning classifiers.</description><column><name>oid</name><description>Object identifier</description><ucd>meta.id;src</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>sid</name><description>Survey identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>feature_id</name><description>Feature identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>band</name><description>Photometric band</description><ucd>instr.bandpass</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>version</name><description>Feature version</description><ucd>meta.version</ucd><dataType xsi:type="vs:VOTableType">short</dataType></column><column><name>feature_value</name><description>Feature value</description><ucd>stat.value</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>updated_date</name><description>Date record was last updated</description><ucd>time.processing</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.feature_name_lut</name><title>Feature Name Lookup</title><description>
Lookup table mapping feature identifiers to descriptive feature names
for light curve features used in object classification.</description><column><name>feature_id</name><description>Feature identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>feature_name</name><description>Feature name</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>created_date</name><description>Date record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>sid</name><description>Survey identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><column><name>tid</name><description>Telescope identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.feature_version_lut</name><title>Feature Version Lookup</title><description>
Lookup table mapping version identifiers to version names for
light curve feature extraction algorithms.</description><column><name>version_id</name><description>Version identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>version_name</name><description>Version name</description><ucd>meta.version</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>sid</name><description>Survey identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><column><name>tid</name><description>Telescope identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.sid_lut</name><title>Survey Identifier Lookup</title><description>
Lookup table mapping survey identifiers to survey names and associated
telescope identifiers.</description><column><name>sid</name><description>Survey identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>tid</name><description>Telescope identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><column><name>survey_name</name><description>Survey name</description><ucd>obs.param</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>created_date</name><description>Date record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.band</name><title>Photometric Bands</title><description>
Lookup table defining photometric bands (filters) for each survey,
including band names and display ordering.</description><column><name>sid</name><description>Survey identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>tid</name><description>Telescope identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>band</name><description>Band identifier</description><ucd>instr.bandpass</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>band_name</name><description>Band name</description><ucd>instr.bandpass</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>band_order</name><description>Display order</description><ucd>meta.code.class</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>created_date</name><description>Date record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.xmatch</name><title>Catalog Cross-Matches</title><description>
Cross-match results linking objects to external astronomical catalogs,
including angular separation and the matched object's identifier in the
external catalog.</description><column><name>oid</name><description>Object identifier</description><ucd>meta.id;src</ucd><dataType xsi:type="vs:VOTableType">long</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>sid</name><description>Survey identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>catid</name><description>Catalog identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>dist</name><description>Cross-match distance</description><unit>arcsec</unit><ucd>pos.angDistance</ucd><dataType xsi:type="vs:VOTableType">float</dataType></column><column><name>oid_catalog</name><description>Object identifier in external catalog</description><ucd>meta.id.cross</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>created_date</name><description>Date record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>updated_date</name><description>Date record was last updated</description><ucd>time.processing</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.catalog_id_lut</name><title>Catalog Identifier Lookup</title><description>
Lookup table mapping catalog identifiers to the names of external
astronomical catalogs used for cross-matching.</description><column><name>catid</name><description>Catalog identifier</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">short</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>catalog_name</name><description>Catalog name</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>created_date</name><description>Date record was created</description><ucd>time.creation</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>alerce_tap.allwise</name><title>AllWISE Catalog Data</title><description>
Photometric data from the AllWISE catalog for cross-matched objects,
including WISE mid-infrared magnitudes (W1-W4 at 3.4, 4.6, 12, 22 microns)
and 2MASS near-infrared magnitudes (J, H, K) with uncertainties.</description><column><name>oid_catalog</name><description>Object identifier in AllWISE catalog</description><ucd>meta.id.cross</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ra</name><description>Right ascension from AllWISE catalog</description><unit>deg</unit><ucd>pos.eq.ra</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>dec</name><description>Declination from AllWISE catalog</description><unit>deg</unit><ucd>pos.eq.dec</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>w1mpro</name><description>W1 magnitude (3.4 micron) from AllWISE catalog</description><unit>mag</unit><ucd>phot.mag;em.IR.3-4um</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>w2mpro</name><description>W2 magnitude (4.6 micron) from AllWISE catalog</description><unit>mag</unit><ucd>phot.mag;em.IR.4-8um</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>w3mpro</name><description>W3 magnitude (12 micron) from AllWISE catalog</description><unit>mag</unit><ucd>phot.mag;em.IR.8-15um</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>w4mpro</name><description>W4 magnitude (22 micron) from AllWISE catalog</description><unit>mag</unit><ucd>phot.mag;em.IR.15-30um</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>w1sigmpro</name><description>W1 magnitude uncertainty from AllWISE catalog</description><unit>mag</unit><ucd>stat.error;phot.mag;em.IR.3-4um</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>w2sigmpro</name><description>W2 magnitude uncertainty from AllWISE catalog</description><unit>mag</unit><ucd>stat.error;phot.mag;em.IR.4-8um</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>w3sigmpro</name><description>W3 magnitude uncertainty from AllWISE catalog</description><unit>mag</unit><ucd>stat.error;phot.mag;em.IR.8-15um</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>w4sigmpro</name><description>W4 magnitude uncertainty from AllWISE catalog</description><unit>mag</unit><ucd>stat.error;phot.mag;em.IR.15-30um</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>j_m_2mass</name><description>J-band magnitude from 2MASS catalog</description><unit>mag</unit><ucd>phot.mag;em.IR.J</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>j_msig_2mass</name><description>J-band magnitude uncertainty from 2MASS catalog</description><unit>mag</unit><ucd>stat.error;phot.mag;em.IR.J</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>h_m_2mass</name><description>H-band magnitude from 2MASS catalog</description><unit>mag</unit><ucd>phot.mag;em.IR.H</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>h_msig_2mass</name><description>H-band magnitude uncertainty from 2MASS catalog</description><unit>mag</unit><ucd>stat.error;phot.mag;em.IR.H</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>k_m_2mass</name><description>K-band magnitude from 2MASS catalog</description><unit>mag</unit><ucd>phot.mag;em.IR.K</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>k_msig_2mass</name><description>K-band magnitude uncertainty from 2MASS catalog</description><unit>mag</unit><ucd>stat.error;phot.mag;em.IR.K</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column></table></schema></tableset></ri:Resource>