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