From ee686837ee1eef8da1c717624b50184a7cb5342f Mon Sep 17 00:00:00 2001
From: Robert Sparks Framework API
to generate an API which mirrors the Django ORM (Object Relational Mapping)
for the database. Each Django model class maps down to the SQL database
tables and up to the API. The Django models classes are defined in the
- models.py files of the datatracker:
-
- https://svn.ietf.org/svn/tools/ietfdb/trunk/ietf/doc/models.py
-
- https://svn.ietf.org/svn/tools/ietfdb/trunk/ietf/group/models.py
-
- http://svn.ietf.org/svn/tools/ietfdb/trunk/ietf/iesg/models.py
-
- …
-
+ models.py files of the datatracker. Browse the code tree
+ for the models file in each app (such as ietf/doc/models.py,
+ ietf/group/models.py, …).
- The API top endpoint is at https://datatracker.ietf.org/api/v1/. The top endpoint lists inferior endpoints, and thus permits some autodiscovery, but there's really no substitute for looking at the actual ORM model classes. @@ -45,7 +35,7 @@