You are here

cdn.data_types.schema.yml in CDN 8.3

config/schema/cdn.data_types.schema.yml

File

config/schema/cdn.data_types.schema.yml
View source
  1. # An authority as defined in RFC3986. An authority consists of host, optional userinfo and optional port. The host can
  2. # be an IP address or registered domain name.
  3. # @see https://tools.ietf.org/html/rfc3986#section-3.2
  4. # @see \Drupal\cdn\Plugin\Validation\Constraint\CdnDomainConstraintValidator::isValidCdnDomain()
  5. cdn.domain:
  6. type: string
  7. label: 'Domain'
  8. constraints:
  9. CdnDomain: []
  10. # A scheme or a network-path reference as defined in RFC3986.
  11. # @see https://tools.ietf.org/html/rfc3986#section-3.1
  12. # @see https://tools.ietf.org/html/rfc3986#section-4.2
  13. # @see \Drupal\cdn\Plugin\Validation\Constraint\CdnSchemeConstraintValidator::isValidCdnScheme()
  14. cdn.scheme:
  15. type: string
  16. label: 'Scheme'
  17. constraints:
  18. CdnScheme: []
  19. cdn.stream_wrapper_scheme:
  20. type: string
  21. label: 'Stream wrapper scheme'
  22. constraints:
  23. CdnStreamWrapper: []