OBJECT

Schema

link GraphQL Schema definition

1type Schema {
2
3id: ID!
4
5dataRegistryId: ID!
6
7dataRegistry: DataRegistry
8
9definition: JSONData
10
11majorVersion: Int!
12
13minorVersion: Int!
14
15createdBy: User
16
17modifiedBy: User
18
19createdDateTime: DateTime
20
21modifiedDateTime: DateTime
22
23status: SchemaStatus
24
25# List of status the Schema can transition to.
26validActions: [SchemaAction]
27
28# SDOs under this schema
29structuredDataObjects(offset: Int, limit: Int): StructuredDataList
30
31# The organization that owns this schema.
32organization: OrganizationInfo
33
34# The Id of the organization that owns this schema.
35organizationId: ID
36
37}