I have type for example "animal" and keys for this object can be any, but values always by type String, for example on one response I can get:
type Animal {
breed: String
eyes: String
}
for other response:
type Animal {
something: String
somethingElse: String
someOtherField: String
}
Is it possible to describe this object somehow?
type Animal {
// how i can describe this object?
}
type General {
name: String
example: Animal
}