Contract.sv Template Reference

Agreemint.click can parse custom templates with the appropriate data structure to be used with the Agreemint.click interface. You can download one of the example templates below:

JSON

JSON is a structured data format that is both human-readable and machine-parsable. Here is an example of a basic JSON file structure:

{
  "variable": "value",
  "object": {
    "variable": "value",
    "array": [
      "array 0 value",
      "array 1 value",
      "array 2 value"
    ],
    "numberVariable": 45.000
  },
  "array": [
    "item 1",
    "item 2"
  ]
}

When editing JSON files for Contract.sv templates, please adhere to these essential guidelines:

  1. Commas function as separators and must be placed after every variable, object, and array, except for the final element in a collection.
  2. For every opening character, there must be a corresponding closing character.
  3. Text values must always be enclosed in quotation marks.
  4. Line breaks are not permitted within variable values.
  5. Maintain consistent formatting with proper indentation.