Object (Data Type) - MerchantCalico/bovines-and-buttercups-archive GitHub Wiki

An Object is a data type that accepts multiple fields encased inside braces ({ and }). What these fields are are defined by the type itself.

Example

{
  "foo": "bar",
  "int": 2
}

This is an example which contains a String named foo with a value of bar and an Integer named int with a value of 2.