All Downloads are FREE. Search and download functionalities are using the official Maven repository.

defs.main-tests.source.idltest.jsonlike.domain Maven / Gradle / Ivy

The newest version!
domain idltest.json

adt JSONLike
  = JLObject
  | JLArray
  | JLString
  | JLNumber
  | JLBool
  | JLNull

data JLNull {}

data JLObject {
  fields: map[str, JSONLike]
}

data JLArray {
  values: list[JSONLike]
}

data JLString {
  value: str
}

data JLNumber {
  value: f64
}

data JLBool {
  value: bit
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy