{
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "amount": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
    "previousAmount": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
    "price": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
    "previousPrice": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
    "timeStamp": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
    "activityType": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
    "seller": {
      "anyOf": [
        {
          "type": "object",
          "properties": {
            "id": { "type": "string" },
            "handle": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
          },
          "required": ["id"]
        },
        { "type": "null" }
      ]
    },
    "buyer": {
      "anyOf": [
        {
          "type": "object",
          "properties": {
            "id": { "type": "string" },
            "handle": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
          },
          "required": ["id"]
        },
        { "type": "null" }
      ]
    }
  },
  "required": ["id"],
  "x-readme-ref-name": "Activity"
}
