Credential templates

Pre-built schemas for common issuers

Use these as-is or clone them in the dashboard. Each template defines default attributes, presentation methods, and NFC capabilities.

Staff ID (Employee Badge)

Access control, payroll, internal authorization.

{
  "credential_type": "staff_id",
  "template": {
    "issuer_name": "Acme Corporation",
    "attributes": [
      "employee_id",
      "name",
      "department",
      "access_levels",
      "employment_type",
      "manager_name",
      "start_date",
      "end_date"
    ],
    "presentation_methods": ["nfc", "qr", "api"],
    "nfc_enabled": true,
    "expires_at": "2026-12-31"
  }
}
  • Tap to unlock doors, parking barriers, or security checkpoints.
  • Works with Nexiel NFC reader SDK or any REST verifier.

Educational Certificate (Diploma)

Degree verification, employer background checks, licensing.

{
  "credential_type": "educational_cert",
  "template": {
    "issuer_name": "University College Dublin",
    "attributes": [
      "student_name",
      "degree_type",
      "field_of_study",
      "graduation_date",
      "gpa",
      "honours",
      "issuing_institution"
    ],
    "presentation_methods": ["qr", "api"],
    "nfc_enabled": false,
    "never_expires": true
  }
}
  • Employers request via `/v1/verify` and receive attested degree data.

Gym / Venue Membership

Fitness centers, clubs, sports venues.

{
  "credential_type": "gym_membership",
  "template": {
    "issuer_name": "FitLife Gym Dublin",
    "attributes": [
      "member_name",
      "membership_tier",
      "membership_id",
      "start_date",
      "end_date",
      "access_facilities"
    ],
    "presentation_methods": ["nfc", "qr"],
    "nfc_enabled": true,
    "expires_at": "2026-01-31"
  }
}
  • Tap phone on turnstile to enter; webhook logs every visit.

Student ID

University campuses, schools, lab/library access.

{
  "credential_type": "student_id",
  "template": {
    "issuer_name": "Trinity College Dublin",
    "attributes": [
      "student_name",
      "student_number",
      "programme",
      "year_of_study",
      "enrollment_status",
      "start_date",
      "end_date"
    ],
    "presentation_methods": ["nfc", "qr"],
    "nfc_enabled": true,
    "expires_at": "2026-06-30"
  }
}
  • Tap for library, labs, cafeteria discounts.

Hotel Key / Room Access

Hotels, rentals, coworking spaces.

{
  "credential_type": "hotel_key",
  "template": {
    "issuer_name": "The Gresham Hotel Dublin",
    "attributes": [
      "guest_name",
      "room_number",
      "check_in_date",
      "check_out_date",
      "room_type",
      "reservation_id"
    ],
    "presentation_methods": ["nfc"],
    "nfc_enabled": true,
    "expires_at": "2025-01-20T12:00:00Z"
  }
}
  • Tap to unlock door locks; access revokes automatically at check-out.

Public Transit Pass

Bus, rail, tram networks, stored-value passes.

{
  "credential_type": "transit_pass",
  "template": {
    "issuer_name": "Dublin Bus + Irish Rail",
    "attributes": [
      "cardholder_name",
      "pass_type",
      "valid_zones",
      "start_date",
      "end_date",
      "remaining_balance"
    ],
    "presentation_methods": ["nfc", "qr"],
    "nfc_enabled": true,
    "expires_at": "2025-02-28"
  }
}
  • Tap on bus validators, train turnstiles, or integrate with mobile ticketing apps.