pgxn_meta 0.7.0

The PGXN distribution metadata specification
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://pgxn.org/meta/v2/release.schema.json",
  "title": "Release",
  "description": "Extends the distribution schema to add signed PGXN release metadata.",
  "type": "object",
  "unevaluatedProperties": false,
  "allOf": [
    { "$ref": "base.schema.json" },
    {
      "properties": {
        "certs": { "$ref": "certs.schema.json" }
      },
      "required": ["certs"]
    }
  ]
}