OBJECT

KVP

Key-value pairs -- a generic way to represent metadata

link GraphQL Schema definition

1type KVP implements Metadata {
2
3name: String!
4
5value: [Property]
6
7}