-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvosi-capabilities.xml
More file actions
66 lines (66 loc) · 2.58 KB
/
Copy pathvosi-capabilities.xml
File metadata and controls
66 lines (66 loc) · 2.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<vosi:capabilities
xmlns:vosi="http://www.ivoa.net/xml/VOSICapabilities/v1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:vs="http://www.ivoa.net/xml/VODataService/v1.1">
<capability standardID="ivo://ivoa.net/std/VOSI#capabilities">
<interface xsi:type="vs:ParamHTTP" role="std">
<accessURL use="full">
http://example.com/slap2/capabilities
</accessURL>
</interface>
</capability>
<capability standardID="ivo://ivoa.net/std/VOSI#availability">
<interface xsi:type="vs:ParamHTTP" role="std">
<accessURL use="full">
http://example.com/slap2/availability
</accessURL>
</interface>
</capability>
<capability standardID="ivo://ivoa.net/std/SLAP#species-2.0">
<interface xsi:type="vs:ParamHTTP" role="std" version="2.0">
<accessURL>
http://example.com/slap2/species
</accessURL>
</interface>
</capability>
<capability standardID="ivo://ivoa.net/std/SLAP#lines-2.0">
<interface role="std" version="2.0" xsi:type="vs:ParamHTTP">
<accessURL use="base">http://example.com/slap2/lines?</accessURL>
<queryType>GET</queryType>
<resultType>application/x-votable+xml</resultType>
<param std="true" use="optional">
<name>wavelength</name>
<description>wavelength in the vacuum of the transition originating in the line</description>
<unit>m</unit>
<ucd>em.wl</ucd>
<dataType arraysize="2">real</dataType>
</param>
<param std="true" use="optional">
<name>inchikey</name>
<description>Inchikey of the searched chemical element</description>
<ucd>phys.atmol.element</ucd>
<dataType arraysize="*">char</dataType>
</param>
<param std="true" use="optional">
<name>chemical_element</name>
<description>Name of the searched chemical element</description>
<ucd>phys.atmol.element</ucd>
<dataType arraysize="*">char</dataType>
</param>
<param std="true" use="optional">
<name>ion_charge</name>
<description>Minimum and maximum charge of an ion</description>
<ucd>phys.atmol.element;phys.atmol.ionization</ucd>
<dataType arraysize="2">integer</dataType>
</param>
<!-- custom service parameter -->
<param std="false" use="optional">
<name>wavenumber</name>
<description>Minimum and maximum wavenumber of the line</description>
<ucd>em.wavenumber</ucd>
<unit>m**-1</unit>
<dataType arraysize="2">real</dataType>
</param>
</interface>
</capability>
</vosi:capabilities>