2018-04-19 21:02:36 -04:00
|
|
|
---
|
|
|
|
$schema: "http://json-schema.org/schema#"
|
2019-04-15 14:23:37 -05:00
|
|
|
$id: "https://opendev.org/openstack/releases/src/branch/master/README.rst"
|
2018-04-19 21:02:36 -04:00
|
|
|
|
|
|
|
# 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:
|
2018-07-30 12:26:35 -05:00
|
|
|
- future
|
2018-04-19 21:02:36 -04:00
|
|
|
- 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:
|
2018-07-30 12:26:35 -05:00
|
|
|
- future
|
2018-04-19 21:02:36 -04:00
|
|
|
- development
|
|
|
|
- maintained
|
|
|
|
- extended maintenance
|
|
|
|
- unmaintained
|
|
|
|
- end of life
|
|
|
|
date:
|
|
|
|
type: "date"
|