OBJECT

PlatformVersion

PlatformVersion

link GraphQL Schema definition

1type PlatformVersion {
2
3# Unique Identifier for the aiWare platform version.
4id: ID!
5
6# The platform version
7version: String!
8
9# The version manifest file location.
10manifestUrl: String!
11
12# The version change log file location.
13changeLogUrl: String!
14
15# The version highlight file location.
16highlightsUrl: String!
17
18# The original version manifest file location.
19originalManifestUrl: String!
20
21# The version change log file location.
22originalChangeLogUrl: String!
23
24# The original version highlight file location.
25originalHighlightsUrl: String!
26
27# The unique identifier the user or token that originally created the version
28createdBy: String!
29
30# The time in UTC when the version was created
31createdAt: DateTime!
32
33# The unique identifier the user or token that installed the version
34installedBy: String
35
36# The time in UTC when the version was installed
37installedAt: DateTime
38
39}