releases/openstack_releases/series_status_schema.yaml
Sean McGinnis 22f923d104
Add stein to docs landing page
Include stein in the index page list. This also adds support for
a "future" status since validation was add/changed since the
start of the last cycle.

Change-Id: Ie1fc997c1f5f0f3c6af1d048fcc4b25a4608e70f
Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
2018-07-30 12:26:35 -05:00

50 lines
1.0 KiB
YAML

---
$schema: "http://json-schema.org/schema#"
$id: "http://git.openstack.org/cgit/openstack/releases/tree/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"