{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "list_domls response",
  "type": "object",
  "properties": {
    "count": { "type": "integer", "description": "Number of matches returned (capped at 50)." },
    "domls": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": { "type": "string" },
          "title": { "type": "string" },
          "summary": { "type": "string" },
          "domainTags": { "type": "array", "items": { "type": "string" } }
        },
        "required": ["id", "title", "domainTags"]
      }
    }
  },
  "required": ["count", "domls"]
}
