{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "client": {
      "type": "string"
    },
    "logo": {
      "type": "string"
    },
    "industry": {
      "type": "string"
    },
    "summary": {
      "type": "string"
    },
    "result": {
      "type": "string"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "$schema": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "client",
    "logo",
    "industry",
    "summary",
    "result",
    "tags"
  ]
}