title: Zustellpunkt
description: Repräsentation eines Zustellpunktes mit den öffentlich einsehbaren Attributen
type: object
properties:
  destinationId:
    type: string
    minLength: 32
    format: uuid
    maxLength: 36
    description: Identifikator des Zustellpunktes
  schemas:
    uniqueItems: true
    minItems: 1
    type: array
    description: Auflistung aller unterstützten Antragsschemata des Zustellpunktes.
    items:
      $ref: './application-schema.yml'
  callback:
    type: string
    minLength: 1
    format: uri
    description: 'Öffentliche URL des Zustellpunktes, an den Anträge geliefert werden sollen.'
required:
  - destinationId
  - schemas
  - callback