API Reference ============= Generator --------- .. autoclass:: cnctdocs.generators.ConnectSchemaGenerator :members: Schema ------ .. autoclass:: cnctdocs.generators.ConnectAutoSchema :members: Inspectors ---------- Headers ^^^^^^^ .. autoclass:: cnctdocs.inspectors.HeaderInspector :members: Parameters ^^^^^^^^^^ .. autoclass:: cnctdocs.inspectors.ParameterInspector :members: Filters ^^^^^^^ .. autoclass:: cnctdocs.inspectors.FilterInspector :members: Paginators ^^^^^^^^^^ .. autoclass:: cnctdocs.inspectors.PaginatorInspector :members: Serializers ^^^^^^^^^^^ .. autoclass:: cnctdocs.inspectors.SerializerInspector :members: .. autoexception:: cnctdocs.inspectors.IntrospectionImportError .. autoexception:: cnctdocs.inspectors.IntrospectionInvokeError Responses ^^^^^^^^^ .. autoclass:: cnctdocs.inspectors.ResponseInspector :members: Registries ---------- Tags ^^^^ .. autoclass:: cnctdocs.registries.TagsRegistry :members: Components ^^^^^^^^^^ .. autoclass:: cnctdocs.registries.ComponentsRegistry :members: Utilities --------- Decorator ^^^^^^^^^ .. autodecorator:: cnctdocs.utils.schema_method Rendering ^^^^^^^^^ .. autofunction:: cnctdocs.utils.render Merging ^^^^^^^ .. autofunction:: cnctdocs.utils.merge_schemas .. autoexception:: cnctdocs.utils.MergeConflictError Settings -------- Settings are configurable in settings.py by defining DRF_CONNECT_DOCS. Example: settings.py .. code-block:: python DRF_CONNECT_DOCS = { 'SCHEMA_INFO': { 'title': 'Public API', 'version': '1', 'description': '**This is a description in markdown**', }, ... } SCHEMA_INFO ^^^^^^^^^^^ The `SCHEMA_INFO` setting allow to customize the **info object** of the OpenAPI definitions. Please refers to the `OpenAPI 3 specifications `_ for more details. SCHEMA ^^^^^^ The `SCHEMA` setting allow to add manual definitions to the generated file. It consists of the following sections: servers """"""" The `servers` section allow to list the api base url for each available environment (dev, staging, prod, etc). It defaults to an empty list. Example: .. code-block:: python 'servers': [ { 'url': 'https://api.connect.cloudblue.com/public/v1', 'name': 'Production', 'description': 'This is the production server base url' }, ], Please read the `**server object** documentation `_ for more information. security_schemes """""""""""""""" It allow to specify a list of security schemes that the application supports. It defaults to an empty list. Example: .. code-block:: python 'security_schemes': [ { 'type': 'apiKey', 'in': 'header', 'name': 'Authorization', }, ], Please read the `security scheme object documentation `_ for more information. tags """" It allow to define tags in order to groups views and their operations logically. In this section, it is possible to declare tags with its name, description and optional external documentation. It defaults to an empty list. Example: .. code-block:: python 'tags': [ { 'name': 'Subscriptions', 'description': 'Review, test and manage subscriptions of products ' 'with the Subscriptions Management endpoints.', }, ], To add a view to a tag, you must specify the `schema_tag` attribute inside the view. Please refers to the :ref:`guide:Groups operations with tags` section of the :ref:`guide:User guide` for more information. default_request_headers """"""""""""""""""""""" Since there is no way to introspect views to determine request headers the application expect, they can be declared using the `default_request_headers` section in order to be added to each view. The headers declared in the `default_request_headers` can be overridden on a per-view basis. It defaults to an empty dictionary. Example: .. code-block: python 'default_request_headers': { 'list': { 'X-List-Is-An-Action': { 'schema': { 'type': 'string', }, 'description': 'this header will be expected by all `list` requests.', }, }, 'get': { 'X-Get-Is-Cool': { 'schema': { 'type': 'string', }, 'description': 'this header will be expected by all GET requests.', }, }, '': { 'X-Correlation-ID': { 'schema': { 'type': 'string', }, 'description': 'this header will be expected by all requests.' }, }, }, See :ref:`guide:Headers` section of the :ref:`guide:User guide`. Please refers to the `parameter object documentation `_ for more information. default_response_headers """""""""""""""""""""""" Since there is no way to introspect views to determine response headers the application returns, they can be declared using the `default_response_headers` section in order to be added to each view. The headers declared in the `default_response_headers` can be overridden on a per-view basis. It defaults to an empty dictionary. Example: .. code-block: python 'default_response_headers': { 'list': { 'Content-Range': { 'schema': { 'type': 'string', }, 'description': 'RQL RFC2616 limit offset pagination.', }, }, 'get': { 'X-Get-Is-Cool': { 'schema': { 'type': 'string', }, 'description': 'this header will be appendend to all responses to a get request.', }, }, '': { 'X-Correlation-ID': { 'schema': { 'type': 'string', }, 'description': 'this header will be appendend to all responses.' }, }, }, See :ref:`guide:Headers` section of the :ref:`guide:User guide`. Please refers to the `response object documentation `_ for more information. default_manual_parameters """"""""""""""""""""""""" Since there is no way to introspect views to determine all the path and querystring parameters, they can be declared using the `default_manual_parameters` section in order to be added to each view. The headers declared in the `default_response_headers` can be overridden on a per-view basis. It defaults to an empty list. Example: .. code-block:: python 'default_manual_parameters': [ { 'name': 'my_param', 'in': 'query', 'required': True, 'schema': { 'type': 'string', }, }, ] See :ref:`guide:Manual parameters` section of the :ref:`guide:User guide`. Please refers to the `parameter object documentation `_ for more information. default_responses """"""""""""""""" It's possible to describe "other" responses and append them to each operation. It could be useful for example to describe a generic error response. The response declared through the `default_responses` can be overridden on a per-view basis. It defaults to an empty dictionary. Example: .. code-block:: python 'default_responses': { '': { # You could limit this response to a specific action or http verb. '400': { 'content': { 'application/json': { 'schema': { 'type': 'object', 'properties': { 'error_code': { 'type': 'string', }, 'errors': { 'type': 'array', 'items': { 'type': 'string', }, }, }, }, }, }, 'description': 'this response will be appended to all operations.', }, }, }, See :ref:`guide:Manual responses` section of the :ref:`guide:User guide`. Please refers to the `response object documentation `_ for more information. PREPEND_PATH ^^^^^^^^^^^^ `drf-connect-docs` strips the common part from the set of paths. For example if paths are: - /public/api/v1/subscriptions/assets - /public/api/v1/subscriptions/assets/{pk} the path part '/public/api/v1/subscriptions' will be striped out so the specs paths looks like: - /assets - /assets/{pk} The `PREPEND_PATH` setting allow to prepend a portion path. For example if the want the path look like /myplatform/myservice/myendpoint so using: .. code-block:: python DRF_CONNECT_DOCS = { 'PREPEND_PATH': '/myplatform/myservice', } will do the job. MODELS_QUALIFIER ^^^^^^^^^^^^^^^^ Since `drf-connect-docs` has been developed with a microservice architecture in mind, often each microservice generates its own specification that will be merged togheter. To avoid models names collisions, you can add a qualifier to each object using the `MODELS_QUALIFIER` setting. For example, the **devportal** representation of an *Asset* could be different to the **subscriptions** one. Using qualifiers, once merged the whole API definitions, the two different *Asset* objects will be: .. code-block:: yaml ... subscriptions.Asset: properties: id: type: string readOnly: true ... devportal.Asset: properties: id: type: integer readOnly: true ... `MODELS_QUALIFIER` must be expressed with dot notation. OUTPUT_SCHEMA_FILE ^^^^^^^^^^^^^^^^^^ `drf-connect-docs` is shipped with a default view to serve the generated schema file through http(s). To work, you must set the `OUTPUT_SCHEMA_FILE` with the absolute path at which the schema file is located. It defaults to None, so if not set, the View returns a http status of 404. SCHEMA_VIEW_AUTHENTICATION_CLASSES ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ By default, the View that serves the generate schema get its authentication classes from the rest framework `DEFAULT_AUTHENTICATION_CLASSES` setting. To customize the authentication classes for this view you can list your authentication classes using the `SCHEMA_VIEW_AUTHENTICATION_CLASSES` setting. If you want to disable authentication for that view you can set the SCHEMA_VIEW_AUTHENTICATION_CLASSES to None. The value can be a string, a list or a tuple. SCHEMA_VIEW_PERMISSION_CLASSES ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ By default, the View that serves the generate schema get its permission classes from the rest framework `DEFAULT_PERMISSION_CLASSES` setting. To customize the permission classes for this view you can list your permissions classes using the `SCHEMA_VIEW_PERMISSION_CLASSES` setting. If you want to disable permission checks for that view you can set the SCHEMA_VIEW_PERMISSION_CLASSES to None. The value can be a string, a list or a tuple. SCHEMA_VIEW_URL_PATH ^^^^^^^^^^^^^^^^^^^^ The `SCHEMA_VIEW_URL_PATH` can be used to customize the tail part of the path at view the view is served. It defaults to `specification`. .. note:: Please note that the url is declared using the `django.urls.path` function, so if you need to express your path through a regular expression, you have to import the view and configure the url yourself. OUTPUT_SCHEMA_ON_START ^^^^^^^^^^^^^^^^^^^^^^ The schema file could be generated using the management command `generate_schema`. But it could also be generated when the application starts. It defaults to True but expect that the `OUTPUT_SCHEMA_FILE` is set. If not, a warning will be issued. To disable generation-on-start feature, you must add to your settings: .. code-block:: python DRF_CONNECT_DOCS = { 'OUTPUT_SCHEMA_ON_START': False, } GENERATION_API_KEY ^^^^^^^^^^^^^^^^^^ In some circumstances the lack of authentication information inside the `request` object can cause an exception. In this case it's possible to pass an api key through the `Authorization` header using the `GENERATION_API_KEY`. .. note:: Please note that the `GENERATION_API_KEY` is honored only by the generation-on-start feature. If you generates your schema file using the `generate_schema` management command, you can specify the API key with the `--apikey` option.