pgxn_meta 0.7.0

The PGXN distribution metadata specification
Documentation
1
2
3
4
5
6
7
8
9
10
{
  "$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"]
}