{
  "type": "object",
  "required": ["name", "city", "address", "latitude", "longitude"],
  "properties": {
    "id": {
      "type": "integer"
    },
    "name": {
      "type": "string",
      "maxLength": 255
    },
    "city": {
      "type": "string",
      "maxLength": 255
    },
    "address": {
      "type": "string",
      "maxLength": 255
    },
    "latitude": {
      "type": "number"
    },
    "longitude": {
      "type": "number"
    },
    "url": {
      "anyOf": [
        {
          "type": "string",
          "maxLength": 255,
          "format": "url"
        },
        {
          "type": "string",
          "enum": [
            ""
          ]
        }
      ]
    },
    "description": {
      "type": "string"
    },
    "acceptsNewMembers": {
      "type": "string",
      "maxLength": 255
    },
    "foundedAtYear": {
      "type": "number"
    },
    "foundedAtMonth": {
      "type": "number"
    },
    "maximumMembers": {
      "type": "number"
    },
    "additionalProductInformation": {
      "type": "string"
    },
    "participation": {
      "type": "string"
    },
    "actsEcological": {
      "type": "boolean"
    },
    "economicalBehavior": {
      "type": "string"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}
