# JSON Metadata

The JSON metadata defines the badge's attributes, such as its name, description, image, and criteria. It helps visually represent the badge and provides context, like the number of events engaged in or the date issued.

Here's the JSON structure formatted for docs.&#x20;

```json
{
  "sip": 16,
  "name": "Community Engagement #",
  "description": "",
  "image": "ipfs://ipfs/<image_hash>",
  "attributes": [
    {
      "trait_type": "user_id",
      "value": ""
    },
    {
      "trait_type": "engagement_type",
      "value": "<post, comment, share>"
    },
    {
      "trait_type": "engagement_timestamp",
      "value": ""
    },
    {
      "trait_type": "engagement_value",
      "value": "<likes, replies>"
    }
  ]
}
```

Feel free to replace the placeholders (like `<image_hash>`, `<post, comment, share>`, and `<likes, replies>`) with the actual data you plan to use!


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.zeroauthority.xyz/the-dao/standard-reputation-framework/json-metadata.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
