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
25encryptedProperties: [String]
26
27queryExcludedProperties: [String]
28
29# List of status the Schema can transition to.
30validActions: [SchemaAction]
31
32# SDOs under this schema
33structuredDataObjects(offset: Int, limit: Int): StructuredDataList
34
35# The organization that owns this schema.
36organization: OrganizationInfo
37
38# The Id of the organization that owns this schema.
39organizationId: ID
40
41}