Overview
The Inscrito content type manages confirmed participant records for races and events. Unlike Inscripcion (which tracks payment processing), Inscrito represents final, confirmed participants with validated information.This is a collection type with draft and publish enabled. Participants can be reviewed before being made public.
Schema Information
- Collection Name:
inscritos - Singular:
inscrito - Plural:
inscritos - Draft & Publish: Enabled
Attributes
nombreCompleto
Full name of the confirmed participant.
- Required field
- Free text format
- Must be provided for all participants
rut
Chilean national identification number (RUT).
- Required field
- Format: XX.XXX.XXX-X
- Must include verification digit
- Used as unique identifier for participants
edad
Age of the participant.
- Required field
- Minimum: 3
- Maximum: 99
- Used for category eligibility validation
categoria
Race category classification.
- Required field
- Allowed values:
Infantil: Youth categoryExperto: Expert ridersEnduro: Enduro categoryElite: Elite/professional levelMaster A: Master A age groupMaster B: Master B age group
- Must be one of the predefined values
tipo
Registration type classification.
- Required field
- Allowed values:
Open: Open category participantsFederado: Federated/licensed riders
- Determines race rules and eligibility
API Endpoints
List All Participants
Array of participant entries
Get Single Participant
Create Participant
Update Participant
Delete Participant
Query Parameters
Filter by Category
Filter by Type
Filter by Age Range
Sorting
Pagination
Publication State
Example Response
Categories Explained
Infantil
Youth category for younger participants. Typically ages 3-15.
Experto
Expert riders with advanced skills. Intermediate to advanced level.
Enduro
Enduro-specific category for technical downhill and climbing sections.
Elite
Elite/professional level riders. Highest competitive category.
Master A
Master A age group, typically 30-39 years old.
Master B
Master B age group, typically 40+ years old.
Registration Types
Open
Open category participants who are not affiliated with a federation. Generally:- No license required
- Open to recreational riders
- May have different rules or start times
Federado
Federated/licensed riders who are:- Registered with a cycling federation
- Hold a valid racing license
- Compete under federation rules
- May be eligible for ranking points
Validation Rules
All fields are required. The system enforces the following validations:
- nombreCompleto: Must not be empty
- rut: Must not be empty, validate format on client
- edad: Must be between 3 and 99 (inclusive)
- categoria: Must be one of: Infantil, Experto, Enduro, Elite, Master A, Master B
- tipo: Must be either Open or Federado
Relationship with Inscripcion
While Inscripcion handles the payment and registration process, Inscrito represents confirmed participants:Typically, an Inscrito record is created only after successful payment confirmation in the Inscripcion flow.
Best Practices
Validate RUT
Always validate RUT format and verification digit before creating participant records to maintain data integrity.
Age Verification
Validate that participant age falls within the allowed range (3-99) and matches their selected category.
Category Rules
Implement category eligibility rules based on age and rider type to ensure proper classification.
Draft Review
Use draft mode to review participant information before publishing to participant lists.
Duplicate Prevention
Check for duplicate RUT values before creating new participants to prevent double registrations.
Bulk Operations
Use pagination and filtering for efficient bulk operations when managing large participant lists.
