releases/openstack_releases/liaisons_schema.yaml
Thierry Carrez 08cf70cbc6 Fix regression in list-changes
Recent merging of the liaison-loading code in list-changes makes
most list-changes job fail due to error in YAML loading code.

Beyond that YAML loading issue, the code assumes getting a dictionary
with team names as keys and an array of liaisons dictionary as values.
Fix the release_liaisons.yaml and schema to match.

Change-Id: I94fa41862d37aaf0535d64afd00b2bd55bb4649a
2019-06-20 17:52:13 +02:00

24 lines
489 B
YAML

---
$schema: "http://json-schema.org/schema#"
$id: "https://opendev.org/openstack/releases/src/branch/master/README.rst"
# Do not allow any properties not defined here. This lets us catch
# typos.
type: "object"
additional_properties:
type: "array"
items:
type: "object"
additionalProperties: false
required:
- irc
- email
properties:
name:
type: "string"
irc:
type: "string"
email:
type: "string"