{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "o-www-o Source Entry",
  "type": "object",
  "required": [
    "slug",
    "target_url",
    "title"
  ],
  "properties": {
    "slug": {
      "type": "string"
    },
    "target_url": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "role": {
      "type": "string"
    },
    "state": {
      "type": "string",
      "default": "o-www-o"
    },
    "confidence": {
      "type": "string",
      "enum": [
        "low",
        "medium",
        "high",
        "unverified"
      ]
    },
    "topic": {
      "type": "string"
    },
    "created_at": {
      "type": "string"
    },
    "notes": {
      "type": "string"
    }
  }
}