gmsec 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: bc5f595f7e2026d991fee439a2063dec8e6d3bfb
4
+ data.tar.gz: db28c7ca70f22d378f841024e212c8322cb6d592
5
+ SHA512:
6
+ metadata.gz: 69599c6b2ea69eb103f3a4b1d29743434677e244bccf33f0940e6dbd39b0f686a61a728679c8c0c53d319fc023f0dfa8cc315288b64ce5e2b5de52678a15f725
7
+ data.tar.gz: 3ee6c346b1af4b838a535514c35f373998f3d0279dedb103a79f4e0a4999cb7309ff7475f9e47d733013fb44c684762a83552cf3928591907e29ef60a4f5c1ef
@@ -0,0 +1,15 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
15
+ vendor/bundle
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in gmsec.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Stefan Novak
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,76 @@
1
+ ## GMSEC for Ruby ##
2
+
3
+ This is a Ruby library that wraps the [GMSEC API](http://gmsec.gsfc.nasa.gov/) in a
4
+ Ruby-friendly way. This makes it easy to quickly develop applications that can be deployed
5
+ in a ground system environment that leverages the various software libraries in the Ruby
6
+ community.
7
+
8
+ ## Installation ##
9
+
10
+ You will need to compile and install GMSEC 3.6 according to GMSEC documentation. Ensure that
11
+ the GMSEC and supporting libraries (Bolt, MBServer, etc) are available in a standard
12
+ library location such as `/usr/local/lib`. If on Windows, make sure that your `PATH` variable
13
+ includes the location of where the GMSEC library exists.
14
+
15
+ After that, simply run: `gem install gmsec` to install this gem!
16
+
17
+ ## Example Usage ##
18
+
19
+ ```ruby
20
+ require 'gmsec'
21
+
22
+ # Create a connection by passing configuration options.
23
+ connection = GMSEC::Connection.new(connectiontype: :gmsec_mb)
24
+
25
+ # Connect based on connection defaults, i.e., localhost.
26
+ connection.connect
27
+
28
+ connection.connected? # Return true
29
+
30
+ connection.subscribe("TEST.*") do |message|
31
+ # Print the message
32
+ puts message.to_s
33
+ end
34
+
35
+ # Start auto dispatching so that the above subscription will be automatically kicked off
36
+ # when a message is received.
37
+ connection.start_auto_dispatch
38
+
39
+ # Create a new message using connection defaults.
40
+ message = connection.new_message
41
+
42
+ # We can add fields to messages using bracket notation:
43
+ message[:foo] = :bar
44
+
45
+ # We can append hashes to a message, creating multiple fields at once:
46
+ message << {answer: 42, baz: true}
47
+
48
+ # Or we can explicitly create a GMSEC Field object where we specify the data type:
49
+ message << GMSEC::Field.new(:bar, "x", type: :char)
50
+
51
+ message.subject = "TEST.FOO"
52
+
53
+ # Publish the message.
54
+ connection.publish(message)
55
+
56
+ # We should see:
57
+ #
58
+ # +---------------+------------------------------------------+
59
+ # | TEST.FOO |
60
+ # +---------------+------------------------------------------+
61
+ # | CONNECTION-ID | 2 |
62
+ # | MW-INFO | gmsec_mb: localhost |
63
+ # | NODE | xxxxx_local |
64
+ # | PROCESS-ID | 64047 |
65
+ # | PUBLISH-TIME | 2014-363-00:53:45.604 |
66
+ # | UNIQUE-ID | GMSEC_XXXXX_LOCAL_54A0A61980A4_64047_2_1 |
67
+ # | USER-NAME | user |
68
+ # | answer | 42 |
69
+ # | bar | x |
70
+ # | baz | true |
71
+ # | foo | bar |
72
+ # +---------------+------------------------------------------+
73
+
74
+ # We can also publish messages easily without having to create `Message` instances:
75
+ connection.publish({foo: :bar, answer: 42, baz: true}, subject: "TEST.BAZ")
76
+ ```
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,1609 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <DEFINITIONS>
3
+
4
+ <!--
5
+ -->
6
+ <!--
7
+ Copyright 2007-2014 United States Government as represented by the
8
+ Administrator of The National Aeronautics and Space Administration.
9
+ All Rights Reserved.
10
+ -->
11
+
12
+
13
+
14
+
15
+ <!--
16
+ RELEASE COMPLIANCY: GMSEC ISD VERSION MAY 2009
17
+
18
+ Notes:
19
+ After each field is the field's requirement to be within the message. This
20
+ could be required, optional, dependent or API field.
21
+ - Required designates that the field must be present.
22
+ - Optional designates that the field is, well, optional.
23
+ - Dependent designates the field is only present under certain conditions
24
+ - API Field designates that it is automatically filled by the GMSEC API.
25
+ Anything you place within this field will be ignored and overwritten, so don't
26
+ bother. It is there just to show the actual contents of a full message.
27
+
28
+ After the field requirement tag, there may be additional information that gives
29
+ you the valid choices for the field, such as 0: Debug 1: Nominal 2: Medium...
30
+ etc. These are the only valid inputs for these fields. Any field which is not
31
+ followed by one of these lists does not have a content restriction, besides the
32
+ field TYPE restrictions.
33
+
34
+ Additional information on what each field is to contain can be found within the
35
+ GMSEC Interface Specification Document.
36
+
37
+ All message names correspond to Table 0-2 in the Interface Specification
38
+ Document, the Message Name field. All spaces have been replaced with dashes (-)
39
+ and all names are uppercase, just because.
40
+
41
+ A SUBJECT name is a falsified name based on the required parameters. The
42
+ subject requirement will be placed above each message. Subject fields that are
43
+ in all caps with no brackets are required to be the way they are defined.
44
+ Subject fields that are surrounded by [ ] are required and must be replaced by
45
+ the user to provide the relevant information. The description within the
46
+ brackets is what is to be replaced. For example, [subclass] must be replaced
47
+ with the message's subclass. Anything within ( ) are optional. The same rules
48
+ for [ ] applies to the ( ). If the description within the brackets is
49
+ capitalized, this means the directly relate to a field in the message itself.
50
+ For example, [MSG-ID] would mean there is a MSG-ID field within the message and
51
+ the bracket contents should be replaced with the contents of the MSG-ID field.
52
+
53
+ For any fields that have multiple occurances, a sample number with the correct
54
+ corresponding fields is given. An example of this would be if a certain message
55
+ contained a NUM-OF-MNEMONICS field that equaled 3 and then was followed by
56
+ MNEMONIC.1, MNEMONIC.2 and MNEMONIC.3. If the NUM-OF-MNEMONICS field was a
57
+ required field, it will be marked as so. Only the first corresponding field,
58
+ the MNEMONIC.1 field in the example, will be marked as required. This is
59
+ because the smallest required number that can be placed in NUM-OF-MNEMONICS
60
+ field is 1, thus at least 1 corresponding field must be present to be valid.
61
+ Anything over 1 is purely optional.
62
+
63
+ All data within the content fields is completely fake. It is only meant to be a
64
+ representation of what might go there. If the message is copied for use in
65
+ other config files, only keep what fields you will use and fill them with actual
66
+ data.
67
+
68
+ Any inconsistancies or problems should be sent to vuong.t.ly@nasa.gov
69
+ -->
70
+
71
+ <!-- Here we go... -->
72
+
73
+ <!--Program configurations-->
74
+ <CONFIG NAME="program-config">
75
+ <PARAMETER NAME="update-rate">1</PARAMETER>
76
+ <PARAMETER NAME="loop-time">30</PARAMETER>
77
+ </CONFIG>
78
+
79
+ <!--Subscription definitions-->
80
+ <!--<SUBSCRIPTION NAME="DIRECTIVE-REQUEST" PATTERN="GMSEC.TEST-MISSION-ID.SATID.REQ.DIR.GMSEC-RECEIVE-DIRECTIVE"/>-->
81
+ <SUBSCRIPTION NAME="SUBSCRIBE-SUBJECT" PATTERN="GMSEC.>"/>
82
+
83
+ <!--GMSEC connection configuration options-->
84
+ <CONFIG NAME="CompliancePublisher">
85
+ <!--<PARAMETER NAME="connectiontype">gmsec_bolt</PARAMETER>-->
86
+ <PARAMETER NAME="connectiontype">gmsec_bolt</PARAMETER>
87
+ <!-- <PARAMETER NAME="server">localhost</PARAMETER> -->
88
+ <PARAMETER NAME="server">10.1.2.205</PARAMETER>
89
+ <PARAMETER NAME="isthreaded">true</PARAMETER>
90
+ <PARAMETER NAME="subject">SMITHBAUER_TEST</PARAMETER>
91
+ </CONFIG>
92
+
93
+ <!--GMSEC Information Bus Header Description-->
94
+ <CONFIG NAME="GMSEC-INFORMATION-BUS-HEADER">
95
+ <PARAMETER NAME="MESSAGE-INFORMATION">HEADER-VERSION,MESSAGE-TYPE,MESSAGE-SUBTYPE,UNIQUE-ID,PUBLISH-TIME</PARAMETER>
96
+ <PARAMETER NAME="MIDDLEWARE-INFORMATION">MW-INFO,CONNECTION-ID</PARAMETER>
97
+ <PARAMETER NAME="MISSION-INFORMATION">MISSION-ID,CONSTELLATION-ID,SAT-ID-PHYSICAL,SAT-ID-LOGICAL</PARAMETER>
98
+ <PARAMETER NAME="COMPONENT-INFORMATION">FACILITY,NODE,PROCESS-ID,CLASS,COMPONENT,SUBCOMPONENT1,SUBCOMPONENT2,USER-NAME,ROLE</PARAMETER>
99
+ </CONFIG>
100
+
101
+ <!--Sample configureation tags-->
102
+ <CONFIG NAME="TIBCO-SMARTSOCKETS" TYPE="TIBCO-SMARTSOCKETS">
103
+ <PARAMETER NAME="connectionType" DESCRIPTION="Supported SmartSocket versions." OPTIONS="gmsec_ss,gmsec_ss66,gmsec_ss67">gmsec_ss</PARAMETER>
104
+ <PARAMETER NAME="server" SSVERSION="ALL" DESCRIPTION="List of rtserver logical connection names following the format: 'protocol:node:port'. This should match the RTserver's conn_names option. If set to NULL, this option defaults to 'tcp:_node:5101' on Windows and 'local:_node' on Solaris.">tcp:127.0.0.1</PARAMETER>
105
+ <PARAMETER NAME="unique_subject" SSVERSION="ALL" DESCRIPTION="Always used as the sender property of a message sent to RTserver through a given connection. When a connection is first opened to RTserver, it automatically subscribes to its unique subject. RTservers in a cloud do not allow multiple processes to have the same unique subject."></PARAMETER>
106
+ <PARAMETER NAME="project" SSVERSION="ALL" DESCRIPTION="A self-contained unit or partition that prevents unwanted messages from being sent to processes, in that connections in different projects cannot send messages to each other. A connection belongs to only one project, while an RTserver can provide publish-subscribe routing services for one or more projects. If set to NULL, this option defaults to 'rtworks'."></PARAMETER>
107
+ <PARAMETER NAME="subject_prefix" SSVERSION="ALL" DESCRIPTION="Specifies the qualifier to prepend to message subject. names that don't start with /. Subject names are organized in a hierarchical namespace where the components are delimited by /. A subject name that starts with / is called an absolute subject name. All non-absolute subject names have Default_Subject_Prefix prepended to them. If set to NULL, this option defaults to '/'."></PARAMETER>
108
+ <PARAMETER NAME="gmdSubject" SSVERSION="ALL" DESCRIPTION="Specifies the subject that the GMD will use for the connection. This should be set for any process that is going to send GMD Messages. Note: The unique_subject will be overwritten with this value if set. This means that the value must be unique on the RTserver as defined by the unique_subject."></PARAMETER>
109
+ <PARAMETER NAME="gmdResend" SSVERSION="ALL" OPTIONS="true,false" DESCRIPTION="Specifies whether or not to automatically resend any messages in the file-based GMD area. By default all outstanding messages will be deleted when the process restarts.">false</PARAMETER>
110
+ <PARAMETER NAME="isThreaded" SSVERSION="ALL" OPTIONS="true,false" DESCRIPTION="Initializes the thread API and turns on internal thread synchronization calls within the utility and IPC libraries. Programs that call SmartSockets API functions from more than one thread must first call this function, even if they do not use any of the other thread API functions. This protects the integrity of the library's internal data structures. Single-threaded programs should set isThreaded to false, and indeed should avoid doing so for optimum performance. The added overhead of internal thread synchronization calls is not needed for single-threaded programs.">true</PARAMETER>
111
+ <PARAMETER NAME="CommandFile" SSVERSION="ALL" DESCRIPTION="Submits a file to the process' command interface for execution. This method does not search for file_name in any directories such as the SmartSockets standard directory, but simply uses file_name verbatim."></PARAMETER>
112
+ <PARAMETER NAME="CommandString" SSVERSION="ALL" DESCRIPTION="Submits a string to the command interface for execution."></PARAMETER>
113
+ <PARAMETER NAME="Compress" SSVERSION="ALL" OPTIONS="true,false" DESCRIPTION="Turns on/off MSG compression. To set the type of compression, and other SS options use the CommandFile, or CommandString options. Decompression is automatic, and occurs when any Message::GetField() call is made for the first time.">false</PARAMETER>
114
+ <PARAMETER NAME="AutoServerReconnect" SSVERSION="ALL" OPTIONS="true,false" DESCRIPTION="Turns on/off server reconnect after disconnect. This facilitates automatic handling of failover and server going down for extended period.">true</PARAMETER>
115
+ <PARAMETER NAME="ReconnectAttempts" SSVERSION="ALL" DESCRIPTION="If AutoServerReconnect is true, this is the number of times to try to reconnect. Less than or equal to 0 is infinite (default). Greater than 0 and the client will try to reconnect to the server that many times.">-1</PARAMETER>
116
+ <PARAMETER NAME="ReconnectDelay" SSVERSION="ALL" DESCRIPTION="This is the delay between reconnect attempts (in milliseconds).">100</PARAMETER>
117
+ <PARAMETER NAME="IPC_GMD_TYPE" SSVERSION="ALL" OPTIONS="default,memory" DESCRIPTION="Specifies whether file-based or memory-based GMD is to be used. If left to its default value of default, file-based GMD is attempted, and if that is unsuccessful, memory-based GMD is used. If the value is set to memory, memory-based GMD is used.This option is only for use with GMD.">memory</PARAMETER>
118
+ <PARAMETER NAME="SERVER_DISCONNECT_MODE" SSVERSION="ALL" OPTIONS="warm,gmd_failure,gmd_success" DESCRIPTION="Specifies the action RTserver should take when the RTclient disconnects from RTserver. warm - RTserver saves subject information about RTclient for GMD so that no messages are lost. gmd_failure - RTserver destroys all information about RTclient and causes pending guaranteed message delivery to fail. gmd_success - RTserver destroys all information about RTclient and causes pending guaranteed message delivery to succeed.">gmd_failure</PARAMETER>
119
+ <PARAMETER NAME="SERVER_MAX_RECONNECT_DELAY" SSVERSION="ALL" DESCRIPTION="Specifies the upper bound on a random delay introduced when an the RTclient has to reconnect to RTserver. This option is useful when an RTserver with many clients fails and all of those RT processes are attempting to reconnect. The delay enhances total reconnect time by slightly staggering reconnect requests. Setting the option to zero disables the delay.">0.0</PARAMETER>
120
+ <PARAMETER NAME="COMMAND_FEEDBACK" SSVERSION="ALL" OPTIONS="always,interactive,never" DESCRIPTION="Specifies when feedback is displayed after a command is successfully executed. If the command results in an error such as incorrect syntax, feedback is always displayed, regardless of the value of Command_Feedback. The three possible values for Command_Feedback are: always - feedback is always given, regardless of how the command was executed, interactively or using a CONTROL message. interactive - feedback is only given when the command is entered interactively. never - feedback is never given.">interactive</PARAMETER>
121
+ <PARAMETER NAME="SERVER_KEEP_ALIVE_TIMEOUT" SSVERSION="ALL" DESCRIPTION="Occurs if more than Server_Read_Timeout seconds have elapsed since the RT process (RTclient) last read any data from that RTserver. Keep alives are disabled if Server_Keep_Alive_Timeout is set to 0.0.">15.0</PARAMETER>
122
+ </CONFIG>
123
+ <CONFIG NAME="GMSEC-MESSAGE-BUS" TYPE="GMSEC-MESSAGE-BUS">
124
+ <PARAMETER NAME="connectionType" OPTIONS="gmsec_mb">gmsec_mb</PARAMETER>
125
+ <PARAMETER NAME="server" DESCRIPTION="This parameter specifies the internet address (name or ip) of the machine on which the Message Bus Server software service is running.">localhost</PARAMETER>
126
+ <PARAMETER NAME="port" DESCRIPTION="This parameter specified the internet port to connect to for the Message Bus software service. The default is port 9000.">9000</PARAMETER>
127
+ </CONFIG>
128
+
129
+ <!-- Sample subscription tag -->
130
+ <SUBSCRIPTION NAME="SUBSCRIPTION"
131
+ PATTERN="GMSEC.TEST-MISSION-ID.SATID.MSG.LOG.TEST-COMPONENT.AUTO.SYS.1.TEST-USER.TEST-REFERENCE-ID"/>
132
+
133
+ <!--Generic Log Message-->
134
+ <MESSAGE NAME="LOG" KIND="PUBLISH" REQUIREMENT="GMSEC.[MISSION-ID].[SAT].MSG.LOG.[COMPONENT of publisher].[SUBCLASS].[OCCURRENCE-TYPE].[SEVERITY].(USER).(REFERENCE-ID)" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.MSG.LOG.TEST-COMPONENT.AUTO.SYS.1.TEST-USER.TEST-REFERENCE-ID">
135
+ <!--GMSEC Information Bus Header-->
136
+ <!--Message Information-->
137
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
138
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">MSG</FIELD>
139
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">LOG</FIELD>
140
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
141
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
142
+ <!--Middleware Information-->
143
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
144
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
145
+ <!--Mission Information-->
146
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
147
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
148
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
149
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
150
+ <!--Component Information-->
151
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
152
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
153
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
154
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
155
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
156
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
157
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
158
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
159
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
160
+ <!--Log Message Contents-->
161
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">1.0</FIELD>
162
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID used by the requestor or publisher to distinguish the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-MSG-ID</FIELD>
163
+ <FIELD NAME="SUBCLASS" DESCRIPTION="Subclass generating the log message." QUALIFIER="REQUIRED" TYPE="STRING">PAGE</FIELD>
164
+ <FIELD NAME="OCCURRENCE-TYPE" DESCRIPTION="An occurrence types that categorizes the kind of activity or event that happened, triggering the log message." QUALIFIER="REQUIRED" TYPE="STRING">SYS</FIELD>
165
+ <FIELD NAME="SEVERITY" DESCRIPTION="Indicate the severity of the Log Message. 0:Debug 1:Nominal 2:Medium 3:High 4:Critical" QUALIFIER="REQUIRED" OPTIONS="0,1,2,3,4" TYPE="SHORT">1</FIELD>
166
+ <FIELD NAME="USER" DESCRIPTION="Which user/workposition/proc the message has to do with." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-USER</FIELD>
167
+ <FIELD NAME="SPACECRAFT-TIME" DESCRIPTION="Time event happened (may be earlier than actual posted time)." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
168
+ <FIELD NAME="EVENT-TIME" DESCRIPTION="Time event happened (may be earlier than published time)." QUALIFIER="REQUIRED" TYPE="STRING">1955-309-06:00:00</FIELD>
169
+ <FIELD NAME="REFERENCE-ID" DESCRIPTION="A local index or map to a table (or database) of additional information." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-REFERENCE-ID</FIELD>
170
+ <FIELD NAME="MSG-TEXT" DESCRIPTION="Text for display (typically about 60 characters)." QUALIFIER="REQUIRED" TYPE="STRING">This is a test message</FIELD>
171
+ <FIELD NAME="MSG-TEXT-DETAILS" DESCRIPTION="One or more paragraphs that includes more detail. Suggested corrective action. Suggest specifying url in this field." QUALIFIER="OPTIONAL" TYPE="STRING">This message was generated to provide an example log message</FIELD>
172
+ <FIELD NAME="SPECIAL-INFO" DESCRIPTION="Application use. This field is in hex." QUALIFIER="OPTIONAL" TYPE="BIN">ABBA</FIELD>
173
+ </MESSAGE>
174
+ <!--Generic Archive Message Retrieval Request Message-->
175
+ <MESSAGE NAME="ARCHIVE-MESSAGE-RETRIEVAL-REQUEST" KIND="REQUEST" REQUIREMENT="GMSEC.[MISSION].[SAT].REQ.AMSG.[COMPONENT of responder]" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.REQ.AMSG.TEST-COMPONENT">
176
+ <!--GMSEC Information Bus Header-->
177
+ <!--Message Information-->
178
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
179
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">REQ</FIELD>
180
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">AMSG</FIELD>
181
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
182
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
183
+ <!--Middleware Information-->
184
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
185
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
186
+ <!--Mission Information-->
187
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
188
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
189
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
190
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
191
+ <!--Component Information-->
192
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
193
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
194
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
195
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">PAGE</FIELD>
196
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
197
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
198
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
199
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
200
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
201
+ <!--Archive Message Retrieval Request Contents-->
202
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2009</FIELD>
203
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID used by the requestor or publisher to distinguish the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-MSG-ID</FIELD>
204
+ <!--Time Window Parameters-->
205
+ <FIELD NAME="START-TIME" DESCRIPTION="Requested start time of the messages to be retrieved from the Message Archive." QUALIFIER="REQUIRED" TYPE="STRING">1955-309-06:00:00</FIELD>
206
+ <FIELD NAME="STOP-TIME" DESCRIPTION="Requested stop time of the messages to be retrieved from the Message Archive. Defaults to the end of the Message Archive." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-07:00:00</FIELD>
207
+ <!--Product Distribution Options-->
208
+ <FIELD NAME="DELIVER-VIA-REFERENCE" DESCRIPTION="Indicates if the data will be referenced by a URI in the single response message. Defaults to No. FALSE:No/False TRUE:Yes/True" QUALIFIER="OPTIONAL" TYPE="BOOL" OPTIONS="TRUE,FALSE">FALSE</FIELD>
209
+ <FIELD NAME="DELIVER-VIA-INCLUDE" DESCRIPTION="Indicates if the data is to be included in the single response message. Defaults to Yes. FALSE:No/False TRUE:Yes/True" QUALIFIER="OPTIONAL" TYPE="BOOL" OPTIONS="TRUE,FALSE">TRUE</FIELD>
210
+ <!--Output Product Category-->
211
+ <FIELD NAME="PROD-NAME" DESCRIPTION="Name of the product being requested." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-PROD-NAME</FIELD>
212
+ <FIELD NAME="PROD-TYPE" DESCRIPTION="Product type being requested." QUALIFIER="OPTIONAL" TYPE="STRING">AAA</FIELD>
213
+ <FIELD NAME="PROD-SUBTYPE" DESCRIPTION="Product subtype being requested." QUALIFIER="OPTIONAL" TYPE="STRING">MSG</FIELD>
214
+ <FIELD NAME="NUM-OF-PROD-SUBTYPES" DESCRIPTION="Number of further delineations/categories beyond the product subtype. Also, used as msg subject elements me5, me6, etc. in the Product Message." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
215
+ <FIELD NAME="PROD-SUBTYPE.1.NAME" DESCRIPTION="First subcategory of the product subtype. (Subject elements me5, me6, etc. of the Product Message)." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBTYPE-NAME</FIELD>
216
+ <!--Output File Attributes-->
217
+ <FIELD NAME="URI" DESCRIPTION="Location where the requesting component is asking for the product file(s) to be stored. Could be a web address, directory or folder specification." QUALIFIER="OPTIONAL" TYPE="STRING">//TEST/URI</FIELD>
218
+ <FIELD NAME="NAME-PATTERN" DESCRIPTION="Describes the name of the output file." QUALIFIER="OPTIONAL" TYPE="STRING">testProductFile.tpf</FIELD>
219
+ <FIELD NAME="FORMAT" DESCRIPTION="Describes the file format." QUALIFIER="OPTIONAL" TYPE="STRING">Test File</FIELD>
220
+ <FIELD NAME="VERSION" DESCRIPTION="Identifies the version of the file." QUALIFIER="OPTIONAL" TYPE="STRING">1</FIELD>
221
+ <FIELD NAME="SIZE" DESCRIPTION="Maximum size of the file acceptable to the requester. Size specified in KB." QUALIFIER="OPTIONAL" TYPE="LONG">10000</FIELD>
222
+ <!--Query Shorthand-->
223
+ <FIELD NAME="REQ-STRING" DESCRIPTION="Specific to the responder / provider of the requested information. The string will define a database query, a script expression, Unix statement, or some other statement for extracting the information from the providers repository." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-REQ</FIELD>
224
+ <!--Query Longhand-->
225
+ <FIELD NAME="NUM-OF-MSGS" DESCRIPTION="Indicates the number of different message type / subtype pairs requested from the Message Archive." QUALIFIER="DEPENDENT" TYPE="SHORT">1</FIELD>
226
+ <FIELD NAME="MSG.1.TYPE" DESCRIPTION="Message Type/Subtype pairing to identify the message to be retrieved from the archive." QUALIFIER="DEPENDENT" TYPE="STRING">MSG</FIELD>
227
+ <FIELD NAME="MSG.1.SUBTYPE" DESCRIPTION="Message Type/Subtype pairing to identify the message to be retrieved from the archive." QUALIFIER="DEPENDENT" TYPE="STRING">LOG</FIELD>
228
+ <FIELD NAME="MSG.1.TIME-FIELD-NAME" DESCRIPTION="Name of field in the message that contains the time to examine. Will default to PUBLISH-TIME in Info. Bus Header." QUALIFIER="OPTIONAL" TYPE="STRING">PUBLISH-TIME</FIELD>
229
+ <FIELD NAME="MSG.1.TIME-TYPE" DESCRIPTION="Indicates the format of the time to examine in the retrieved messages. Defaults to GMSEC standard time format. 0:Spacecraft Time 1:GMSEC std. Time" QUALIFIER="OPTIONAL" OPTIONS="0,1" TYPE="USHORT">1</FIELD>
230
+ <FIELD NAME="MSG.1.NUM-OF-FIELDS" DESCRIPTION="Number of message fields to examine and match for retrieval from the archive." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
231
+ <FIELD NAME="MSG.1.FIELD.1.NAME" DESCRIPTION="Name of the message field to match for retrieval from the archive." QUALIFIER="OPTIONAL" TYPE="STRING">TEST</FIELD>
232
+ <FIELD NAME="MSG.1.FIELD.1.CONTENT" DESCRIPTION="Contents of the message field used in matching the messages for retrieval from the archive." QUALIFIER="OPTIONAL" TYPE="STRING">Test Field</FIELD>
233
+ </MESSAGE>
234
+ <!--Generic Archive Message Retrieval Response Message-->
235
+ <MESSAGE NAME="ARCHIVE-MESSAGE-RETRIEVAL-RESPONSE" KIND="RESPONSE" REQUIREMENT="GMSEC.[MISSION].[SAT].RESP.AMSG.[component of requestor].[MSG-ID].[response status]" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.RESP.AMSG.TEST-SOFTWARE.TEST-AMSG-RESP-ID.1">
236
+ <!--GMSEC Information Bus Header-->
237
+ <!--Message Information-->
238
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
239
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">RESP</FIELD>
240
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">AMSG</FIELD>
241
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
242
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
243
+ <!--Middleware Information-->
244
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
245
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
246
+ <!--Mission Information-->
247
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
248
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
249
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
250
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
251
+ <!--Component Information-->
252
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
253
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
254
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
255
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
256
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
257
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
258
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
259
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
260
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
261
+ <!--Archive Message Retrieval Response Contents-->
262
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
263
+ <FIELD DESCRIPTION="Unique ID used by the Requestor or the Publisher to distinguish the message." NAME="MSG-ID" QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
264
+ <!--Status of Request-->
265
+ <FIELD NAME="RESPONSE-STATUS" DESCRIPTION="Identifies the status of the Archive retrieval message Request being processed. 1:Acknowledgement 2:Working/keep alive 3:Successful completion 4:Failed completion 5:Invalid Request" QUALIFIER="REQUIRED" OPTIONS="1,2,3,4,5" TYPE="SHORT">1</FIELD>
266
+ <FIELD NAME="TIME-COMPLETED" DESCRIPTION="Time application completed processing the request" QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
267
+ <FIELD NAME="RETURN-VALUE" DESCRIPTION="Return value or status based on the RESPONSE-STATUS. Used to indicate product URI as requestor or responder. also can be used to provide function call status or error code in the case of failed completion. 1:Product file placed in URI specified by requestor 2:Product file placed in URI specified by responder Other:Error code of a failed completion" QUALIFIER="OPTIONAL" TYPE="LONG">1</FIELD>
268
+ <!--Output Product Category-->
269
+ <FIELD NAME="PROD-NAME" DESCRIPTION="Name of the product being returned." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-PROD-NAME</FIELD>
270
+ <FIELD NAME="PROD-TYPE" DESCRIPTION="Product type and subtype being requested." QUALIFIER="OPTIONAL" TYPE="STRING">AAA</FIELD>
271
+ <FIELD NAME="PROD-SUBTYPE" DESCRIPTION="Product type and subtype being requested." QUALIFIER="OPTIONAL" TYPE="STRING">MSG</FIELD>
272
+ <FIELD NAME="NUM-OF-PROD-SUBTYPES" DESCRIPTION="Number of further delineations / categories beyond the product subtype. Also, used as msg subject elements me5, me6, etc. in Product Message." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
273
+ <FIELD NAME="PROD-SUBTYPE.1.NAME" DESCRIPTION="First subcategory of the product subtype. (Subject elements me5, me6, etc. of the Product Message)." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-PROD-SUBTYPE-NAME</FIELD>
274
+ <!--Output File Attributes-->
275
+ <FIELD NAME="URI" DESCRIPTION="URI specifying the location where the file product is stored." QUALIFIER="OPTIONAL" TYPE="STRING">//TEST/URI</FIELD>
276
+ <FIELD NAME="NAME-PATTERN" DESCRIPTION="Describes the name of the file." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-NAME</FIELD>
277
+ <FIELD NAME="FORMAT" DESCRIPTION="Describes the format of the file." QUALIFIER="OPTIONAL" TYPE="STRING">XML</FIELD>
278
+ <FIELD NAME="VERSION" DESCRIPTION="Indicates the version of the file." QUALIFIER="OPTIONAL" TYPE="STRING">1.0</FIELD>
279
+ <FIELD NAME="SIZE" DESCRIPTION="Actual size of the file in KB." QUALIFIER="OPTIONAL" TYPE="SHORT">100</FIELD>
280
+ <FIELD NAME="DATA" DESCRIPTION="The file content." QUALIFIER="OPTIONAL" TYPE="BIN">AABA</FIELD>
281
+ </MESSAGE>
282
+ <!-- Generic Directive Request Message-->
283
+ <MESSAGE NAME="DIRECTIVE-REQUEST" KIND="REQUEST" REQUIREMENT="GMSEC.[MISSION].[SAT].REQ.DIR.[component of responder]" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.REQ.DIR.TEST-COMPONENT">
284
+ <!--GMSEC Information Bus Header-->
285
+ <!--Message Information-->
286
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
287
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">REQ</FIELD>
288
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">DIR</FIELD>
289
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
290
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
291
+ <!--Middleware Information-->
292
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
293
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
294
+ <!--Mission Information-->
295
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
296
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
297
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
298
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
299
+ <!--Component Information-->
300
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
301
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
302
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
303
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
304
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
305
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
306
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
307
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
308
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
309
+ <!--Directive Request Message Contents-->
310
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">1.0</FIELD>
311
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
312
+ <!--Source Information-->
313
+ <FIELD NAME="USER" DESCRIPTION="Which user/workposition/proc/schedule the message is coming from." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-USER</FIELD>
314
+ <!--Directive Information-->
315
+ <FIELD NAME="DIRECTIVE-KEYWORD" DESCRIPTION="Keyword extracted from the directive string. Useful for routing/processing. Must be uppercase." QUALIFIER="OPTIONAL" TYPE="STRING">START</FIELD>
316
+ <FIELD NAME="DIRECTIVE-STRING" DESCRIPTION="Full directive string that includes the keyword" QUALIFIER="REQUIRED" TYPE="STRING">EXECUTE TEST SCRIPT</FIELD>
317
+ <FIELD NAME="SPECIAL-INFO" DESCRIPTION="For application use." QUALIFIER="OPTIONAL" TYPE="BIN">ABBA</FIELD>
318
+ <!--Directive Parameters-->
319
+ <FIELD NAME="PRIORITY" DESCRIPTION="Indicates processing priority. 1:Nominal 2:Medium 3:High" QUALIFIER="OPTIONAL" OPTIONS="1,2,3" TYPE="SHORT">1</FIELD>
320
+ <FIELD NAME="RESPONSE" DESCRIPTION="Indicates if a response is required. Defaults to No. FALSE:False or no response TRUE:True or must respond" QUALIFIER="REQUIRED" OPTIONS="TRUE,FALSE" TYPE="BOOL">FALSE</FIELD>
321
+ <FIELD NAME="REQUESTED-EXECUTION-TIME" DESCRIPTION="Absolute or relative time can apply." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
322
+ <FIELD NAME="REQUESTED-EXPIRATION-TIME" DESCRIPTION="Absolute or relative time can apply." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-07:00:00</FIELD>
323
+ </MESSAGE>
324
+ <!--Generic Directive Response Message-->
325
+ <MESSAGE NAME="DIRECTIVE-RESPONSE" KIND="RESPONSE" REQUIREMENT="GMSEC.[MISSION].[SAT].RESP.DIR.[component of requestor].[MSG-ID of requestor].[status]" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.RESP.DIR.TEST-COMPONENT.MSG-ID.1">
326
+ <!--GMSEC Information Bus Header-->
327
+ <!--Message Information-->
328
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
329
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">RESP</FIELD>
330
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">DIR</FIELD>
331
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
332
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
333
+ <!--Middleware Information-->
334
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
335
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
336
+ <!--Mission Information-->
337
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
338
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
339
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
340
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
341
+ <!--Component Information-->
342
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
343
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
344
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
345
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
346
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
347
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
348
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
349
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
350
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
351
+ <!--Directive Response Message Contents-->
352
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">1.0</FIELD>
353
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
354
+ <!--Status of Request-->
355
+ <FIELD NAME="RESPONSE-STATUS" DESCRIPTION="Identifies the status of the Directive being processed. 1:Acknowledgement 2:Working/keep alive 3:Successful completion 4:Failed completion 5:Invalid Request" QUALIFIER="REQUIRED" OPTIONS="1,2,3,4,5" TYPE="SHORT">1</FIELD>
356
+ <FIELD NAME="TIME-COMPLETED" DESCRIPTIO="Time application completed processing the directive." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
357
+ <FIELD NAME="RETURN-VALUE" DESCRIPTION="Return value or status based on the RESPONSE-STATUS. Useful to provide function call status or error code in the case of failed completion." QUALIFIER="OPTIONAL" TYPE="LONG">1</FIELD>
358
+ <FIELD NAME="DATA" DESCRIPTION="Additional data that may be desired along with the completion status." QUALIFIER="OPTIONAL" TYPE="DEPENDENT_UPON_RESPONSE">Sample Data</FIELD>
359
+ </MESSAGE>
360
+ <!--Generic C2CX Configuration Status Message-->
361
+ <MESSAGE NAME="C2CX-CONFIGURATION" KIND="PUBLISH" REQUIREMENT="GMSEC.[MISSION].[SAT].MSG.C2CX.[component name of publisher].[C2CX-SUBTYPE].(component name of recipient)" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.MSG.C2CX.TEST-COMPONENT.CFG">
362
+ <!--GMSEC Information Bus Header-->
363
+ <!--Message Information-->
364
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
365
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">MSG</FIELD>
366
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">C2CX</FIELD>
367
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
368
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
369
+ <!--Middleware Information-->
370
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
371
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
372
+ <!--Mission Information-->
373
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
374
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
375
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
376
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
377
+ <!--Component Information-->
378
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
379
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
380
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
381
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
382
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
383
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
384
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
385
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
386
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
387
+ <!--C2CX Configuration Status Message Contents-->
388
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2006</FIELD>
389
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
390
+ <FIELD NAME="C2CX-SUBTYPE" DESCRIPTION="Identifies the type of information being transferred between the Components" QUALIFIER="REQUIRED" TYPE="STRING">CFG</FIELD>
391
+ <FIELD NAME="MY-ROLE" DESCRIPTION="Role the reporting component has in the configuration. E.g. PRIMARY, BACKUP, AGENT, SERVER, MEMBER, MGR" QUALIFIER="REQUIRED" TYPE="STRING">PRIMARY</FIELD>
392
+ <FIELD NAME="NUM-OF-ASSOCS" DESCRIPTION="The number of associations to be reported." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
393
+ <FIELD NAME="ASSOC.1.GROUP" DESCRIPTION="Name of component or group associated with." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-COMPONENT-1</FIELD>
394
+ <FIELD NAME="ASSOC.1.NODE" DESCRIPTION="Location of associated component or group." QUALIFIER="OPTIONAL" TYPE="STRING">LOCATION-1</FIELD>
395
+ <FIELD NAME="ASSOC.1.ROLE" DESCRIPTION="Role the associated component has, if known." QUALIFIER="OPTIONAL" TYPE="STRING">BACKUP</FIELD>
396
+ </MESSAGE>
397
+ <!--Generic C2CX Control Message-->
398
+ <MESSAGE NAME="C2CX-CONTROL" KIND="PUBLISH" REQUIREMENT="GMSEC.[MISSION].[SAT].MSG.C2CX.[component name of publisher].[C2CX-SUBTYPE].(component name of recipient)" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.MSG.C2CX.TEST-COMPONENT.CNTL">
399
+ <!--GMSEC Information Bus Header-->
400
+ <!--Message Information-->
401
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
402
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">MSG</FIELD>
403
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">C2CX</FIELD>
404
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
405
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
406
+ <!--Middleware Information-->
407
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
408
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
409
+ <!--Mission Information-->
410
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
411
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
412
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
413
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
414
+ <!--Component Information-->
415
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
416
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
417
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
418
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
419
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
420
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
421
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
422
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
423
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
424
+ <!--C2CX Control Message Contents-->
425
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2008</FIELD>
426
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
427
+ <FIELD NAME="C2CX-SUBTYPE" DESCRIPTION="Identifies the type of information being transferred between the Components." QUALIFIER="REQUIRED" TYPE="STRING">CNTL</FIELD>
428
+ <FIELD NAME="CNTL-KEYWORD" DESCRIPTION="Keyword extracted from the CNTL-STRING. Useful for routing/processing." QUALIFIER="OPTIONAL" TYPE="STRING">INIT</FIELD>
429
+ <FIELD NAME="CNTL-STRING" DESCRIPTION="Parameters to guide the component on further processing. E.g., INIT, Stop, Shutdown, Restart, Do X, Y, and Z." QUALIFIER="OPTIONAL" TYPE="STRING">SET HB 15</FIELD>
430
+ <FIELD NAME="SPECIAL-INFO" DESCRIPTION="For application use." QUALIFIER="OPTIONAL" TYPE="BIN">ABBA</FIELD>
431
+ </MESSAGE>
432
+ <!--Generic C2CX Device Message-->
433
+ <MESSAGE NAME="C2CX-DEVICE" KIND="PUBLISH" REQUIREMENT="GMSEC.[MISSION].[SAT].MSG.C2CX.[component name of publisher].[C2CX-SUBTYPE].(component name of recipient)" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.MSG.C2CX.TEST-COMPONENT.DEV">
434
+ <!--GMSEC Information Bus Header-->
435
+ <!--Message Information-->
436
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
437
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">MSG</FIELD>
438
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">C2CX</FIELD>
439
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
440
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
441
+ <!--Middleware Information-->
442
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
443
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
444
+ <!--Mission Information-->
445
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
446
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
447
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
448
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
449
+ <!--Component Information-->
450
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
451
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
452
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
453
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
454
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
455
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
456
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
457
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
458
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
459
+ <!--C2CX Control Message Contents-->
460
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2008</FIELD>
461
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
462
+ <FIELD NAME="C2CX-SUBTYPE" DESCRIPTION="Identifies the type of information being transferred between the Components." QUALIFIER="REQUIRED" TYPE="STRING">DEV</FIELD>
463
+ <!--Device Status Information-->
464
+ <FIELD NAME="NUM-OF-DEVICES" DESCRIPTION="Number of devices being reported in this message." QUALIFIER="REQUIRED" TYPE="SHORT">1</FIELD>
465
+ <FIELD NAME="DEVICE.1.NAME" DESCRIPTION="Name of the device." QUALIFIER="REQUIRED" TYPE="STRING">DEVICE-1</FIELD>
466
+ <FIELD NAME="DEVICE.1.NUMBER" DESCRIPTION="A number assigned to the device to distinguish it from identical devices." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
467
+ <FIELD NAME="DEVICE.1.MODEL" DESCRIPTION="Model number of the device." QUALIFIER="OPTIONAL" TYPE="STRING">1</FIELD>
468
+ <FIELD NAME="DEVICE.1.SERIAL" DESCRIPTION="Serial number of the device.." QUALIFIER="OPTIONAL" TYPE="STRING">1</FIELD>
469
+ <FIELD NAME="DEVICE.1.VERSION" DESCRIPTION="Version of the firmware operating within the device." QUALIFIER="OPTIONAL" TYPE="STRING">1</FIELD>
470
+ <FIELD NAME="DEVICE.1.GROUP" DESCRIPTION="Name of group associated with." QUALIFIER="OPTIONAL" TYPE="STRING">1</FIELD>
471
+ <FIELD NAME="DEVICE.1.ROLE" DESCRIPTION="Role the device has, if known." QUALIFIER="OPTIONAL" TYPE="STRING">1</FIELD>
472
+ <FIELD NAME="DEVICE.1.STATUS" DESCRIPTION="Indicates the condition of the device being reported. The reporting component may choose the condition level based on its own criteria. 0:Debug 1:Normal/Green 2:Yellow 3:Orange 4:Red" QUALIFIER="REQUIRED" OPTIONS="0,1,2,3,4" TYPE="SHORT">1</FIELD>
473
+ <FIELD NAME="DEVICE.1.INFO" DESCRIPTION="An additional status code that can be supplied that is specific to that device." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
474
+ <FIELD NAME="DEVICE.1.NUM-OF-PARAMS" DESCRIPTION="Number of additional parameters being reported that are associated with the device." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
475
+ <FIELD NAME="DEVICE.1.PARAM.1.NAME" DESCRIPTION="Name of the additional parameter." QUALIFIER="OPTIONAL" TYPE="STRING">1</FIELD>
476
+ <FIELD NAME="DEVICE.1.PARAM.1.VALUE" DESCRIPTION="Value of the named parameter being reported." QUALIFIER="OPTIONAL" TYPE="FLOAT">1</FIELD>
477
+ </MESSAGE>
478
+ <!--Generic C2CX Heartbeat Message-->
479
+ <MESSAGE NAME="C2CX-HEARTBEAT" KIND="PUBLISH" REQUIREMENT="GMSEC.[MISSION].[SAT].MSG.C2CX.[component name of publisher].[C2CX-SUBTYPE].(component name of recipient)" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.MSG.C2CX.TEST-COMPONENT.HB">
480
+ <!--GMSEC Information Bus Header-->
481
+ <!--Message Information-->
482
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
483
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">MSG</FIELD>
484
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">C2CX</FIELD>
485
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
486
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
487
+ <!--Middleware Information-->
488
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
489
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
490
+ <!--Mission Information-->
491
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
492
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
493
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
494
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
495
+ <!--Component Information-->
496
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
497
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
498
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
499
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
500
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
501
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
502
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
503
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
504
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
505
+ <!--C2CX Heartbeat Message Contents-->
506
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">1.3</FIELD>
507
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
508
+ <FIELD NAME="C2CX-SUBTYPE" DESCRIPTION="Identifies the type of information being transferred between the Components" QUALIFIER="REQUIRED" TYPE="STRING">HB</FIELD>
509
+ <FIELD NAME="COUNTER" DESCRIPTION="Indicates the number of times that the C2CX message heartbeat message has been published, including this message." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
510
+ <FIELD NAME="PUB-RATE" DESCRIPTION="Indicates the rate, in number of seconds, which the C2CX heartbeat message is being published by the component. A rate of zero or less indicates that this C2CX message is not repeatedly published by the component. The default publishing rate of the C2CX heartbeat message is 30 seconds." QUALIFIER="OPTIONAL" TYPE="SHORT">30</FIELD>
511
+ <!--Component Status Information-->
512
+ <FIELD NAME="COMPONENT-STATUS" DESCRIPTION="Indicates the condition of the component being monitored. 0:Debug 1:Normal/Green 2:Yellow 3:Orange 4:Red" QUALIFIER="OPTIONAL" OPTIONS="0,1,2,3,4" TYPE="SHORT">1</FIELD>
513
+ <FIELD NAME="COMPONENT-INFO" DESCRIPTION="An additional status code the component can supply that is specific to that component." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
514
+ <FIELD NAME="SW-VERSION" DESCRIPTION="Version number identifier of the reporting component." QUALIFIER="OPTIONAL" TYPE="FLOAT">1.0</FIELD>
515
+ <!--Component Resource Utilization Snapshot-->
516
+ <FIELD NAME="CPU-MEM" DESCRIPTION="Amount of memory being used at this time by this component(in megabytes)." QUALIFIER="OPTIONAL" TYPE="FLOAT">1.0</FIELD>
517
+ <FIELD NAME="CPU-UTIL" DESCRIPTION="Percentage of CPU being utilized." QUALIFIER="OPTIONAL" TYPE="FLOAT">5.0</FIELD>
518
+ </MESSAGE>
519
+ <!--Generic C2CX Resource Message-->
520
+ <MESSAGE NAME="C2CX-RESOURCE" KIND="PUBLISH" REQUIREMENT="GMSEC.[MISSION].[SAT].MSG.C2CX.[component name of publisher].[C2CX-SUBTYPE].(component name of recipient)" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.MSG.C2CX.TEST-COMPONENT.RSRC">
521
+ <!--GMSEC Information Bus Header-->
522
+ <!--Message Information-->
523
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
524
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">MSG</FIELD>
525
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">C2CX</FIELD>
526
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
527
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
528
+ <!--Middleware Information-->
529
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
530
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
531
+ <!--Mission Information-->
532
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
533
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
534
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
535
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
536
+ <!--Component Information-->
537
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
538
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
539
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
540
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
541
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
542
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
543
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
544
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
545
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
546
+ <!--C2CX Resource Message Contents-->
547
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2006</FIELD>
548
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
549
+ <FIELD NAME="C2CX-SUBTYPE" DESCRIPTION="Identifies the type of information being transferred between the Components" QUALIFIER="REQUIRED" TYPE="STRING">RSRC</FIELD>
550
+ <FIELD NAME="COUNTER" DESCRIPTION="Indicates the number of times that the C2CX Resource message has been published, including this message." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
551
+ <FIELD NAME="PUB-RATE" DESCRIPTION="In seconds, 0 indicates is not repeatedly published, default is 30" QUALIFIER="OPTIONAL" TYPE="SHORT">30</FIELD>
552
+ <!--Computer Processor Information-->
553
+ <FIELD NAME="OPER-SYS" DESCRIPTION="Operating system component is using." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-OPER-SYS</FIELD>
554
+ <FIELD NAME="NUM-OF-CPUS" DESCRIPTION="Number of CPUs being monitored." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
555
+ <FIELD NAME="CPU.1.MEM" DESCRIPTION="Amount of memory for this CPU (in megabytes)." QUALIFIER="OPTIONAL" TYPE="FLOAT">512</FIELD>
556
+ <FIELD NAME="CPU.1.MEM-UTIL" DESCRIPTION="Memory utilization. Percentage of memory utilized (0-100)." QUALIFIER="OPTIONAL" TYPE="FLOAT">50</FIELD>
557
+ <FIELD NAME="CPU.1.UTIL" DESCRIPTION="CPU utilization. Percentage of CPU utilized (0-100)." QUALIFIER="OPTIONAL" TYPE="FLOAT">50</FIELD>
558
+ <FIELD NAME="CPU.1.PAGE-FAULTS" QUALIFIER="OPTIONAL" TYPE="LONG">100</FIELD>
559
+ <!--Disk Information-->
560
+ <FIELD NAME="NUM-OF-DISKS" DESCRIPTION="Number of disks being monitored." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
561
+ <FIELD NAME="DISK.1.NAME" DESCRIPTION="Name of the disk." QUALIFIER="OPTIONAL" TYPE="STRING">DISK-1</FIELD>
562
+ <FIELD NAME="DISK.1.SIZE" DESCRIPTION="Absolute size of the disk (in megabytes)" QUALIFIER="OPTIONAL" TYPE="FLOAT">10000</FIELD>
563
+ <FIELD NAME="DISK.1.UTIL" DESCRIPTION="Disk space utilization. Percentage of Disk space utilized (0-100)" QUALIFIER="OPTIONAL" TYPE="FLOAT">50</FIELD>
564
+ <!--Network Interface Information-->
565
+ <FIELD NAME="NUM-OF-NET-PORTS" DESCRIPTION="Number of network ports." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
566
+ <FIELD NAME="NET-PORT.1.NAME" DESCRIPTION="Name of the network port." QUALIFIER="OPTIONAL" TYPE="STRING">PORT-1</FIELD>
567
+ <FIELD NAME="NET-PORT.1.TOTAL-BANDWIDTH" DESCRIPTION="Bandwidth of the port in Kbps." QUALIFIER="OPTIONAL" TYPE="FLOAT">1000</FIELD>
568
+ <FIELD NAME="NET-PORT.1.UTIL" DESCRIPTION="Percentage of Network port utilization (0-100)." QUALIFIER="OPTIONAL" TYPE="FLOAT">50</FIELD>
569
+ <FIELD NAME="NET-PORT.1.BYTES-SENT" DESCRIPTION="Number of bytes sent over the port." QUALIFIER="OPTIONAL" TYPE="FLOAT">100</FIELD>
570
+ <FIELD NAME="NET-PORT.1.BYTES-RECEIVED" DESCRIPTION="Number of bytes received over the port." QUALIFIER="OPTIONAL" TYPE="FLOAT">200</FIELD>
571
+ <FIELD NAME="NET-PORT.1.MSGS-SENT" DESCRIPTION="Number of messages sent over the port." QUALIFIER="OPTIONAL" TYPE="FLOAT">5</FIELD>
572
+ <FIELD NAME="NET-PORT.1.MSGS-RECEIVED" DESCRIPTION="Number of messages received over the port." QUALIFIER="OPTIONAL" TYPE="FLOAT">10</FIELD>
573
+ <FIELD NAME="NET-PORT.1.ERRORS" DESCRIPTION="Number of errors encountered on the port." QUALIFIER="OPTIONAL" TYPE="FLOAT">10</FIELD>
574
+ </MESSAGE>
575
+ <!--Generic Telemetry Message Contents for CCSDS Packet-->
576
+ <MESSAGE NAME="TELEMETRY-CCSDS-PACKET" KIND="PUBLISH" REQUIREMENT="GMSEC.[MISSION].[SAT].MSG.TLM.[COMPONENT].[STREAM-MODE].[FORMAT].[VCID].[AP ID from header of data stream]" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.MSG.TLM">
577
+ <!--GMSEC Information Bus Header-->
578
+ <!--Message Information-->
579
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
580
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">MSG</FIELD>
581
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">TLM</FIELD>
582
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
583
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
584
+ <!--Middleware Information-->
585
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
586
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
587
+ <!--Mission Information-->
588
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
589
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
590
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
591
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
592
+ <!--Component Information-->
593
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
594
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
595
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
596
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
597
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
598
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
599
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
600
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
601
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
602
+ <!--Telemetry Message Contents for CCSDS Packet-->
603
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
604
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-MSG-ID</FIELD>
605
+ <FIELD NAME="FORMAT" DESCRIPTION="Identifies the telemetry messages as a CCSDS packet." QUALIFIER="REQUIRED" TYPE="STRING">CCSDSPKT</FIELD>
606
+ <FIELD NAME="STREAM-MODE" DESCRIPTION="Identifies the mode of the stream of telemetry. RT:Real Time RPY:Replay SIM:Simulator TEST:Test/Data Generator" QUALIFIER="REQUIRED" OPTIONS="RT,RPY,SIM,TEST" TYPE="STRING">TEST</FIELD>
607
+ <FIELD NAME="FINAL-MESSAGE" DESCRIPTION="When true (and known, especially for replay data), indicates the last message in the stream. FALSE:No/False TRUE:Yes/True" QUALIFIER="OPTIONAL" OPTIONS="TRUE,FALSE" TYPE="BOOL">FALSE</FIELD>
608
+ <FIELD NAME="PHY-CHAN" DESCRIPTION="Physical channel on which data is received." QUALIFIER="REQUIRED" TYPE="STRING">TEST-ANTENNA</FIELD>
609
+ <FIELD NAME="VCID" DESCRIPTION="Virtual channel ID" QUALIFIER="REQUIRED" TYPE="SHORT">1</FIELD>
610
+ <FIELD NAME="LENGTH" DESCRIPTION="Length of packet (in bytes)." QUALIFIER="OPTIONAL" TYPE="LONG">100</FIELD>
611
+ <FIELD NAME="TIME" DESCRIPTION="Time of packet, usually ground receipt time." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
612
+ <FIELD NAME="QUALITY-CHECK" DESCRIPTION="Indicates quality checking was performed for reason indicated." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
613
+ <FIELD NAME="QUALITY" DESCRIPTION="Indicates quality state if checking was performed." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
614
+ <FIELD NAME="DATA" DESCRIPTION="Raw telemetry data." QUALIFIER="OPTIONAL" TYPE="BIN">ABBA</FIELD>
615
+ </MESSAGE>
616
+ <!--Generic Telemetry CCSDS Frame Message-->
617
+ <MESSAGE NAME="TELEMETRY-CCSDS-FRAME" KIND="PUBLISH" REQUIREMENT="GMSEC.[MISSION].[SAT].MSG.TLM.[COMPONENT].[STREAM-MODE].[FORMAT].[VCID]" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.MSG.TLM">
618
+ <!--GMSEC Information Bus Header-->
619
+ <!--Message Information-->
620
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
621
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">MSG</FIELD>
622
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">TLM</FIELD>
623
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
624
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
625
+ <!--Middleware Information-->
626
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
627
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
628
+ <!--Mission Information-->
629
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
630
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
631
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
632
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
633
+ <!--Component Information-->
634
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
635
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
636
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
637
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
638
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
639
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
640
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
641
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
642
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
643
+ <!--Telemetry Message Contents for CCSDS Frame-->
644
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
645
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-MSG-ID</FIELD>
646
+ <FIELD NAME="FORMAT" DESCRIPTION="Identifies the telemetry messages as a CCSDS Frame." QUALIFIER="REQUIRED" TYPE="STRING">CCSDSFRAME</FIELD>
647
+ <FIELD NAME="STREAM-MODE" DESCRIPTION="Identifies the kind of source of the stream of telemetry. RT:Real Time RPY:Replay SIM:Simulator TEST:Test/Data Generator" QUALIFIER="REQUIRED" OPTIONS="RT,RPY,SIM,TEST" TYPE="STRING">TEST</FIELD>
648
+ <FIELD NAME="FINAL-MESSAGE" DESCRIPTION="When true (and known, especially for replay data), indicates the last message in the stream. FALSE:No/False TRUE:Yes/True" QUALIFIER="OPTIONAL" OPTIONS="TRUE,FALSE" TYPE="BOOL">FALSE</FIELD>
649
+ <FIELD NAME="PHY-CHAN" DESCRIPTION="Physical channel on which data is received." QUALIFIER="REQUIRED" TYPE="STRING">TEST-ANTENNA</FIELD>
650
+ <FIELD NAME="VCID" DESCRIPTION="Virtual Channel ID." QUALIFIER="REQUIRED" TYPE="SHORT">1</FIELD>
651
+ <FIELD NAME="RS-PRESENT" DESCRIPTION="Indicates Reed-Solomon check symbols are included in data." QUALIFIER="OPTIONAL" OPTIONS="TRUE,FALSE" TYPE="BOOL">FALSE</FIELD>
652
+ <FIELD NAME="LENGTH" DESCRIPTION="Length of frame (in bytes)" QUALIFIER="OPTIONAL" TYPE="INT">100</FIELD>
653
+ <FIELD NAME="TIME" DESCRIPTION="Time of frame, usually ground receipt time." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
654
+ <FIELD NAME="QUALITY-CHECK" DESCRIPTION="Bit 0: CRC Quality Check Bit 1: Reed-Solomon Quality Check Bit 2: Turbo Code Quality Check" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
655
+ <FIELD NAME="QUALITY" DESCRIPTION="Bit 0: CRC Quality State Bit 1: Reed-Solomon Quality State Bit 2: Turbo Code State" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
656
+ <FIELD NAME="DATA" DESCRIPTION="Raw telemetry data." QUALIFIER="OPTIONAL" TYPE="BIN">ABBA</FIELD>
657
+ </MESSAGE>
658
+
659
+ <!--Generic Replay Telemetry Request Message-->
660
+ <MESSAGE NAME="REPLAY-TELEMETRY-REQUEST" KIND="REQUEST" REQUIREMENT="GMSEC.[MISSION].[SAT].REQ.RTLM.[COMPONENT]" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.REQ.RTLM">
661
+ <!--GMSEC Information Bus Header-->
662
+ <!--Message Information-->
663
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
664
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">REQ</FIELD>
665
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">RTLM</FIELD>
666
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
667
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
668
+ <!--Middleware Information-->
669
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
670
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
671
+ <!--Mission Information-->
672
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
673
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
674
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
675
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
676
+ <!--Component Information-->
677
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
678
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
679
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
680
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
681
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
682
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
683
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
684
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
685
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
686
+ <!--Replay Telemetry Request Message Contents-->
687
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
688
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
689
+ <!--Replay Information-->
690
+ <FIELD NAME="ACTION" DESCRIPTION="Identifies the type of Replay requst message. 1:Start 2:Stop 3:Pause 4:Continue 5:Step" QUALIFIER="REQUIRED" OPTIONS="1,2,3,4,5" TYPE="SHORT">1</FIELD>
691
+ <FIELD NAME="STREAM-MODE" DESCRIPTION="Identifies the original source of the data to be replayed. RT:Real Time RPY:Replay SIM:Simulator TEST:Test/Data Generator" QUALIFIER="REQUIRED" OPTIONS="RT,RPY,SIM,TEST" TYPE="STRING">TEST</FIELD>
692
+ <!--Gross Data Selection by Time Window or by File Name-->
693
+ <FIELD NAME="START-TIME" DESCRIPTION="Time of first telemetry data. Defaults to the start of the archive." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
694
+ <FIELD NAME="STOP-TIME" DESCRIPTION="Time of last telemetry data. Defaults to the end of the archive." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-07:00:00</FIELD>
695
+ <FIELD NAME="NUM-OF-FILES" DESCRIPTION="Number of Telemetry files to replay." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
696
+ <FIELD NAME="FILE.1.NAME-PATTERN" DESCRIPTION="Name of the file" QUALIFIER="OPTIONAL" TYPE="STRING">TEST-FILENAME</FIELD>
697
+ <!--Replay Speed Criteria by Data Rate or by Playback Ratio-->
698
+ <FIELD NAME="PLAYBACK-RATIO" DESCRIPTION="Speed of playback as a ratio of playback rate to real-time rate. This is the default method." QUALIFIER="OPTIONAL" TYPE="FLOAT">0.5</FIELD>
699
+ <FIELD NAME="DATA-RATE" DESCRIPTION="Data rate in Kilobits per second" QUALIFIER="OPTIONAL" TYPE="SHORT">300</FIELD>
700
+ <!--Telemetry Data Information-->
701
+ <FIELD NAME="FORMAT" DESCRIPTION="Telemetry Message types to playback. CCSDSPKT:CCSDS packets CCSDSFRAME:CCSDS frames ALL:All message types" QUALIFIER="REQUIRED" OPTIONS="CCSDSPKT,CCSDSFRAME,ALL" TYPE="STRING">CCSDSPKT</FIELD>
702
+ <FIELD NAME="VCID" DESCRIPTION="Virtual Channel IDs: comma delimited channel IDs with '-' for channel ID ranges. Example: 1,2,6-9,10" QUALIFIER="OPTIONAL" TYPE="STRING">1,3-5,7</FIELD>
703
+ <FIELD NAME="APID" DESCRIPTION="Application IDs: comma delimited APIDs with '-' for channel ID ranges. Example: 1,2,6-9,10" QUALIFIER="OPTIONAL" TYPE="STRING">1</FIELD>
704
+ </MESSAGE>
705
+ <!--Generic Replay Telemetry Data Response Message-->
706
+ <MESSAGE NAME="REPLAY-TELEMETRY-RESPONSE" KIND="RESPONSE" REQUIREMENT="GMSEC.[MISSION].[SAT].RESP.RTLM.[COMPONENT].[MSG-ID].[RESPONSE-STATUS]" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.RESP.RTLM">
707
+ <!--GMSEC Information Bus Header-->
708
+ <!--Message Information-->
709
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
710
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">RESP</FIELD>
711
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">RTLM</FIELD>
712
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
713
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
714
+ <!--Middleware Information-->
715
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
716
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
717
+ <!--Mission Information-->
718
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
719
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
720
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
721
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
722
+ <!--Component Information-->
723
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
724
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
725
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
726
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
727
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
728
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
729
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
730
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
731
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
732
+ <!--Replay Telemetry Data Response Message Contents-->
733
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">1.0</FIELD>
734
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
735
+ <FIELD NAME="RESPONSE-STATUS" DESCRIPTION="Identifies the status of the request being processed. 1:Acknowledgement 2:Working/keep alive 3:Successful completion 4:Failed completion 5:Invalid Request" QUALIFIER="REQUIRED" OPTIONS="1,2,3,4,5" TYPE="SHORT">3</FIELD>
736
+ <FIELD NAME="TIME-COMPLETED" DESCRIPTION="Time application completed processing the request" QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
737
+ <FIELD NAME="RETURN-VALUE" DESCRIPTION="Return value or status based on the RESPONSE-STATUS. Useful to provide function call status or error code in the case of failed completion." QUALIFIER="OPTIONAL" TYPE="LONG">1</FIELD>
738
+ <FIELD NAME="DATA" DESCRIPTION="Additional data that may be desired along with the completion status." QUALIFIER="OPTIONAL" TYPE="DEPENDENT_UPON_RESPONSE">Sample Data</FIELD>
739
+ </MESSAGE>
740
+ <!--Generic Mnemonic Value Request Message-->
741
+ <MESSAGE NAME="MNEMONIC-VALUE-REQUEST" KIND="REQUEST" REQUIREMENT="GMSEC.[MISSION].[SAT].REQ.MVAL.[COMPONENT]" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.REQ.MVAL">
742
+ <!--GMSEC Information Bus Header-->
743
+ <!--Message Information-->
744
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
745
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">REQ</FIELD>
746
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">MVAL</FIELD>
747
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
748
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
749
+ <!--Middleware Information-->
750
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
751
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
752
+ <!--Mission Information-->
753
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
754
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
755
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
756
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
757
+ <!--Component Information-->
758
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
759
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
760
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
761
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
762
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
763
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
764
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
765
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
766
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
767
+ <!--Mnemonic Value Request Message Contents-->
768
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
769
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
770
+ <!--Publishing Information-->
771
+ <FIELD NAME="REQUEST-TYPE" DESCRIPTION="Identifies the type of mnemonic value request message. 1:Oneshot 2:Start 3:Stop" QUALIFIER="REQUIRED" OPTIONS="1,2,3" TYPE="SHORT">1</FIELD>
772
+ <FIELD NAME="PUBLISH-RATE" DESCRIPTION="Identifies the rate, in number of seconds, which the Mnemonic Value Data messages are published. A rate of zero indicates that the server should publish the data as fast as possible. The default distribution rate is 5 seconds." QUALIFIER="OPTIONAL" TYPE="SHORT">5</FIELD>
773
+ <FIELD NAME="DURATION" DESCRIPTION="Length of time, in seconds, for the request to be active, after which the data messages will automatically cease." QUALIFIER="OPTIONAL" TYPE="SHORT">30</FIELD>
774
+ <!--Mnemonic Information-->
775
+ <FIELD NAME="NUM-OF-MNEMONICS" DESCRIPTION="Total Number of mnemonics being requested." QUALIFIER="REQUIRED" TYPE="SHORT">1</FIELD>
776
+ <FIELD NAME="MNEMONIC.1.NAME" DESCRIPTION="Name of the mnemonic." QUALIFIER="REQUIRED" TYPE="STRING">MNEMONIC-1</FIELD>
777
+ <FIELD NAME="MNEMONIC.1.DATA-TYPE" DESCRIPTION="Indicates the data type to be returned, either the raw value, or the converted value (Engineering Units or Text converted), or both. Defaults to both. 1:Raw 2:Converted 3:Both" QUALIFIER="OPTIONAL" OPTIONS="0,1,2" TYPE="SHORT">2</FIELD>
778
+ <FIELD NAME="MNEMONIC.1.STATE-ATTRIBUTES" DESCRIPTION="Indicates if the State Attributes (flags, limits, static flag, and data quality) of the mnemonic are to be returned. Defaults to No. 1:No 2:Yes" QUALIFIER="OPTIONAL" OPTIONS="1,2" TYPE="SHORT">1</FIELD>
779
+ <FIELD NAME="MNEMONIC.1.CRITERIA" DESCRIPTION="Identification of when data should be provided for the mnemonic. Includes either upon change of data (value, flags or status), or every sample, or at a specified sampling rate. The default Criteria is Change only data. 1:Change 2:Every sample 3:Sample rate" QUALIFIER="OPTIONAL" OPTIONS="1,2,3" TYPE="SHORT">1</FIELD>
780
+ <FIELD NAME="MNEMONIC.1.SAMPLE-RATE" DESCRIPTION="If CRITERIA is specified as Sample Rate, this field will specify the data sampling rate for the mnemonic in milliseconds." QUALIFIER="DEPENDENT" TYPE="SHORT">300</FIELD>
781
+ </MESSAGE>
782
+ <!--Generic Mnemonic Value Response Message-->
783
+ <MESSAGE NAME="MNEMONIC-VALUE-RESPONSE" KIND="RESPONSE" REQUIREMENT="GMSEC.[MISSION].[SAT].RESP.MVAL.[COMPONENT].[MSG-ID].[STATUS]" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.RESP.MVAL">
784
+ <!--GMSEC Information Bus Header-->
785
+ <!--Message Information-->
786
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
787
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">RESP</FIELD>
788
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">MVAL</FIELD>
789
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
790
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
791
+ <!--Middleware Information-->
792
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
793
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
794
+ <!--Mission Information-->
795
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
796
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
797
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
798
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
799
+ <!--Component Information-->
800
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
801
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
802
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
803
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
804
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
805
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
806
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
807
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
808
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
809
+ <!--Mnemonic Value Response Message Contents-->
810
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
811
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
812
+ <!--Status of Request-->
813
+ <FIELD NAME="RESPONSE-STATUS" DESCRIPTION="Identifies the status of the Mnemonic Value Request Message that was processed. 1:Acknowledgement 2:Failed completion 3:Successful Completion 4:Failed Completion 5:Invalid Request" QUALIFIER="REQUIRED" OPTIONS="1,2,3,4,5" TYPE="SHORT">3</FIELD>
814
+ <FIELD NAME="TIME-COMPLETED" DESCRIPTION="Time application completed processing the request." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
815
+ <FIELD NAME="RETURN-VALUE" DESCRIPTION="Return value or status based on the RESPONSE-STATUS. Useful to provide function call status or error code in the case of failed completion." QUALIFIER="OPTIONAL" TYPE="LONG">0</FIELD>
816
+ <!--Common Information for All Mnemonics-->
817
+ <FIELD NAME="NUM-OF-MNEMONICS" DESCRIPTION="Total number of mnemonics returned. Should echo the NUM-OF-MNEMONICS field in the request message." QUALIFIER="REQUIRED" TYPE="SHORT">1</FIELD>
818
+ <!--Common Information for a Single Mnemonic-->
819
+ <FIELD NAME="MNEMONIC.1.NAME" DESCRIPTION="Name of the Mnemonic" QUALIFIER="REQUIRED" TYPE="STRING">MNEMONIC-1</FIELD>
820
+ <FIELD NAME="MNEMONIC.1.STATUS" DESCRIPTION="Status of the first mnemonic. 1:Valid 2:Valid,Nodata 3:Invalid" QUALIFIER="REQUIRED" OPTIONS="1,2,3" TYPE="SHORT">1</FIELD>
821
+ <FIELD NAME="MNEMONIC.1.UNITS" DESCRIPTION="Units associated with the value converted to engineering units for the first mnemonic." QUALIFIER="OPTIONAL" TYPE="STRING">METERS</FIELD>
822
+ <FIELD NAME="MNEMONIC.1.NUM-OF-SAMPLES" DESCRIPTION="Number of data samples for the first mnemonic. This field shall be either a zero or a one." QUALIFIER="REQUIRED" TYPE="SHORT">1</FIELD>
823
+ <!--Single Data Point Information-->
824
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.TIME-STAMP" DESCRIPTION="Time stamp for the first data sample of the first mnemonic." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
825
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.RAW-VALUE" DESCRIPTION="Raw value for the first data sample of the first mnemonic." QUALIFIER="OPTIONAL" TYPE="LONG">1</FIELD>
826
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.EU-VALUE" QUALIFIER="OPTIONAL" TYPE="FLOAT">1</FIELD>
827
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.TEXT-VALUE" QUALIFIER="OPTIONAL" TYPE="STRING">1</FIELD>
828
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.FLAGS" QUALIFIER="OPTIONAL" TYPE="LONG">0</FIELD>
829
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.LIMIT-ENABLE-DISABLE" DESCRIPTION="Indicates the limit checking state. FALSE:Disabled TRUE:Enabled" OPTIONS="FALSE,TRUE" QUALIFIER="OPTIONAL" TYPE="BOOL">TRUE</FIELD>
830
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.RED-HIGH" DESCRIPTION="Indicates the Red High limit status. FALSE:In-limits TRUE:Out-of-limits" OPTIONS="FALSE,TRUE" QUALIFIER="OPTIONAL" TYPE="BOOL">FALSE</FIELD>
831
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.RED-LOW" DESCRIPTION="Indicates the Red Low limit status. FALSE:In-limits TRUE:Out-of-limits" OPTIONS="FALSE,TRUE" QUALIFIER="OPTIONAL" TYPE="BOOL">FALSE</FIELD>
832
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.YELLOW-HIGH" DESCRIPTION="Indicates the Yellow Hight limit status. FALSE:In-limits TRUE:Out-of-limits" OPTIONS="FALSE,TRUE" QUALIFIER="OPTIONAL" TYPE="BOOL">FALSE</FIELD>
833
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.YELLOW-LOW" DESCRIPTION="Indicates the Yellow Low limit status. FALSE:In-limits TRUE:Out-of-limits" OPTIONS="FALSE,TRUE" QUALIFIER="OPTIONAL" TYPE="BOOL">FALSE</FIELD>
834
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.STATIC" DESCRIPTION="Indicates the static(state) condition of the mnemonic. FALSE:Active TRUE:Static" OPTIONS="FALSE,TRUE" QUALIFIER="OPTIONAL" TYPE="BOOL">FALSE</FIELD>
835
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.QUALITY" DESCRIPTION="Indicates the Quality of the mnemonic. FALSE:Good quality TRUE:Questionable quality" QUALIFIER="OPTIONAL" OPTIONS="FALSE,TRUE" TYPE="BOOL">FALSE</FIELD>
836
+ </MESSAGE>
837
+ <!--Generic Mnemonic Value Data Message-->
838
+ <MESSAGE NAME="MNEMONIC-VALUE-DATA-MESSAGE" KIND="PUBLISH" REQUIREMENT="GMSEC.[MISSION].[SAT].MSG.MVAL.[COMPONENT].[MSG-ID]" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.MSG.MVAL">
839
+ <!--GMSEC Information Bus Header-->
840
+ <!--Message Information-->
841
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
842
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">MSG</FIELD>
843
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">MVAL</FIELD>
844
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
845
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
846
+ <!--Middleware Information-->
847
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
848
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
849
+ <!--Mission Information-->
850
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
851
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
852
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
853
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
854
+ <!--Component Information-->
855
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
856
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
857
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
858
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
859
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
860
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
861
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
862
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
863
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
864
+ <!--Mnemonic Value Data Message Contents-->
865
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2006</FIELD>
866
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
867
+ <FIELD NAME="NUM-OF-MNEMONICS" DESCRIPTION="Total number of mnemonics in this message." QUALIFIER="REQUIRED" TYPE="SHORT">1</FIELD>
868
+ <!--Common Information for a Single Mnemonic-->
869
+ <FIELD NAME="MNEMONIC.1.NAME" DESCRIPTION="Name of the Mnemonic." QUALIFIER="OPTIONAL" TYPE="STRING">MNEMONIC-1</FIELD>
870
+ <FIELD NAME="MNEMONIC.1.STATUS" DESCRIPTION="Status of the mnemonic. 1:Valid 2:Valid,Nodata 3:Invalid" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
871
+ <FIELD NAME="MNEMONIC.1.UNITS" DESCRIPTION="Units associated with the value converted to engineering units for the first mnemonic." QUALIFIER="OPTIONAL" TYPE="STRING">METERS</FIELD>
872
+ <FIELD NAME="MNEMONIC.1.NUM-OF-SAMPLES" DESCRIPTION="Number of data samples for the first mnemonic." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
873
+ <!--Single Data Point Information for the Mnemonic-->
874
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.TIME-STAMP" DESCRIPTION="Time stamp for the first data sample of the first mnemonic." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
875
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.RAW-VALUE" DESCRIPTION="Raw value for the first data sample of the first mnemonic." QUALIFIER="OPTIONAL" TYPE="LONG">1</FIELD>
876
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.EU-VALUE" DESCRIPTION="Raw value converted to Engineering Units if engineering units conversion is present for the first data sample of the first mnemonic." QUALIFIER="OPTIONAL" TYPE="FLOAT">1</FIELD>
877
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.TEXT-VALUE" DESCRIPTION="Raw value converted to a text string if text conversion is present for the first data sample of the first mnemonic." QUALIFIER="OPTIONAL" TYPE="STRING">1</FIELD>
878
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.FLAGS" DESCRIPTION="Flags native to the T and C component for the first data sample of the first mnemonic." QUALIFIER="OPTIONAL" TYPE="LONG">0</FIELD>
879
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.LIMIT-ENABLE-DISABLE" DESCRIPTION="Indicates the limit checking state. FALSE:Disabled TRUE:Enabled" QUALIFIER="OPTIONAL" OPTIONS="FALSE,TRUE" TYPE="BOOL">TRUE</FIELD>
880
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.RED-HIGH" DESCRIPTION="Indicates the Red High limit status. FALSE:In-limits TRUE:Out-of-limits" QUALIFIER="OPTIONAL" OPTIONS="FALSE,TRUE" TYPE="BOOL">FALSE</FIELD>
881
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.RED-LOW" DESCRIPTION="Indicates the Red Low limit status. FALSE:In-limits TRUE:Out-of-limits" QUALIFIER="OPTIONAL" OPTIONS="FALSE,TRUE" TYPE="BOOL">FALSE</FIELD>
882
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.YELLOW-HIGH" DESCRIPTION="Indicates the Yellow High limit status. FALSE:In-limits TRUE:Out-of-limits" QUALIFIER="OPTIONAL" OPTIONS="FALSE,TRUE" TYPE="BOOL">FALSE</FIELD>
883
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.YELLOW-LOW" DESCRIPTION="Indicates the Yellow Low limit status. FALSE:In-limits TRUE:Out-of-limits" QUALIFIER="OPTIONAL" OPTIONS="FALSE,TRUE" TYPE="BOOL">FALSE</FIELD>
884
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.STATIC" DESCRIPTION="Indicates the static(state) condiction. FALSE:Active TRUE:Static" QUALIFIER="OPTIONAL" OPTIONS="FALSE,TRUE" TYPE="BOOL">FALSE</FIELD>
885
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.QUALITY" DESCRIPTION="Indicates the Quality of the mnemonic. FALSE:Good quality TRUE:Questionable quality" QUALIFIER="OPTIONAL" OPTIONS="FALSE,TRUE" TYPE="BOOL">FALSE</FIELD>
886
+ </MESSAGE>
887
+ <!--Generic Archive Mnemonic Value Request Message-->
888
+ <MESSAGE NAME="ARCHIVE-MNEMONIC-VALUE-REQUEST" KIND="REQUEST" REQUIREMENT="GMSEC.[MISSION].[SAT].REQ.AMVAL.[COMPONENT]" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.REQ.AMVAL">
889
+ <!--GMSEC Information Bus Header-->
890
+ <!--Message Information-->
891
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
892
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">REQ</FIELD>
893
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">AMVAL</FIELD>
894
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
895
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
896
+ <!--Middleware Information-->
897
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
898
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
899
+ <!--Mission Information-->
900
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
901
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
902
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
903
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
904
+ <!--Component Information-->
905
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
906
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
907
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
908
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
909
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
910
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
911
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
912
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
913
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
914
+ <!--Archive Mnemonic Value Request Message Contents-->
915
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2009</FIELD>
916
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
917
+ <!--Data Delimiters-->
918
+ <FIELD NAME="START-TIME" DESCRIPTION="Requested start time of the mnemonic values to be retrieved from the telemetry archive." QUALIFIER="REQUIRED" TYPE="STRING">1955-309-06:00:00</FIELD>
919
+ <FIELD NAME="STOP-TIME" DESCRIPTION="Requested stop time of the mnemonic values to be retrieved from the telemetry archive. Defaults to the end of the telemetry archive." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-07:00:00</FIELD>
920
+ <FIELD NAME="PDB-VERSION" DESCRIPTION="Project Data Base version to be used by the responder when processing the archived data. Defaults to the PDB version used when the data was archived." QUALIFIER="OPTIONAL" TYPE="STRING">1</FIELD>
921
+ <!--Product Distribution Options-->
922
+ <FIELD NAME="RESPOND-VIA-MSG" DESCRIPTION="Indicates the message to use to deliver the mnemonic data. MSG will be a stream of messages; RESP will be a single response message. MSG.AMVAL:AMVAL Message RESP.AMVAL:AMVAL Response Message" QUALIFIER="REQUIRED" OPTIONS="MSG.AMVAL,RESP.AMVAL" TYPE="STRING">MSG.AMVAL</FIELD>
923
+ <FIELD NAME="DELIVER-VIA-REFERENCE" DESCRIPTION="This parameter is used only if 'RESP.AMVAL' is selected above. Indicates if the data will be referenced by a URI in the single response message. Defaults to No. FALSE:No/False TRUE:Yes/True" QUALIFIER="DEPENDENT" OPTIONS="FALSE,TRUE" TYPE="BOOL">FALSE</FIELD>
924
+ <FIELD NAME="DELIVER-VIA-INCLUDE" DESCRIPTION="This parameter is used only if 'RESP.AMVAL' is selected above. Indicates if the data is to be included in the single response message. Defaults to Yes. FALSE:No/False TRUE:Yes/True" QUALIFIER="DEPENDENT" OPTIONS="FALSE,TRUE" TYPE="BOOL">TRUE</FIELD>
925
+ <!--Replay Speed by Playback Ratio or Data Rate Choose One-->
926
+ <FIELD NAME="PLAYBACK-RATIO" DESCRIPTION="If 'MSG.AMVAL' is selected above, specifies the speed of data delivery as a ratio of playback rate to real-time rate." QUALIFIER="DEPENDENT" TYPE="FLOAT">1</FIELD>
927
+ <FIELD NAME="DATA-RATE" DESCRIPTION="If 'MSG.AMVAL' is selected above, specifies the speed of data delivery in Kilobits per second." QUALIFIER="DEPENDENT" TYPE="SHORT">1</FIELD>
928
+ <!--Output Product Category-->
929
+ <FIELD NAME="DATA-RATE" DESCRIPTION="The 'PROD-' fields are optionally used when the RESP.AMVAL has been specified above. Name of the product being requested." QUALIFIER="DEPENDENT" TYPE="SHORT">1</FIELD>
930
+ <FIELD NAME="PROD-NAME" DESCRIPTION="Name of the product being requested." QUALIFIER="DEPENDENT" TYPE="STRING">TEST-PROD-NAME</FIELD>
931
+ <FIELD NAME="PROD-TYPE" DESCRIPTION="Product type and subtype being requested." QUALIFIER="DEPENDENT" TYPE="STRING">AAA</FIELD>
932
+ <FIELD NAME="PROD-SUBTYPE" DESCRIPTION="Product type and subtype being requested." QUALIFIER="DEPENDENT" TYPE="STRING">DATA</FIELD>
933
+ <FIELD NAME="NUM-OF-PROD-SUBTYPES" DESCRIPTION="Number of further delineations / categories beyond the product subtype. Also, used as msg subject elements me5, me6, etc. in Product Message." QUALIFIER="DEPENDENT" TYPE="SHORT">1</FIELD>
934
+ <FIELD NAME="PROD-SUBTYPE.1.NAME" DESCRIPTION="First subcategory of the product subtype." QUALIFIER="DEPENDENT" TYPE="STRING">TEST-PROD-SUBTYPE</FIELD>
935
+ <FIELD NAME="URI" DESCRIPTION="Location where the requesting component is asking for the product file(s) to be stored. Could be a web address, directory or folder specification." QUALIFIER="DEPENDENT" TYPE="STRING">//TEST/URI</FIELD>
936
+ <FIELD NAME="NAME-PATTERN" DESCRIPTION="Describes the name of the output file." QUALIFIER="DEPENDENT" TYPE="STRING">TEST-FILE</FIELD>
937
+ <FIELD NAME="FORMAT" DESCRIPTION="Describes the file format." QUALIFIER="DEPENDENT" TYPE="STRING">XML</FIELD>
938
+ <FIELD NAME="VERSION" DESCRIPTION="Identifies the version of the file." QUALIFIER="DEPENDENT" TYPE="STRING">1</FIELD>
939
+ <FIELD NAME="SIZE" DESCRIPTION="Maximum size of the file acceptable to the requester (in kilobytes)." QUALIFIER="DEPENDENT" TYPE="LONG">10000</FIELD>
940
+ <!--Mnemonic Information-->
941
+ <FIELD NAME="NUM-OF-MNEMONICS" DESCRIPTION="Total Number of mnemonics being requested." QUALIFIER="REQUIRED" TYPE="SHORT">1</FIELD>
942
+ <FIELD NAME="MNEMONIC.1.NAME" DESCRIPTION="Name of the mnemonic." QUALIFIER="REQUIRED" TYPE="STRING">MNEMONIC-1</FIELD>
943
+ <FIELD NAME="MNEMONIC.1.DATA-TYPE" DESCRIPTION="Indicates the data type to be returned. 1:Raw 2:Converted 3:Both" QUALIFIER="REQUIRED" OPTIONS="1,2,3" TYPE="SHORT">1</FIELD>
944
+ <FIELD NAME="MNEMONIC.1.STATE-ATTRIBUTES" DESCRIPTION="Indicates if the state attributes of the mnemonic are to be returned. 1:No 2:Yes" QUALIFIER="OPTIONAL" OPTIONS="1,2" TYPE="SHORT">2</FIELD>
945
+ <FIELD NAME="MNEMONIC.1.CRITERIA" DESCRIPTION="Identification of how data should be sampled for the mnemonic. 1:Change(value, flags, status) 2:Every Sample 3:Sample Rate" QUALIFIER="REQUIRED" OPTIONS="1,2,3" TYPE="SHORT">2</FIELD>
946
+ <FIELD NAME="MNEMONIC.1.SAMPLE-RATE" DESCRIPTION="If CRITERIA is specified as Sample Rate, this field will specify the data sampling rate for the mnemonic (in milliseconds)." QUALIFIER="DEPENDENT" TYPE="SHORT">10</FIELD>
947
+ </MESSAGE>
948
+ <!--Generic Archive Mnemonic Value Response Message-->
949
+ <MESSAGE NAME="ARCHIVE-MNEMONIC-VALUE-RESPONSE" KIND="RESPONSE" REQUIREMENT="GMSEC.[MISSION].[SAT].RESP.AMVAL.[COMPONENT].[MSG-ID].[RESPONSE-STATUS]" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.RESP.AMVAL">
950
+ <!--GMSEC Information Bus Header-->
951
+ <!--Message Information-->
952
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
953
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">RESP</FIELD>
954
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">AMVAL</FIELD>
955
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
956
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
957
+ <!--Middleware Information-->
958
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
959
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
960
+ <!--Mission Information-->
961
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
962
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
963
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
964
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
965
+ <!--Component Information-->
966
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
967
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
968
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
969
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
970
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
971
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
972
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
973
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
974
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
975
+ <!--Archive Mnemonic Value Response Message Contents-->
976
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
977
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
978
+ <!--Status of Request-->
979
+ <FIELD NAME="RESPONSE-STATUS" DESCRIPTION="Identifies the status of the Archive Mnemonic Value Request Message that was processed. 1:Acknowledgement 2:Working/Keep alive 3:Successful completion 4:Failed completion 5:Invalid request" QUALIFIER="REQUIRED" TYPE="SHORT">3</FIELD>
980
+ <FIELD NAME="TIME-COMPLETED" DESCRIPTION="Time application completed processing the request." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
981
+ <FIELD NAME="RETURN-VALUE" DESCRIPTION="Return value or status based on the RESPONSE-STATUS. Useful to provide function call status or error code in the case of failed completion." QUALIFIER="OPTIONAL" TYPE="LONG">1</FIELD>
982
+ <!--Output Product Category-->
983
+ <FIELD NAME="PROD-NAME" DESCRIPTION="Name of the product." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-PROD-NAME</FIELD>
984
+ <FIELD NAME="PROD-TYPE" DESCRIPTION="Product type and subtype being requested." QUALIFIER="OPTIONAL" TYPE="STRING">AAA</FIELD>
985
+ <FIELD NAME="PROD-SUBTYPE" DESCRIPTION="Product type and subtype being requested." QUALIFIER="OPTIONAL" TYPE="STRING">DATA</FIELD>
986
+ <FIELD NAME="NUM-OF-PROD-SUBTYPES" DESCRIPTION="Number of further delineations / categories beyond the product subtype. Also, used as msg subject elements me5, me6, etc. in Product Message." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
987
+ <FIELD NAME="PROD-SUBTYPE.1.NAME" DESCRIPTION="First subcategory of the product subtype. (Subject elements me5, me6, etc. of the Product Message)." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-NAME</FIELD>
988
+ <!--Output Product Information-->
989
+ <FIELD NAME="URI" DESCRIPTION="URI specifying the location where the (single) output file product is stored." QUALIFIER="OPTIONAL" TYPE="STRING">//TEST/URI</FIELD>
990
+ <FIELD NAME="NAME-PATTERN" DESCRIPTION="Describes the name of the output file." QUALIFIER="OPTIONAL" TYPE="STRING">TEST</FIELD>
991
+ <FIELD NAME="FORMAT" DESCRIPTION="Describes the file format." QUALIFIER="OPTIONAL" TYPE="STRING">XML1.0</FIELD>
992
+ <FIELD NAME="VERSION" DESCRIPTION="Identifies the version of the file." QUALIFIER="OPTIONAL" TYPE="STRING">1.0</FIELD>
993
+ <FIELD NAME="SIZE" DESCRIPTION="Actual size of the file (in kilobytes)." QUALIFIER="OPTIONAL" TYPE="LONG">1000</FIELD>
994
+ <FIELD NAME="DATA" DESCRIPTION="The file content." QUALIFIER="OPTIONAL" TYPE="BIN">ABAB</FIELD>
995
+ <!--Mnemonic Information-->
996
+ <FIELD NAME="NUM-OF-MNEMONICS" DESCRIPTION="Total number of mnemonics returned." QUALIFIER="DEPENDENT" TYPE="SHORT">1</FIELD>
997
+ <FIELD NAME="MNEMONIC.1.NAME" DESCRIPTION="Name of the Mnemonic." QUALIFIER="DEPENDENT" TYPE="STRING">MNEMONIC-1</FIELD>
998
+ <FIELD NAME="MNEMONIC.1.STATUS" DESCRIPTION="Status of the mnemonic. 1:Valid 2:Valid,Nodata 3:Invalid" QUALIFIER="DEPENDENT" OPTIONS="1,2,3" TYPE="SHORT">1</FIELD>
999
+ </MESSAGE>
1000
+ <!--Generic Archive Mnemonic Value Data Message-->
1001
+ <MESSAGE NAME="ARCHIVE-MNEMONIC-VALUE-DATA" KIND="PUBLISH" REQUIREMENT="GMSEC.[MISSION].[SAT].MSG.AMVAL.[COMPONENT].[MSG-ID].[RESPONSE-STATUS]" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.MSG.AMVAL">
1002
+ <!--GMSEC Information Bus Header-->
1003
+ <!--Message Information-->
1004
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
1005
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">MSG</FIELD>
1006
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">AMVAL</FIELD>
1007
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
1008
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
1009
+ <!--Middleware Information-->
1010
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
1011
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
1012
+ <!--Mission Information-->
1013
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
1014
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
1015
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
1016
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
1017
+ <!--Component Information-->
1018
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
1019
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
1020
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
1021
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
1022
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
1023
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
1024
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
1025
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
1026
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1027
+ <!--Archive Mnemonic Value Data Message Contents-->
1028
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
1029
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
1030
+ <!--Mnemonic Information-->
1031
+ <FIELD NAME="NUM-OF-MNEMONICS" DESCRIPTION="Total number of mnemonics in this message." QUALIFIER="REQUIRED" TYPE="SHORT">1</FIELD>
1032
+ <FIELD NAME="MNEMONIC.1.NAME" DESCRIPTION="Name of the Mnemonic." QUALIFIER="OPTIONAL" TYPE="STRING">MNEMONIC-1</FIELD>
1033
+ <FIELD NAME="MNEMONIC.1.STATUS" DESCRIPTION="Status of the first mnemonic. 1:Valid 2:Valid,Nodata 3:Invalid" QUALIFIER="OPTIONAL" OPTIONS="1,2,3" TYPE="SHORT">1</FIELD>
1034
+ <FIELD NAME="MNEMONIC.1.UNITS" DESCRIPTION="Units associated with the value converted to engineering units for the first mnemonic" QUALIFIER="OPTIONAL" TYPE="STRING">METERS</FIELD>
1035
+ <FIELD NAME="MNEMONIC.1.NUM-OF-SAMPLES" DESCRIPTION="Number of data samples for the first mnemonic." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1036
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.TIME-STAMP" DESCRIPTION="Time stamp for the first data sample of the first mnemonic." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
1037
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.RAW-VALUE" DESCRIPTION="Raw value for the first data sample of the first mnemonic." QUALIFIER="OPTIONAL" TYPE="LONG">1</FIELD>
1038
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.EU-VALUE" QUALIFIER="OPTIONAL" TYPE="FLOAT">1</FIELD>
1039
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.TEXT-VALUE" QUALIFIER="OPTIONAL" TYPE="STRING">1</FIELD>
1040
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.FLAGS" QUALIFIER="OPTIONAL" TYPE="LONG">0</FIELD>
1041
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.LIMIT-ENABLE-DISABLE" DESCRIPTION="Indicates the limit checking status. FALSE:Disabled TRUE:Enabled" OPTIONS="FALSE,TRUE" QUALIFIER="OPTIONAL" TYPE="BOOL">TRUE</FIELD>
1042
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.RED-HIGH" DESCRIPTION="Indicates the Red High limit status. FALSE:In-limits TRUE:Out-of-limits" OPTIONS="FALSE,TRUE" QUALIFIER="OPTIONAL" TYPE="BOOL">FALSE</FIELD>
1043
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.RED-LOW" DESCRIPTION="Indicates the Red Low limit status. FALSE:In-limits TRUE:Out-of-limits" OPTIONS="FALSE,TRUE" QUALIFIER="OPTIONAL" TYPE="BOOL">FALSE</FIELD>
1044
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.YELLOW-HIGH" DESCRIPTION="Indicates the Yellow High limit status. FALSE:In-limits TRUE:Out-of-limits" OPTIONS="FALSE,TRUE" QUALIFIER="OPTIONAL" TYPE="BOOL">FALSE</FIELD>
1045
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.YELLOW-LOW" DESCRIPTION="Indicates the Yellow Low limit status. FALSE:In-limits TRUE:Out-of-limits" OPTIONS="FALSE,TRUE" QUALIFIER="OPTIONAL" TYPE="BOOL">FALSE</FIELD>
1046
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.STATIC" DESCRIPTION="Indicates the status(state) condition of the mnemonic. FALSE:Active TRUE:Static" OPTIONS="FALSE,TRUE" QUALIFIER="OPTIONAL" TYPE="BOOL">FALSE</FIELD>
1047
+ <FIELD NAME="MNEMONIC.1.SAMPLE.1.QUALITY" DESCRIPTION="Indicates the quality of the mnemonic. FALSE:Good quality TRUE:Questionable quality" OPTIONS="FALSE,TRUE" QUALIFIER="OPTIONAL" TYPE="BOOL">FALSE</FIELD>
1048
+ </MESSAGE>
1049
+
1050
+ <!--Generic Database Attributes Request Message-->
1051
+ <MESSAGE NAME="DATABASE-ATTRIBUTES-REQUEST" KIND="REQUEST" REQUIREMENT="GMSEC.[MISSION].[SAT].REQ.DB.[COMPONENT]" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.REQ.DB">
1052
+ <!--GMSEC Information Bus Header-->
1053
+ <!--Message Information-->
1054
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
1055
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">REQ</FIELD>
1056
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">DB</FIELD>
1057
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
1058
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
1059
+ <!--Middleware Information-->
1060
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
1061
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
1062
+ <!--Mission Information-->
1063
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
1064
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
1065
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
1066
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
1067
+ <!--Component Information-->
1068
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
1069
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
1070
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
1071
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
1072
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
1073
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
1074
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
1075
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
1076
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1077
+ <!--Database Attributes Request Message Contents-->
1078
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2009</FIELD>
1079
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
1080
+ <!--General Mnemonic Information-->
1081
+ <FIELD NAME="ATTRIBUTE-TYPE" DESCRIPTION="Indicates the type of Database Attributes to be returned. 1:Limit sets 2:Text Conversion 3:Cal curve 4:Short description 5:Long description 6:List of all mnemonics" QUALIFIER="REQUIRED" TYPE="SHORT">1</FIELD>
1082
+ <FIELD NAME="PDB-VERSION" DESCRIPTION="Project Data Base version to be used by the responder if multiple project databases are supported. Defaults to the most recent PDB version." QUALIFIER="OPTIONAL" TYPE="STRING">1</FIELD>
1083
+ <!--Output Product Category-->
1084
+ <FIELD NAME="PROD-NAME" DESCRIPTION="Name of the product." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-PROD-NAME</FIELD>
1085
+ <FIELD NAME="PROD-TYPE" DESCRIPTION="Product type and subtype being requested." QUALIFIER="OPTIONAL" TYPE="STRING">TAC</FIELD>
1086
+ <FIELD NAME="PROD-SUBTYPE" DESCRIPTION="Product type and subtype being requested." QUALIFIER="OPTIONAL" TYPE="STRING">DB</FIELD>
1087
+ <FIELD NAME="NUM-OF-PROD-SUBTYPES" DESCRIPTION="Number of further delineations / categories beyond the product subtype. Also, used as msg subject elements me5, me6, etc. in Product Message." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1088
+ <FIELD NAME="PROD-SUBTYPE.1.NAME" DESCRIPTION="First subcategory of the product subtype. (Subject elements me5, me6, etc. of the Product Message)." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-PROD-NAME</FIELD>
1089
+ <!--Output Product Information-->
1090
+ <FIELD NAME="URI" DESCRIPTION="Location where the requesting component is asking for the product file(s) to be stored. Could be a web address, directory or folder specification." QUALIFIER="DEPENDENT" TYPE="STRING">//TEST/URI</FIELD>
1091
+ <FIELD NAME="NAME-PATTERN" DESCRIPTION="Describes the name of the output file." QUALIFIER="OPTIONAL" TYPE="STRING">TEST</FIELD>
1092
+ <FIELD NAME="FORMAT" DESCRIPTION="Describes the file format." QUALIFIER="OPTIONAL" TYPE="STRING">XML1.0</FIELD>
1093
+ <FIELD NAME="VERSION" DESCRIPTION="Identifies the version of the file." QUALIFIER="OPTIONAL" TYPE="STRING">1.0</FIELD>
1094
+ <FIELD NAME="SIZE" DESCRIPTION="Maximum size of the file acceptable to the requester. Size specified in KB." QUALIFIER="OPTIONAL" TYPE="LONG">1000</FIELD>
1095
+ <!--Mnemonic Information-->
1096
+ <FIELD NAME="NUM-OF-MNEMONICS" DESCRIPTION="Total number of mnemonics returned." QUALIFIER="DEPENDENT" TYPE="SHORT">1</FIELD>
1097
+ <FIELD NAME="MNEMONIC.1.NAME" DESCRIPTION="Name of the Mnemonic." QUALIFIER="DEPENDENT" TYPE="STRING">MNEMONIC-1</FIELD>
1098
+ </MESSAGE>
1099
+ <!--Generic Database Attributes Response for Limit Sets Message-->
1100
+ <MESSAGE NAME="DB-RESPONSE-LIMIT-SET" KIND="RESPONSE" REQUIREMENT="GMSEC.[MISSION].[SAT].RESP.DB.[COMPONENT].[MSG-ID].[RESPONSE_STATUS]" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.RESP.DB">
1101
+ <!--GMSEC Information Bus Header-->
1102
+ <!--Message Information-->
1103
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
1104
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">RESP</FIELD>
1105
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">DB</FIELD>
1106
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
1107
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
1108
+ <!--Middleware Information-->
1109
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
1110
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
1111
+ <!--Mission Information-->
1112
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
1113
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
1114
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
1115
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
1116
+ <!--Component Information-->
1117
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
1118
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
1119
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
1120
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
1121
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
1122
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
1123
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
1124
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
1125
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1126
+ <!--Database Attributes Response for Limit Sets Message Contents-->
1127
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2006</FIELD>
1128
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
1129
+ <!--Status of Request-->
1130
+ <FIELD NAME="RESPONSE-STATUS" DESCRIPTION="Identifies the status of the Database Attributes Request Message that was processed. 1:Acknowledgement 2:Working/Keep Alive 3:Successful Completion 4:Failed Completion 5:Invalid Request" QUALIFIER="REQUIRED" OPTIONS="1,2,3,4,5" TYPE="SHORT">3</FIELD>
1131
+ <FIELD NAME="TIME-COMPLETED" DESCRIPTION="Time application completed processing the request." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
1132
+ <FIELD NAME="RETURN-VALUE" DESCRIPTION="Return value or status based on the RESPONSE-STATUS. Useful to provide function call status or error code in the case of failed completion." QUALIFIER="OPTIONAL" TYPE="LONG">1</FIELD>
1133
+ <!--Attribute/Mnemonic Information-->
1134
+ <FIELD NAME="ATTRIBUTE-TYPE" DESCRIPTION="Indicates the type of Database Attributes for the first mnemonic to be returned (1 = Limit sets)." QUALIFIER="REQUIRED" TYPE="SHORT">1</FIELD>
1135
+ <FIELD NAME="NUM-OF-MNEMONICS" DESCRIPTION="Total number of mnemonics returned." QUALIFIER="DEPENDENT" TYPE="SHORT">1</FIELD>
1136
+ <FIELD NAME="MNEMONIC.1.NAME" QUALIFIER="DEPENDENT" TYPE="STRING">MNEMONIC-1</FIELD>
1137
+ <FIELD NAME="MNEMONIC.1.STATUS" DESCRIPTION="Status of the mnemonic. 1:Valid 2:Valid,Nodata 3:Invalid" QUALIFIER="DEPENDENT" OPTIONS="1,2,3" TYPE="SHORT">1</FIELD>
1138
+ <FIELD NAME="MNEMONIC.1.LIMIT-TYPE" DESCRIPTION="Specifies the type of limites defined for this mnemonic. 1:Range limits 2:Delta limits 3:Both" QUALIFIER="DEPENDENT" OPTIONS="1,2,3" TYPE="SHORT">1</FIELD>
1139
+ <FIELD NAME="MNEMONIC.1.DELTA-LIMIT" DESCRIPTION="Delta limit set for Mnemonic n." QUALIFIER="DEPENDENT" TYPE="SHORT">10</FIELD>
1140
+ <FIELD NAME="MNEMONIC.1.MNEMONIC-SWITCH" DESCRIPTION="Dependant mnemonic used to determine which limit set to use in the case of multiple limit sets." QUALIFIER="DEPENDENT" TYPE="STRING">RH</FIELD>
1141
+ <FIELD NAME="MNEMONIC.1.NUM-OF-RANGE-SETS" DESCRIPTION="Indicates the number of range limit sets defined for this mnemonic." QUALIFIER="DEPENDENT" TYPE="SHORT">1</FIELD>
1142
+ <FIELD NAME="MNEMONIC.1.RANGE-SET.1.LIMIT-CONDITION" DESCRIPTION="1:Inclusive limit set 2:Exclusive limit set" QUALIFIER="DEPENDENT" OPTIONS="1,2" TYPE="SHORT">1</FIELD>
1143
+ <FIELD NAME="MNEMONIC.1.RANGE-SET.1.RH" DESCRIPTION="Limit set m Red high limit for Mnemonic n." QUALIFIER="DEPENDENT" TYPE="LONG">100</FIELD>
1144
+ <FIELD NAME="MNEMONIC.1.RANGE-SET.1.RL" DESCRIPTION="Limit set m Red low limit for Mnemonic n." QUALIFIER="DEPENDENT" TYPE="LONG">10</FIELD>
1145
+ <FIELD NAME="MNEMONIC.1.RANGE-SET.1.YH" DESCRIPTION="Limit set m Yellow high limit for Mnemonic n." QUALIFIER="DEPENDENT" TYPE="LONG">100</FIELD>
1146
+ <FIELD NAME="MNEMONIC.1.RANGE-SET.1.YL" DESCRIPTION="Limit set m Yellow low limit for Mnemonic n." QUALIFIER="DEPENDENT" TYPE="LONG">10</FIELD>
1147
+ </MESSAGE>
1148
+ <!--Generic Database Attributes Response for Text Conversion Message-->
1149
+ <MESSAGE NAME="DB-RESPONSE-TEXT-CONVERSION" KIND="RESPONSE" REQUIREMENT="GMSEC.[MISSION].[SAT].RESP.DB.[COMPONENT].[MSG-ID].[RESPONSE-STATUS]" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.RESP.DB">
1150
+ <!--GMSEC Information Bus Header-->
1151
+ <!--Message Information-->
1152
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
1153
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">RESP</FIELD>
1154
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">DB</FIELD>
1155
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
1156
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
1157
+ <!--Middleware Information-->
1158
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
1159
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
1160
+ <!--Mission Information-->
1161
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
1162
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
1163
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
1164
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
1165
+ <!--Component Information-->
1166
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
1167
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
1168
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
1169
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
1170
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
1171
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
1172
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
1173
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
1174
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1175
+ <!--Database Attributes Response for Text Conversion Message Contents-->
1176
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2006</FIELD>
1177
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
1178
+ <!--Status of Request-->
1179
+ <FIELD NAME="RESPONSE-STATUS" DESCRIPTION="Identifies that status of the Database Attributes Request Message that was processed. 1:Acknowledgement 2:Working/Keep Alive 3:Successful Completion 4:Failed Completion 5:Invalid Request" QUALIFIER="REQUIRED" OPTIONS="1,2,3,4,5" TYPE="SHORT">1</FIELD>
1180
+ <FIELD NAME="TIME-COMPLETED" DESCRIPTION="Time application completed processing the request." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
1181
+ <FIELD NAME="RETURN-VALUE" DESCRIPTION="Return value or status based on the RESPONSE-STATUS. Useful to provide function call status or error code in the case of failed completion." QUALIFIER="OPTIONAL" TYPE="LONG">1</FIELD>
1182
+ <FIELD NAME="ATTRIBUTE-TYPE" DESCRIPTION="Indicates the type of Database Attributes for the first mnemonic to be returned." QUALIFIER="REQUIRED" TYPE="SHORT">2</FIELD>
1183
+ <FIELD NAME="NUM-OF-MNEMONICS" DESCRIPTION="Total number of mnemonics returned." QUALIFIER="DEPENDENT" TYPE="SHORT">1</FIELD>
1184
+ <FIELD NAME="MNEMONIC.1.NAME" DESCRIPTION="Name of the Mnemonic." QUALIFIER="DEPENDENT" TYPE="STRING">MNEMONIC-1</FIELD>
1185
+ <FIELD NAME="MNEMONIC.1.STATUS" DESCRIPTION="Status of the mnemonic. 1:Valid 2:Valid,Nodata 3:Invalid" QUALIFIER="DEPENDENT" OPTIONS="1,2,3" TYPE="SHORT">1</FIELD>
1186
+ <FIELD NAME="MNEMONIC.1.NUM-OF-TEXT-SETS" DESCRIPTION="Indicates the number of Text Conversion sets defined for this mnemonic." QUALIFIER="DEPENDENT" TYPE="SHORT">1</FIELD>
1187
+ <!--Mnemonic-->
1188
+ <FIELD NAME="MNEMONIC.1.TEXT-SET.1.TEXT" DESCRIPTION="Text Conversion Set n for Mnemonic n." QUALIFIER="DEPENDENT" TYPE="STRING">TEXT-SET-1</FIELD>
1189
+ <FIELD NAME="MNEMONIC.1.TEXT-SET.1.LOW-RANGE" DESCRIPTION="Low range for text conversion set m for mnemonic n." QUALIFIER="DEPENDENT" TYPE="SHORT">10</FIELD>
1190
+ <FIELD NAME="MNEMONIC.1.TEXT-SET.1.HIGH-RANGE" DESCRIPTION="High range for text conversion set m for mnemonic n." QUALIFIER="DEPENDENT" TYPE="SHORT">100</FIELD>
1191
+ </MESSAGE>
1192
+ <!--Generic Database Attributes Response for Cal Curve Message-->
1193
+ <MESSAGE NAME="DB-RESPONSE-CAL-CURVE" KIND="RESPONSE" REQUIREMENT="GMSEC.[MISSION].[SAT].RESP.DB.[COMPONENT].[MSG-ID].[RESPONSE-STATUS]" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.RESP.DB">
1194
+ <!--GMSEC Information Bus Header-->
1195
+ <!--Message Information-->
1196
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
1197
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">RESP</FIELD>
1198
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">DB</FIELD>
1199
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
1200
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
1201
+ <!--Middleware Information-->
1202
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
1203
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
1204
+ <!--Mission Information-->
1205
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
1206
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
1207
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
1208
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
1209
+ <!--Component Information-->
1210
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
1211
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
1212
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
1213
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
1214
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
1215
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
1216
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
1217
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
1218
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1219
+ <!--Database Attributes Response for Cal Curve Message Contents-->
1220
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2006</FIELD>
1221
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
1222
+ <!--Status of Request-->
1223
+ <FIELD NAME="RESPONSE-STATUS" DESCRIPTION="Identifies that status of the Database Attributes Request Message that was processed. 1:Acknowledgement 2:Working/Keep Alive 3:Successful Completion 4:Failed Completion 5:Invalid Request" QUALIFIER="REQUIRED" OPTIONS="1,2,3,4,5" TYPE="SHORT">1</FIELD>
1224
+ <FIELD NAME="TIME-COMPLETED" DESCRIPTION="Time application completed processing the request." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
1225
+ <FIELD NAME="RETURN-VALUE" DESCRIPTION="Return value or status based on the RESPONSE-STATUS. Useful to provide function call status or error code in the case of failed completion." QUALIFIER="OPTIONAL" TYPE="LONG">1</FIELD>
1226
+ <!--Attribute/Mnemonic Information-->
1227
+ <FIELD NAME="ATTRIBUTE-TYPE" DESCRIPTION="Indicates the type of Database Attributes for the first mnemonic to be returned (3 = Cal Curve)." QUALIFIER="REQUIRED" TYPE="SHORT">3</FIELD>
1228
+ <FIELD NAME="NUM-OF-MNEMONICS" DESCRIPTION="Total number of mnemonics returned." QUALIFIER="DEPENDENT" TYPE="SHORT">1</FIELD>
1229
+ <!--Mnemonic-->
1230
+ <FIELD NAME="MNEMONIC.1.NAME" DESCRIPTION="Name of the Mnemonic." QUALIFIER="DEPENDENT" TYPE="STRING">MNEMONIC-1</FIELD>
1231
+ <FIELD NAME="MNEMONIC.1.STATUS" DESCRIPTION="Status of the mnemonic. 1:Valid 2:Valid,Nodata 3:Invalid" QUALIFIER="DEPENDENT" OPTIONS="1,2,3" TYPE="SHORT">1</FIELD>
1232
+ <FIELD NAME="MNEMONIC.1.CAL-TYPE" DESCRIPTION="Indicates the type of Cal Curve defined for this mnemonic. 1:Polynomial 2:Other" QUALIFIER="DEPENDENT" OPTIONS="1,2" TYPE="SHORT">n</FIELD>
1233
+ <FIELD NAME="MNEMONIC.1.CONSTANT" DESCRIPTION="Constant for Cal Curve for mnemonic." QUALIFIER="DEPENDENT" TYPE="FLOAT">1.0</FIELD>
1234
+ <FIELD NAME="MNEMONIC.1.NUM-OF-COEFFS" DESCRIPTION="Degree of Polynomial for mnemonic." QUALIFIER="DEPENDENT" TYPE="SHORT">1</FIELD>
1235
+ <FIELD NAME="MNEMONIC.1.COEFF.1.VALUE" DESCRIPTION="Mth order Polynomial coefficient for MNEMONIC n." QUALIFIER="DEPENDENT" TYPE="FLOAT">1</FIELD>
1236
+ </MESSAGE>
1237
+ <!--Generic Database Attributes Response for Short Description Message-->
1238
+ <MESSAGE NAME="DB-RESPONSE-SHORT-DESCRIPTION" KIND="RESPONSE" REQUIREMENT="GMSEC.[MISSION].[SAT].RESP.DB.[COMPONENT].[MSG-ID].[RESPONSE-STATUS]" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.RESP.DB">
1239
+ <!--GMSEC Information Bus Header-->
1240
+ <!--Message Information-->
1241
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
1242
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">RESP</FIELD>
1243
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">DB</FIELD>
1244
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
1245
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
1246
+ <!--Middleware Information-->
1247
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
1248
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
1249
+ <!--Mission Information-->
1250
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
1251
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
1252
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
1253
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
1254
+ <!--Component Information-->
1255
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
1256
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
1257
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
1258
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
1259
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
1260
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
1261
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
1262
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
1263
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1264
+ <!--Database Attributes Response for Short Description Message Contents-->
1265
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2006</FIELD>
1266
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
1267
+ <FIELD NAME="RESPONSE-STATUS" DESCRIPTION="Identifies that status of the Database Attributes Request Message that was processed. 1:Acknowledgement 2:Working/Keep Alive 3:Successful Completion 4:Failed Completion 5:Invalid Request" QUALIFIER="REQUIRED" OPTIONS="1,2,3,4,5" TYPE="SHORT">1</FIELD>
1268
+ <FIELD NAME="TIME-COMPLETED" DESCRIPTION="Time application completed processing the request." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
1269
+ <FIELD NAME="RETURN-VALUE" DESCRIPTION="Return value or status based on the RESPONSE-STATUS. Useful to provide function call status or error code in the case of failed completion." QUALIFIER="OPTIONAL" TYPE="LONG">1</FIELD>
1270
+ <FIELD NAME="ATTRIBUTE-TYPE" DESCRIPTION="Indicates the type of Database Attributes for the first mnemonic to be returned (4 = Short description)." QUALIFIER="REQUIRED" TYPE="SHORT">4</FIELD>
1271
+ <FIELD NAME="NUM-OF-MNEMONICS" DESCRIPTION="Total number of mnemonics returned." QUALIFIER="DEPENDENT" TYPE="SHORT">1</FIELD>
1272
+ <FIELD NAME="MNEMONIC.1.NAME" DESCRIPTION="Name of the mnemonic." QUALIFIER="DEPENDENT" TYPE="STRING">MNEMONIC-1</FIELD>
1273
+ <FIELD NAME="MNEMONIC.1.STATUS" DESCRIPTION="Status of the mnemonic. 1:Valid 2:Valid,Nodata 3:Invalid" QUALIFIER="DEPENDENT" OPTIONS="1,2,3" TYPE="SHORT">1</FIELD>
1274
+ <FIELD NAME="MNEMONIC.1.SHORT-DESCRIPTION" DESCRIPTION="Short Description for mnemonic n." QUALIFIER="DEPENDENT" TYPE="STRING">Description 1</FIELD>
1275
+ </MESSAGE>
1276
+ <!--Generic Database Attributes Response for Long Description Message-->
1277
+ <MESSAGE NAME="DB-RESPONSE-LONG-DESCRIPTION" KIND="RESPONSE" REQUIREMENT="GMSEC.[MISSION].[SAT].RESP.DB.[COMPONENT].[MSG-ID].[RESPONSE-STATUS]" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.RESP.DB">
1278
+ <!--GMSEC Information Bus Header-->
1279
+ <!--Message Information-->
1280
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
1281
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">RESP</FIELD>
1282
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">DB</FIELD>
1283
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
1284
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
1285
+ <!--Middleware Information-->
1286
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
1287
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
1288
+ <!--Mission Information-->
1289
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
1290
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
1291
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
1292
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
1293
+ <!--Component Information-->
1294
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
1295
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
1296
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
1297
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
1298
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
1299
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
1300
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
1301
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
1302
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1303
+ <!--Database Attributes Response for Long Description Message Contents-->
1304
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2006</FIELD>
1305
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
1306
+ <FIELD NAME="RESPONSE-STATUS" DESCRIPTION="Identifies the status of the Database Attributes Request Message that was processed. 1:Acknowledgement 2:Working/Keep Alive 3:Successful Completion 4:Failed Completion 5:Invalid Request" QUALIFIER="REQUIRED" OPTIONS="1,2,3,4,5" TYPE="SHORT">1</FIELD>
1307
+ <FIELD NAME="TIME-COMPLETED" DESCRIPTION="Time application completed processing the request." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
1308
+ <FIELD NAME="RETURN-VALUE" DESCRIPTION="Return value or status based on the RESPONSE-STATUS. Useful to provide function call status or error code in the case of failed completion." QUALIFIER="OPTIONAL" TYPE="LONG">1</FIELD>
1309
+ <FIELD NAME="ATTRIBUTE-TYPE" DESCRIPTION="Indicates the type of Database Attributes for the first mnemonic to be returned (5 = Long description)." QUALIFIER="REQUIRED" TYPE="SHORT">5</FIELD>
1310
+ <FIELD NAME="NUM-OF-MNEMONICS" QUALIFIER="DEPENDENT" TYPE="SHORT">1</FIELD>
1311
+ <FIELD NAME="MNEMONIC.1.NAME" DESCRIPTION="Name of the menemonic." QUALIFIER="DEPENDENT" TYPE="STRING">MNEMONIC-1</FIELD>
1312
+ <FIELD NAME="MNEMONIC.1.STATUS" DESCRIPTION="Status of the mnemonic. 1:Valid 2:Valid,Nodata 3:Invalid" QUALIFIER="DEPENDENT" OPTIONS="1,2,3" TYPE="SHORT">1</FIELD>
1313
+ <FIELD NAME="MNEMONIC.1.LONG-DESCRIPTION" DESCRIPTION="Long Description for mnemonic." QUALIFIER="DEPENDENT" TYPE="STRING">Long Description 1</FIELD>
1314
+ </MESSAGE>
1315
+ <!--Generic Database Attributes Response for List of Mnemonics Message-->
1316
+ <MESSAGE NAME="DB-RESPONSE-LIST-OF-MNEMONICS" KIND="RESPONSE" REQUIREMENT="GMSEC.[MISSION].[SAT].RESP.DB.[COMPONENT].[MSG-ID].[RESPONSE-STATUS]" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.RESP.DB">
1317
+ <!--GMSEC Information Bus Header-->
1318
+ <!--Message Information-->
1319
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
1320
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">RESP</FIELD>
1321
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">DB</FIELD>
1322
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
1323
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
1324
+ <!--Middleware Information-->
1325
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
1326
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
1327
+ <!--Mission Information-->
1328
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
1329
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
1330
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
1331
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
1332
+ <!--Component Information-->
1333
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
1334
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
1335
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
1336
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
1337
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
1338
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
1339
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
1340
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
1341
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1342
+ <!--Database Attributes Response for List of Mnemonics Message Contents-->
1343
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
1344
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
1345
+ <FIELD NAME="RESPONSE-STATUS" DESCRIPTION="Identifies that status of the Database Attributes Request Message that was processed. 1:Acknowledgement 2:Working/Keep Alive 3:Successful Completion 4:Failed Completion 5:Invalid Request" QUALIFIER="REQUIRED" OPTIONS="1,2,3,4,5" TYPE="SHORT">3</FIELD>
1346
+ <FIELD NAME="TIME-COMPLETED" QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
1347
+ <FIELD NAME="RETURN-VALUE" DESCRIPTION="Return value or status based on the RESPONSE-STATUS. 1:Product file placed in URI specified by requestor 2:Product file placed in URI specified by responder Other:Error code of the failed complietion" QUALIFIER="OPTIONAL" TYPE="LONG">1</FIELD>
1348
+ <FIELD NAME="ATTRIBUTE-TYPE" DESCRIPTION="Indicates the type of Database Attributes for the mnemonic." QUALIFIER="REQUIRED" TYPE="SHORT">6</FIELD>
1349
+ <!--Output Product Category-->
1350
+ <FIELD NAME="PROD-NAME" DESCRIPTION="Name of the product." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-PROD-NAME</FIELD>
1351
+ <FIELD NAME="PROD-TYPE" DESCRIPTION="Product type and subtype being requested." QUALIFIER="OPTIONAL" TYPE="STRING">TAC</FIELD>
1352
+ <FIELD NAME="PROD-SUBTYPE" DESCRIPTION="Product type and subtype being requested." QUALIFIER="OPTIONAL" TYPE="STRING">DB</FIELD>
1353
+ <FIELD NAME="NUM-OF-PROD-SUBTYPES" DESCRIPTION="Number of further delineations / categories beyond the product subtype. Also, used as msg subject elements me5, me6, etc. in Product Message." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1354
+ <FIELD NAME="PROD-SUBTYPE.1.NAME" DESCRIPTION="First subcategory of the product subtype. (Subject elements me5, me6, etc. of the Product Message)." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-PROD-NAME</FIELD>
1355
+ <FIELD NAME="URI" DESCRIPTION="Location where the requesting component is asking for the product file(s) to be stored. Could be a web address, directory or folder specification." QUALIFIER="DEPENDENT" TYPE="STRING">//TEST/URI</FIELD>
1356
+ <FIELD NAME="NAME-PATTERN" DESCRIPTION="Describes the name of the output file." QUALIFIER="DEPENDENT" TYPE="STRING">TEST-FILE</FIELD>
1357
+ <FIELD NAME="FORMAT" DESCRIPTION="Describes the file format." QUALIFIER="DEPENDENT" TYPE="STRING">XML</FIELD>
1358
+ <FIELD NAME="VERSION" DESCRIPTION="Identifies the version of the file." QUALIFIER="DEPENDENT" TYPE="STRING">1</FIELD>
1359
+ <FIELD NAME="SIZE" DESCRIPTION="Maximum size of the file acceptable to the requester (in kilobytes)." QUALIFIER="DEPENDENT" TYPE="LONG">10000</FIELD>
1360
+ </MESSAGE>
1361
+ <!--Generic Command Request Message-->
1362
+ <MESSAGE NAME="COMMAND-REQUEST" KIND="REQUEST" REQUIREMENT="GMSEC.[MISSION].[SAT].REQ.CMD.[COMPONENT].[MSG-ID].[STATUS]" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.REQ.CMD.PRODNAME.MSG45.3">
1363
+ <!--GMSEC Information Bus Header-->
1364
+ <!--Message Information-->
1365
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
1366
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">REQ</FIELD>
1367
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">CMD</FIELD>
1368
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
1369
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
1370
+ <!--Middleware Information-->
1371
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
1372
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
1373
+ <!--Mission Information-->
1374
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
1375
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
1376
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
1377
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
1378
+ <!--Component Information-->
1379
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
1380
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
1381
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
1382
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
1383
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
1384
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
1385
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
1386
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
1387
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1388
+ <!--Command Request Message Contents-->
1389
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2005</FIELD>
1390
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
1391
+ <!--Ground Reference Information-->
1392
+ <FIELD NAME="CMD-SOURCE" DESCRIPTION="Which user/workposition/proc/schedule the message originated from." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SOURCE</FIELD>
1393
+ <!--Command Information-->
1394
+ <FIELD NAME="CMD-FORMAT" DESCRIPTION="Type of command." QUALIFIER="REQUIRED" OPTIONS="CCSDSPACKET,CCSDSFRAME,CLTU,MNEMONIC,RAW" TYPE="STRING">CCSDSPACKET</FIELD>
1395
+ <FIELD NAME="CMD-DATA" DESCRIPTION="Command data." QUALIFIER="REQUIRED" TYPE="BIN">ABAB</FIELD>
1396
+ <!--Ancillary Command Information-->
1397
+ <FIELD NAME="LENGTH" DESCRIPTION="Length of CMD-DATA" QUALIFIER="OPTIONAL" TYPE="LONG">1000</FIELD>
1398
+ <FIELD NAME="VCID" DESCRIPTION="CCSDS Virtual Channel ID" QUALIFIER="OPTIONAL" TYPE="SHORT">2</FIELD>
1399
+ <FIELD NAME="BYPASS" DESCRIPTION="CCSDS COP-1 flag for Bypass of Acceptance Check, i.e. without verification" QUALIFIER="OPTIONAL" TYPE="BOOLEAN">1</FIELD>
1400
+ <FIELD NAME="FRAME-COUNTER" DESCRIPTION="Reset to next expected command counter" QUALIFIER="OPTIONAL" TYPE="LONG">10</FIELD>
1401
+ <FIELD NAME="APID" DESCRIPTION="Application Process Identifier" QUALIFIER="OPTIONAL" TYPE="STRING">2</FIELD>
1402
+ <FIELD NAME="PACKET-COUNTER" DESCRIPTION="Packet counter." QUALIFIER="OPTIONAL" TYPE="LONG">100</FIELD>
1403
+ <!--Command Execution Parameters-->
1404
+ <FIELD NAME="CMD-TYPE" DESCRIPTION="If REALTIME, execute upon receipt. If FUTURE, execute at SPACECRAFT-EXECTION-TIME." QUALIFIER="OPTIONAL" OPTIONS="REALTIME,FUTURE" TYPE="STRING">REALTIME</FIELD>
1405
+ <FIELD NAME="EARLIEST-UPLINK-TIME" DESCRIPTION="Absolute or relative time can apply." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
1406
+ <FIELD NAME="LATEST-UPLINK-TIME" DESCRIPTION="Absolute or relative time can apply." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
1407
+ <FIELD NAME="SPACECRAFT-EXECUTION-TIME" DESCRIPTION="Required if CMD-TYPE = 'FUTURE'. Absolute or relative time can apply." QUALIFIER="DEPENDENT" TYPE="STRING">1955-309-06:00:00</FIELD>
1408
+ <!--Message Response Fields-->
1409
+ <FIELD NAME="RESPONSE" DESCRIPTION="Indicates if a response is required. Defaults to No. FALSE:False or no response TRUE:True or must response" QUALIFIER="REQUIRED" OPTIONS="FALSE,TRUE" TYPE="BOOL">FALSE</FIELD>
1410
+ </MESSAGE>
1411
+
1412
+ <!--Generic Command Response Message-->
1413
+ <MESSAGE NAME="COMMAND-RESPONSE" KIND="RESPONSE" REQUIREMENT="GMSEC.[MISSION].[SAT].RESP.CMD.[COMPONENT].[MSG-ID].[STATUS]" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.RESP.CMD.PRODNAME.MSG45.3">
1414
+ <!--GMSEC Information Bus Header-->
1415
+ <!--Message Information-->
1416
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
1417
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">RESP</FIELD>
1418
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">CMD</FIELD>
1419
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
1420
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
1421
+ <!--Middleware Information-->
1422
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
1423
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
1424
+ <!--Mission Information-->
1425
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
1426
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
1427
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
1428
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
1429
+ <!--Component Information-->
1430
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
1431
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
1432
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
1433
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
1434
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
1435
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
1436
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
1437
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
1438
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1439
+ <!--Command Response Message Contents-->
1440
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2005</FIELD>
1441
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
1442
+ <!--Status of Request-->
1443
+ <FIELD NAME="RESPONSE-STATUS" DESCRIPTION="Identifies that status of the Command being processed. 1:Acknowledgement 2:Working/keep alive 3:Successful completion 4:Failed completion 5:Invalid Request" QUALIFIER="REQUIRED" OPTIONS="1,2,3,4,5" TYPE="SHORT">1</FIELD>
1444
+ <FIELD NAME="TIME-COMPLETED" DESCRIPTION="Time application completed processing the Command." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
1445
+ <FIELD NAME="RETURN-VALUE" DESCRIPTION="Return value or status based on the RESPONSE-STATUS. Useful to provide function call status or error code in the case of failed completion." QUALIFIER="OPTIONAL" TYPE="LONG">1</FIELD>
1446
+ <FIELD NAME="XTCE-STATUS" DESCRIPTION="Status codes from the OMG-XML Telemetric and Command data Exchange data specification. 1:Acknowledgement 2:Invalid 3:TransferredToRange 4:SentFromRange 5:Received 6:Accepted 7:Queued 8:Executing 9:Complete 10:Failed" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1447
+ <FIELD NAME="RETURN-DATA" DESCRIPTION="Additional data that may be desired along with the completion status" QUALIFIER="OPTIONAL" TYPE="DEPENDENT_UPON_RESPONSE">ABAB</FIELD>
1448
+ </MESSAGE>
1449
+ <!--Generic Product Request Message-->
1450
+ <MESSAGE NAME="PRODUCT-REQUEST" KIND="REQUEST" REQUIREMENT="GMSEC.[MISSION].[SAT].REQ.PROD.[COMPONENT].[PROD-FILE-NAME-PATTERN].[PROD-TYPE].[PROD-SUBTYPE].(PROD-SUBTYPE.1)..." SUBJECT="GMSEC.TEST-MISSION-ID.SATID.REQ.PROD.PRODNAME.AAA.MESSAGE">
1451
+ <!--GMSEC Information Bus Header-->
1452
+ <!--Message Information-->
1453
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
1454
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">REQ</FIELD>
1455
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">PROD</FIELD>
1456
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
1457
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
1458
+ <!--Middleware Information-->
1459
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
1460
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
1461
+ <!--Mission Information-->
1462
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
1463
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
1464
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
1465
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
1466
+ <!--Component Information-->
1467
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
1468
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
1469
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
1470
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
1471
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
1472
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
1473
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
1474
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
1475
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1476
+ <!--Product Request Message Contents-->
1477
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2009</FIELD>
1478
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
1479
+ <!--Product Input Parameters-->
1480
+ <FIELD NAME="START-TIME" DESCRIPTION="Requested start time for the scope of the product to cover." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
1481
+ <FIELD NAME="STOP-TIME" DESCRIPTION="Requested stop time for the scope of the product to cover." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-07:00:00</FIELD>
1482
+ <FIELD NAME="REQ-STRING" DESCRIPTION="Specific to the product provider. The string will define a database query, a script expression, Directive string, or some other keyword syntax made known by the provider." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-REQ-STRING</FIELD>
1483
+ <FIELD NAME="NUM-OF-INPUT-FILES" DESCRIPTION="Indicates the number of files included in this response message." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1484
+ <FIELD NAME="INPUT-FILE.1.URI" DESCRIPTION="URI specifying the location where the file of the product is stored." QUALIFIER="OPTIONAL" TYPE="STRING">//TEST/URI</FIELD>
1485
+ <FIELD NAME="INPUT-FILE.1.NAME-PATTERN" DESCRIPTION="Describes the file name." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-NAME-PATTERN</FIELD>
1486
+ <FIELD NAME="INPUT-FILE.1.FORMAT" DESCRIPTION="Describes the file format." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-NAME-FORMAT</FIELD>
1487
+ <FIELD NAME="INPUT-FILE.1.VERSION" DESCRIPTION="Describes the file version." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-NAME-VERSION</FIELD>
1488
+ <FIELD NAME="INPUT-FILE.1.SIZE" DESCRIPTION="Size (in KB) of the included file." QUALIFIER="OPTIONAL" TYPE="SHORT">100</FIELD>
1489
+ <!--Output Product Category-->
1490
+ <FIELD NAME="PROD-NAME" DESCRIPTION="Name of the product." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-PRODUCT</FIELD>
1491
+ <FIELD NAME="PROD-TYPE" DESCRIPTION="Product type being requested. AAA:Archive and Assessment AUTO:Automation FD:Flight Dynamics MAS:Modeling and Simulation PAS:Planning and Scheduling SC:Scripting Control TAC:Telemetry and Command" QUALIFIER="REQUIRED" OPTIONS="AAA,AUTO,FD,MAS,PAS,SC,TAC" TYPE="STRING">AAA</FIELD>
1492
+ <FIELD NAME="PROD-SUBTYPE" DESCRIPTION="Product subtype being requested." QUALIFIER="REQUIRED" TYPE="STRING">MESSAGE</FIELD>
1493
+ <FIELD NAME="NUM-OF-PROD-SUBTYPES" DESCRIPTION="Number of further delineations / categories beyond the product subtype." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1494
+ <FIELD NAME="PROD-SUBTYPE.1.NAME" DESCRIPTION="First subcategory of the product subtype." QUALIFIER="OPTIONAL" TYPE="STRING">SUB1</FIELD>
1495
+ <!--Product Distribution Options-->
1496
+ <FIELD NAME="RESPOND-VIA-MSG" DESCRIPTION="Indicates the message to use to deliver the product. MSG.PROD:Product Message RESP.PROD:Product Response Message" QUALIFIER="REQUIRED" OPTIONS="MSG.PROD,RESP.PROD" TYPE="STRING">MSG.PROD</FIELD>
1497
+ <FIELD NAME="DELIVER-VIA-REFERENCE" DESCRIPTION="Indicates if the product will be referenced by a URI in the message specified above. FALSE:No/False TRUE:Yes/True" QUALIFIER="OPTIONAL" OPTIONS="FALSE,TRUE" TYPE="BOOL">FALSE</FIELD>
1498
+ <FIELD NAME="DELIVER-VIA-INCLUDE" DESCRIPTION="Indicates if the product is to be included in the message specified above. FALSE:No/False TRUE:Yes/True" QUALIFIER="OPTIONAL" OPTIONS="FALSE,TRUE" TYPE="BOOL">TRUE</FIELD>
1499
+ <!--Output File Attributes-->
1500
+ <FIELD NAME="URI" DESCRIPTION="Location where the requesting component is asking for the product file(s) to be stored. Could be a web address, directory or folder specification." QUALIFIER="OPTIONAL" TYPE="STRING">//TEST/URI</FIELD>
1501
+ <FIELD NAME="NAME-PATTERN" DESCRIPTION="Describes the name of the output file." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-FILE</FIELD>
1502
+ <FIELD NAME="FORMAT" DESCRIPTION="Describes the file format." QUALIFIER="OPTIONAL" TYPE="STRING">XML</FIELD>
1503
+ <FIELD NAME="VERSION" DESCRIPTION="Identifies the version of the file." QUALIFIER="OPTIONAL" TYPE="STRING">1</FIELD>
1504
+ <FIELD NAME="SIZE" DESCRIPTION="Maximum size of the file acceptable to the requester (in kilobytes)." QUALIFIER="OPTIONAL" TYPE="LONG">10000</FIELD>
1505
+ </MESSAGE>
1506
+ <!--Generic Product Response Message-->
1507
+ <MESSAGE NAME="PRODUCT-RESPONSE" KIND="RESPONSE" REQUIREMENT="GMSEC.[MISSION].[SAT].RESP.PROD.[COMPONENT].[MSG-ID].[RESPONSE-STATUS]" SUBJECT="GMSEC.TEST-MISSION-ID.SATID.RESP.PROD">
1508
+ <!--GMSEC Information Bus Header-->
1509
+ <!--Message Information-->
1510
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
1511
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">RESP</FIELD>
1512
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">PROD</FIELD>
1513
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
1514
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
1515
+ <!--Middleware Information-->
1516
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
1517
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
1518
+ <!--Mission Information-->
1519
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
1520
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
1521
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
1522
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
1523
+ <!--Component Information-->
1524
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
1525
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
1526
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
1527
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
1528
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
1529
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
1530
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
1531
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
1532
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1533
+ <!--Product Response Message Contents-->
1534
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2006</FIELD>
1535
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MSG-ID</FIELD>
1536
+ <FIELD NAME="RESPONSE-STATUS" DESCRIPTION="Identifies the status of the Product Request Message that was processed. 1:Acknowledgement 2:Working/Keep Alive 3:Successful Completion 4:Failed Completion 5:Invalid Request" QUALIFIER="REQUIRED" OPTIONS="1,2,3,4,5" TYPE="SHORT">3</FIELD>
1537
+ <FIELD NAME="TIME-COMPLETED" DESCRIPTION="Time application completed processing the request." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
1538
+ <FIELD NAME="RETURN-VALUE" DESCRIPTION="Return value or status based on the RESPONSE-STATUS. Used to provide function call status or error code in the case of failed completion." QUALIFIER="OPTIONAL" TYPE="LONG">1</FIELD>
1539
+ <FIELD NAME="PROD-NAME" DESCRIPTION="Name of the product." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-PRODUCT</FIELD>
1540
+ <FIELD NAME="PROD-TYPE" DESCRIPTION="Product type. AAA:Archive and Assessment AUTO:Automation FD:Flight Dynamics MAS:Modeling and Simulation PAS:Planning and Scheduling SC:Scripting Control TAC:Telemetry and Command" QUALIFIER="REQUIRED" OPTIONS="AAA,AUTO,FD,MAS,PAS,SC,TAC" TYPE="STRING">AAA</FIELD>
1541
+ <FIELD NAME="PROD-SUBTYPE" DESCRIPTION="Product subtype being requested." QUALIFIER="REQUIRED" TYPE="STRING">MESSAGE</FIELD>
1542
+ <FIELD NAME="NUM-OF-PROD-SUBTYPES" DESCRIPTION="Number of further delineations / categories beyond the product subtype." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1543
+ <FIELD NAME="PROD-SUBTYPE.1.NAME" DESCRIPTION="First subcategory of the product subtype." QUALIFIER="OPTIONAL" TYPE="STRING">SUB1</FIELD>
1544
+ <!--Output Product Distribution Information-->
1545
+ <FIELD NAME="PROD-MSGS-TO-SEND" DESCRIPTION="Indicates the number of Product Msgs that will be published to satisfy the PROD REQ. A value of '-1' can be used to indicate 'Unknown'." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1546
+ <!--Output File Attributes-->
1547
+ <FIELD NAME="NUM-OF-FILES" DESCRIPTION="Indicates the number of files included in this response message." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1548
+ <FIELD NAME="FILE.1.URI" DESCRIPTION="URI specifying the location where the file of the product is stored." QUALIFIER="OPTIONAL" TYPE="STRING">//TEST/URI</FIELD>
1549
+ <FIELD NAME="FILE.1.NAME-PATTERN" DESCRIPTION="Describes the name of the output file." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-FILE</FIELD>
1550
+ <FIELD NAME="FILE.1.FORMAT" DESCRIPTION="Describes the file format." QUALIFIER="OPTIONAL" TYPE="STRING">XML</FIELD>
1551
+ <FIELD NAME="FILE.1.VERSION" DESCRIPTION="Identifies the version of the file." QUALIFIER="OPTIONAL" TYPE="STRING">1</FIELD>
1552
+ <FIELD NAME="FILE.1.SIZE" DESCRIPTION="Size of the included file (in kilobytes)." QUALIFIER="OPTIONAL" TYPE="SHORT">10000</FIELD>
1553
+ <FIELD NAME="FILE.1.DATA" DESCRIPTION="Maximum size of the file acceptable to the requester (in kilobytes)." QUALIFIER="OPTIONAL" TYPE="BIN">ABBA</FIELD>
1554
+ </MESSAGE>
1555
+ <!--Generic Product Message-->
1556
+ <MESSAGE NAME="PRODUCT-MSG" KIND="PUBLISH" REQUIREMENT="GMSEC.[MISSION].[SAT].MSG.PROD.[COMPONENT of publisher].[PROD-FILE-NAME-PATTERN].[PROD-TYPE].[PROD-SUBTYPE].(PROD-SUBTYPE1)..." SUBJECT="GMSEC.TEST-MISSION-ID.SATID.MSG.PROD">
1557
+ <!--GMSEC Information Bus Header-->
1558
+ <!--Message Information-->
1559
+ <FIELD NAME="HEADER-VERSION" DESCRIPTION="Version number for this message." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
1560
+ <FIELD NAME="MESSAGE-TYPE" DESCRIPTION="Message type identifier. REQ:Request RESP:Response MSG:Message" QUALIFIER="REQUIRED" TYPE="STRING">MSG</FIELD>
1561
+ <FIELD NAME="MESSAGE-SUBTYPE" DESCRIPTION="Unique message identifier, fixed for GMSEC Standard Messages." QUALIFIER="REQUIRED" TYPE="STRING">PROD</FIELD>
1562
+ <FIELD NAME="UNIQUE-ID" DESCRIPTION="Globally unique ID supplied by the API." QUALIFIER="API" TYPE="STRING"/>
1563
+ <FIELD NAME="PUBLISH-TIME" DESCRIPTION="Time the message was published." QUALIFIER="API" TYPE="STRING"/>
1564
+ <!--Middleware Information-->
1565
+ <FIELD NAME="MW-INFO" DESCRIPTION="Container for information on the underlying middleware." QUALIFIER="API" TYPE="STRING"/>
1566
+ <FIELD NAME="CONNECTION-ID" DESCRIPTION="Unique ID for each connection per process." QUALIFIER="API" TYPE="ULONG"/>
1567
+ <!--Mission Information-->
1568
+ <FIELD NAME="MISSION-ID" DESCRIPTION="Unique mission name." QUALIFIER="REQUIRED" TYPE="STRING">TEST-MISSION-ID</FIELD>
1569
+ <FIELD NAME="CONSTELLATION-ID" DESCRIPTION="Used for constellations." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-CONSTELLATION-ID</FIELD>
1570
+ <FIELD NAME="SAT-ID-PHYSICAL" DESCRIPTION="An ID for the satellite that is fixed for its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-PHYSICAL</FIELD>
1571
+ <FIELD NAME="SAT-ID-LOGICAL" DESCRIPTION="An ID for a single or group of satellites that can change during its mission life." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SAT-ID-LOGICAL</FIELD>
1572
+ <!--Component Information-->
1573
+ <FIELD NAME="FACILITY" DESCRIPTION="A physical source generating the message." QUALIFIER="REQUIRED" TYPE="STRING">TEST-FACILITY</FIELD>
1574
+ <FIELD NAME="NODE" DESCRIPTION="Actual device generating the message." QUALIFIER="API" TYPE="STRING"/>
1575
+ <FIELD NAME="PROCESS-ID" DESCRIPTION="Application ID for onboard events or Process ID for ground events." QUALIFIER="API" TYPE="SHORT"/>
1576
+ <FIELD NAME="CLASS" DESCRIPTION="Class/Component relationship and Class/Subclass relationship." QUALIFIER="OPTIONAL" TYPE="STRING">AUTO</FIELD>
1577
+ <FIELD NAME="COMPONENT" DESCRIPTION="Name of software application." QUALIFIER="REQUIRED" TYPE="STRING">TEST-COMPONENT</FIELD>
1578
+ <FIELD NAME="SUBCOMPONENT1" DESCRIPTION="First subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT1</FIELD>
1579
+ <FIELD NAME="SUBCOMPONENT2" DESCRIPTION="Second subsystem level within the component that produced the message." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-SUBCOMPONENT2</FIELD>
1580
+ <FIELD NAME="USER-NAME" DESCRIPTION="Account name or owner of the account that started this component." QUALIFIER="API" TYPE="STRING">USER-NAME</FIELD>
1581
+ <FIELD NAME="ROLE" DESCRIPTION="Role the component is assigned in the configuration. 1:Primary 2:Secondary 3:Tertiary" QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1582
+ <!--Product Message Contents-->
1583
+ <FIELD NAME="CONTENT-VERSION" DESCRIPTION="Version Number for this message content description." QUALIFIER="REQUIRED" TYPE="FLOAT">2007</FIELD>
1584
+ <FIELD NAME="MSG-ID" DESCRIPTION="Unique ID set by the originator for this directive. Can be a sequence number. Aids in synchronizing responses and other messaging related to the specific directive." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-MSG-ID</FIELD>
1585
+ <!--Status of Request-->
1586
+ <FIELD NAME="RESPONSE-STATUS" DESCRIPTION="Identifies that status of the Product message that was processed. 1:Acknowledgement 2:Working/Keep Alive 3:Successful Completion 4:Failed Completion 5:Invalid Request" QUALIFIER="REQUIRED" OPTIONS="1,2,3,4,5" TYPE="SHORT">3</FIELD>
1587
+ <FIELD NAME="TIME-COMPLETED" DESCRIPTION="Time application completed processing the request." QUALIFIER="OPTIONAL" TYPE="STRING">1955-309-06:00:00</FIELD>
1588
+ <FIELD NAME="RETURN-VALUE" DESCRIPTION="Return value or status based on the RESPONSE-STATUS. Used to provide function call status or error code in the case of failed completion." QUALIFIER="OPTIONAL" TYPE="LONG">1</FIELD>
1589
+ <!--Product Distribution Information-->
1590
+ <FIELD NAME="DELIVER-VIA-REFERENCE" DESCRIPTION="Indicates the product is referenced by a URI. A product can be included in a message, referenced by a URI, or both. FALSE:No/False TRUE:Yes/True" QUALIFIER="OPTIONAL" OPTIONS="FALSE,TRUE" TYPE="BOOL">TRUE</FIELD>
1591
+ <FIELD NAME="DELIVER-VIA-INCLUDE" DESCRIPTION="Indicates the product is included in this message. A product can be included in a message, referenced by a URI, or both. FALSE:No/False TRUE:Yes/True" QUALIFIER="OPTIONAL" OPTIONS="FALSE,TRUE" TYPE="BOOL">TRUE</FIELD>
1592
+ <FIELD NAME="PROD-MSGS-TO-SEND" DESCRIPTION="Indicates the number of PROD Msgs that will be published to satisfy the PROD REQ." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1593
+ <FIELD NAME="PROD-SEQ-NUM" DESCRIPTION="Indicates which message this is in the sequence of PROD Msgs that constitutes a product." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1594
+ <!--Product Category-->
1595
+ <FIELD NAME="PROD-NAME" DESCRIPTION="Name of the product." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-PRODUCT</FIELD>
1596
+ <FIELD NAME="PROD-TYPE" DESCRIPTION="Category of product. AAA:Archive and Assessment AUTO:Automation FD:Flight Dynamics MAS:Modeling and Simulation PAS:Planning and Scheduling SC:Scripting Control TAC:Telemetry and Command" QUALIFIER="REQUIRED" OPTIONS="AAA,AUTO,FD,MAS,PAS,SC,TAC" TYPE="STRING">AAA</FIELD>
1597
+ <FIELD NAME="PROD-SUBTYPE" DESCRIPTION="Product subtype being requested." QUALIFIER="REQUIRED" TYPE="STRING">MESSAGE</FIELD>
1598
+ <FIELD NAME="NUM-OF-PROD-SUBTYPES" DESCRIPTION="Number of further delineations / categories beyond the product subtype." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1599
+ <FIELD NAME="PROD-SUBTYPE.1.NAME" DESCRIPTION="First subcategory of the product subtype." QUALIFIER="OPTIONAL" TYPE="STRING">SUB1</FIELD>
1600
+ <!--Product Properties-->
1601
+ <FIELD NAME="NUM-OF-FILES" DESCRIPTION="Indicates the number of files included in this response message." QUALIFIER="OPTIONAL" TYPE="SHORT">1</FIELD>
1602
+ <FIELD NAME="FILE.1.URI" DESCRIPTION="URI specifying the location where the file of the product is stored." QUALIFIER="OPTIONAL" TYPE="STRING">//TEST/URI</FIELD>
1603
+ <FIELD NAME="FILE.1.NAME-PATTERN" DESCRIPTION="Describes the name of the output file." QUALIFIER="OPTIONAL" TYPE="STRING">TEST-FILE</FIELD>
1604
+ <FIELD NAME="FILE.1.FORMAT" DESCRIPTION="Describes the file format." QUALIFIER="OPTIONAL" TYPE="STRING">XML</FIELD>
1605
+ <FIELD NAME="FILE.1.VERSION" DESCRIPTION="Identifies the version of the file." QUALIFIER="OPTIONAL" TYPE="STRING">1</FIELD>
1606
+ <FIELD NAME="FILE.1.SIZE" DESCRIPTION="Size of the included file (in kilobytes)." QUALIFIER="OPTIONAL" TYPE="SHORT">10000</FIELD>
1607
+ <FIELD NAME="FILE.1.DATA" DESCRIPTION="Maximum size of the file acceptable to the requester (in kilobytes)." QUALIFIER="OPTIONAL" TYPE="BIN">ABBA</FIELD>
1608
+ </MESSAGE>
1609
+ </DEFINITIONS>