OBJECT

DataRegistry

link GraphQL Schema definition

1type DataRegistry {
2
3id: ID!
4
5name: String
6
7description: String
8
9source: String
10
11schemas(
12status: [SchemaStatus],
13majorVersion: Int,
14id: ID,
15offset: Int,
16limit: Int,
17orderBy: [SchemaOrder]
18): SchemaList
19
20# The organization that owns this data registry.
21organization: OrganizationInfo
22
23organizationId: ID
24
25createdBy: User
26
27modifiedBy: User
28
29createdDateTime: DateTime
30
31modifiedDateTime: DateTime
32
33# The currently published schema version for convenient access.
34# This field will be empty if there is no published schema.
35publishedSchema: Schema
36
37ingestionToken: String
38
39isPublic: Boolean
40
41}