OBJECT

StructuredData

link GraphQL Schema definition

1type StructuredData {
2
3# The ID
4id: ID!
5
6# Id of the schema used to validate this object
7schemaId: ID!
8
9# The schema used to validate this object
10schema: Schema
11
12# Arguments
13# path: Optionally, specify a path into the JSON data.
14# Only the value of the path will be returned, at the
15# top level. The value will be empty if there is nothing
16# in the JSON at that path.
17# This parameter is useful for directly addressing fields in the JSON.
18data(path: String): JSONData
19
20dataString(indent: Int): String
21
22createdDateTime: DateTime
23
24modifiedDateTime: DateTime
25
26}