Oper Privacy Policy API

The Privacy Policy API from Oper — 1 operation(s) for privacy policy.

OpenAPI Specification

oper-privacy-policy-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Oper Agent Documents Privacy Policy API
  version: ''
tags:
- name: Privacy Policy
paths:
  /api/privacy-policy/:
    get:
      operationId: api_privacy_policy_retrieve
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PrivacyPolicy'
          description: ''
      security:
      - jwtAuth: []
      tags:
      - Privacy Policy
components:
  schemas:
    PrivacyPolicy:
      properties:
        configuration_id:
          format: uuid
          type: string
        content:
          type: string
        language:
          $ref: '#/components/schemas/Language'
        tenant:
          nullable: true
          type: integer
        title:
          maxLength: 128
          type: string
      required:
      - content
      - language
      - title
      type: object
    Language:
      description: Can be managed at /resources/language
      properties:
        definition:
          type: string
        id:
          type: integer
        order:
          readOnly: true
          type: integer
      required:
      - definition
      - id
      - order
      type: object
  securitySchemes:
    jwtAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http