Skip to content

Commit

Permalink
📦 [#4796] Updated OAS
Browse files Browse the repository at this point in the history
  • Loading branch information
robinmolen committed Oct 31, 2024
1 parent 4e0b36a commit b2c5e37
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions src/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4235,6 +4235,62 @@ paths:
$ref: '#/components/headers/X-Is-Form-Designer'
Content-Language:
$ref: '#/components/headers/Content-Language'
/api/v2/registration/plugins/zgw-api/products:
get:
operationId: registration_plugins_zgw_api_products_list
description: |-
Fetch and serialize a list of objects.
Alternative to :class:`rest_framework.mixins.ListModelMixin` for non-database
backed collections of objects.
summary: List the available products bound to a case type within a catalogue
(ZGW APIs)
parameters:
- in: query
name: case_type_identification
schema:
type: string
minLength: 1
description: Filter case types against this identification.
required: true
- in: query
name: catalogue_url
schema:
type: string
format: uri
title: catalogus URL
minLength: 1
description: Filter case types against this catalogue URL.
required: true
- in: query
name: zgw_api_group
schema:
type: integer
description: The primary key of the ZGW API group to use. The informatieobjecttypen
from the Catalogi API in this group will be returned.
required: true
tags:
- registration
security:
- cookieAuth: []
responses:
'200':
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/CaseTypeProduct'
description: ''
headers:
X-Session-Expires-In:
$ref: '#/components/headers/X-Session-Expires-In'
X-CSRFToken:
$ref: '#/components/headers/X-CSRFToken'
X-Is-Form-Designer:
$ref: '#/components/headers/X-Is-Form-Designer'
Content-Language:
$ref: '#/components/headers/Content-Language'
/api/v2/service-fetch-configurations:
get:
operationId: service_fetch_configurations_list
Expand Down Expand Up @@ -7042,6 +7098,14 @@ components:
- description
- identification
- isPublished
CaseTypeProduct:
type: object
properties:
uri:
type: string
description: 'The uri of a product bound to a case type. '
required:
- uri
Catalogue:
type: object
properties:
Expand Down

0 comments on commit b2c5e37

Please sign in to comment.