Validate an open.rooster document
Check any open.rooster.cv or open.rooster.jobs JSON document against the official v0.1 schemas. Validation runs entirely in your browser, and nothing is uploaded.
or
Validate from your own code
The same validators are exposed as a public API, so integrations never need to vendor the schemas:
# Resumes
curl -X POST https://roostercv.com/api/validate/cv \
-H "Content-Type: application/json" --data @resume.open-rooster-cv.json
# Job postings
curl -X POST https://roostercv.com/api/validate/jobs \
-H "Content-Type: application/json" --data @posting.open-rooster-jobs.jsonResponses return valid plus field-level issues. Schemas and reference validators live in the open open-rooster GitHub org.