{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Eviulon cross-implementation package-exchange profile",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "id",
    "packageType",
    "context",
    "packageSha256",
    "implementationClasses",
    "independentCertification",
    "truthBoundary"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "packageType": {
      "type": "string"
    },
    "context": {
      "type": "string"
    },
    "packageSha256": {
      "type": "string",
      "pattern": "^[0-9a-f]{64}$"
    },
    "implementationClasses": {
      "type": "array",
      "minItems": 6
    },
    "independentCertification": {
      "const": false
    },
    "truthBoundary": {
      "type": "string"
    }
  }
}
