{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://developer.reits.tech/schemas/contracts/v1/release-candidate.v1.schema.json",
  "title": "ReleaseCandidate",
  "type": "object",
  "additionalProperties": false,
  "required": ["releaseId", "appId", "versionCode", "versionName", "artifact", "status", "createdAt"],
  "properties": {
    "releaseId": { "type": "string", "minLength": 8, "maxLength": 128 },
    "appId": { "type": "integer", "minimum": 1 },
    "versionCode": { "type": "integer", "minimum": 1 },
    "versionName": { "type": "string", "minLength": 1, "maxLength": 64 },
    "artifact": {
      "type": "object",
      "additionalProperties": false,
      "required": ["url", "assetId", "sha256"],
      "properties": {
        "url": { "type": "string", "format": "uri" },
        "assetId": { "type": "string", "minLength": 1, "maxLength": 128 },
        "sha256": { "type": "string", "pattern": "^[a-f0-9]{64}$" }
      }
    },
    "status": { "type": "string", "enum": ["draft", "uploaded", "scanning", "review", "rejected", "approved", "live", "rolled_back"] },
    "createdAt": { "type": "string", "format": "date-time" }
  }
}
