releases/openstack_releases/series_status_schema.yaml
Sean McGinnis 7450ab3a71 Drop references to git.openstack.org
Updates to use opendev.org or published documentation.

Change-Id: I0bd488b25d1259bce3f723a6c58283fdf670e721
Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
2019-04-15 14:25:18 -05:00

50 lines
1.0 KiB
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.
additionalProperties: false
type: "array"
items:
type: "object"
additionalProperties: false
required:
- name
- status
properties:
name:
type: "string"
status:
type: "string"
enum:
- future
- development
- maintained
- extended maintenance
- unmaintained
- end of life
initial-release:
type: "date"
eol-date:
type: "date"
next-phase:
type: "object"
additionalProperties: false
properties:
required:
- status
- date
status:
type: "string"
enum:
- future
- development
- maintained
- extended maintenance
- unmaintained
- end of life
date:
type: "date"