{ "openapi": "3.1.1", "info": { "title": "Bff.Api | v1", "version": "1.0.0" }, "paths": { "/self-service/registrations": { "post": { "tags": [ "Bff.Api" ], "responses": { "202": { "description": "Accepted", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/SubmitAccepted" } } } }, "400": { "description": "Bad Request" }, "401": { "description": "Unauthorized" } } } }, "/openbaar/register": { "get": { "tags": [ "Bff.Api" ], "parameters": [ { "name": "q", "in": "query", "schema": { "type": "string" } } ], "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { "type": "array", "items": { "$ref": "#/components/schemas/OpenbaarEntry" } } } } } } } } }, "components": { "schemas": { "OpenbaarEntry": { "required": [ "id", "status", "reference" ], "type": "object", "properties": { "id": { "type": "string" }, "status": { "type": "string" }, "reference": { "type": [ "null", "string" ] } } }, "SubmitAccepted": { "required": [ "registrationId", "status" ], "type": "object", "properties": { "registrationId": { "type": "string" }, "status": { "type": "string" } } } } }, "tags": [ { "name": "Bff.Api" } ] }