{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://developer.reits.tech/schemas/contracts/v1/developer-app.v1.schema.json",
  "title": "DeveloperApp",
  "type": "object",
  "additionalProperties": false,
  "required": ["id", "appKey", "name", "kind", "appType", "status", "ownerId", "revision"],
  "properties": {
    "id": { "type": "integer", "minimum": 1 },
    "appKey": { "type": "string", "pattern": "^app_[A-Za-z0-9_-]+$" },
    "name": { "type": "string", "minLength": 1, "maxLength": 120 },
    "kind": { "type": "string", "enum": ["miniapp", "bot"] },
    "appType": { "type": "string", "enum": ["ordinary", "enterprise"] },
    "status": { "type": "string", "enum": ["draft", "submitted", "approved", "rejected", "live", "suspended", "deleted"] },
    "ownerId": { "type": "string", "minLength": 1, "maxLength": 128 },
    "revision": { "type": "integer", "minimum": 1 }
  }
}
