{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://pgxn.org/meta/v2/term.schema.json",
"title": "Term",
"description": "A *Term* is a string that **MUST** be at least two characters long, and contain no slash (`/`), backslash (`\\`), dot (.), control, or space characters.",
"type": "string",
"minLength": 2,
"pattern": "^[^./\\\\\\p{Space}\\p{Cntrl}]{2,}$",
"examples": ["hi", "go-on", "pg_vectorize"]
}