

  {"annotations":[{"name":"param","description":"Documents an argument the partial accepts.\n\n- The type is optional, and is one of `array`, `boolean`, `date`, `number`, `object`, `string`, `time`,\n  any of those with a `[]` suffix for an array of them, or the name of an object from the\n  [objects reference](https://documentation.platformos.com/api-reference/liquid/platformos-objects).\n- An optional argument is written with square brackets around its name.\n- The description is optional Markdown, separated from the name by a `-`.","example":"{% doc %}\n  @param {string} name - The person's name\n  @param {number} [fav_num] - The person's favorite number\n  @param {time} last_seen - When they were last active\n  @param {current_user} user - The signed-in user\n{% enddoc %}\n"},{"name":"example","description":"Shows how the partial is called. Repeat the annotation to give more than one example.","example":"{% doc %}\n  @example\n  {% render 'partial-name', arg1: 'value' %}\n{% enddoc %}\n"},{"name":"description","description":"Describes what the partial does. Free-form Markdown, and the text before the first annotation\nis read the same way, so a docblock does not need this annotation to carry a description.","example":"{% doc %}\n  @description This partial renders a user avatar.\n{% enddoc %}\n"}],"param_types":[{"name":"array","description":"A generic type used to represent an array of any values."},{"name":"boolean","description":"A `true` or `false` value."},{"name":"date","description":"A date, such as the value `to_date` returns."},{"name":"number","description":"A numeric value, whole or fractional."},{"name":"object","description":"A generic type used to represent any liquid object or primitive value."},{"name":"string","description":"A text value."},{"name":"time","description":"A point in time, such as the value `to_time` returns."}]}

