Skip to content

Commit 7f53b35

Browse files
hugovkAA-Turner
andauthored
Include the schema
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
1 parent fa1533a commit 7f53b35

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

peps/api/index.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,23 @@ release-cycle.json
112112
There is a read-only JSON document of Python releases since version 2.6
113113
available at https://peps.python.org/api/release-cycle.json.
114114

115+
Each feature version is represented as a JSON object,
116+
keyed by the minor version number ("X.Y").
117+
The structure of each JSON object is as follows:
118+
119+
.. code-block:: typescript
120+
121+
{
122+
"<language version number>": {
123+
"branch": string,
124+
"pep": integer,
125+
"status": 'feature' | 'prerelease' | 'bugfix' | 'security' | 'end-of-life',
126+
"first_release": string, // Date formatted as YYYY-MM-DD
127+
"end_of_life": string, // Date formatted as YYYY-MM-DD
128+
"release_manager": string
129+
},
130+
}
131+
115132
For example:
116133

117134
.. code-block:: json

0 commit comments

Comments
 (0)