{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "ProfileEntity",
  "type": "object",
  "description": "Version v1 - ProfileEntity",
  "additionalProperties": true,
  "properties": {
    "entity_id": {
      "type": "string",
      "description": "Entity id."
    },
    "entity_type": {
      "type": "string",
      "enum": [
        "PLACE",
        "ADDRESS"
      ],
      "description": "PLACE | ADDRESS"
    }
  },
  "required": [
    "entity_id",
    "entity_type"
  ]
}