هل هناك طريقة لتحديد طول إعدادات نوع الكائنات؟

أتساءل عما إذا كانت هناك طريقة لتحديد طول إعدادات أنواع الكائنات. لدي هذه الإعدادات:

custom_header_links:
  type: objects
  default: []
  schema:
    name: "link"
    identifier: text
    properties:
      text:
        type: string
        required: true
        validations:
          min_length: 1
          max_length: 100
      title:
        type: string
        validations:
          min_length: 1
          max_length: 1000
      url:
        type: string
        required: true
        validations:
          min_length: 1
          max_length: 2048
          url: true
      target:
        type: enum
        choices:
          - blank
          - self

هل يمكنني تحديد كمية الروابط بإضافة طول؟
شكرا مقدما.