Yamcs HTTP API
- Activities
- Alarms
- Audit
- Buckets
- Clearance
- Commands
- COP-1
- Database
- Events
- File Transfer
- IAM
- Indexes
- Instances
- Links
- MDB Override
- MDB
- Get Mission Database
- Export Java Mission Database
- List Space Systems
- Get Space System
- Export Xtce
- Stream Mission Database
- List Parameters
- Get Parameter
- Create Parameter
- Batch Get Parameters
- List Parameter Types
- Get Parameter Type
- Create Parameter Type
- List Containers
- Get Container
- List Commands
- Get Command
- List Algorithms
- Get Algorithm
- Packets
- Parameter Archive
- Parameter Lists
- Parameter Values
- Processing
- Queues
- Replication
- RocksDB
- Server
- Services
- Sessions
- Stream Archive
- Table
- Time Correlation
- Time
- Timeline
Related
Yamcs Release Notes
Yamcs Server Manual
Source Code Documentation
Download this Document
Get Space SystemΒΆ
Get a space system
URI Template
GET /api/mdb/{instance}/space-systems/{name*}
{instance}
Yamcs instance name.
{name*}
Space-system name.
Response Type
interface SpaceSystemInfo {
// Space system name
name: string;
qualifiedName: string;
// Short description (one line)
shortDescription: string;
// Long description (Markdown)
longDescription: string;
alias: NamedObjectId[];
version: string;
history: HistoryInfo[];
sub: SpaceSystemInfo[];
ancillaryData: {[key: string]: AncillaryDataInfo};
}
Related Types
// Used by external clients to identify an item in the Mission Database
// If namespace is set, then the name is that of an alias, rather than
// the qualified name.
interface NamedObjectId {
name: string;
namespace: string;
}
interface HistoryInfo {
version: string;
date: string;
message: string;
author: string;
}