{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://example.com/schemas/p6-customer-v2-breaking.json",
  "title": "P6 Customer",
  "type": "object",
  "required": [
    "id",
    "name",
    "tenantId"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "minimum": 1
    },
    "name": {
      "type": "string",
      "minLength": 1
    },
    "tenantId": {
      "type": "string"
    }
  },
  "additionalProperties": false
}
