1. Docs
  2. Reference
  3. REST API Docs
  4. Schema
  5. NetURL

NetURL

    NetURL represents a parsed URL (Uniform Resource Locator).

    Properties

    • Scheme string required
      The URL scheme (e.g. https, http).
    • Opaque string required
      The opaque data of the URL.
    • User string required
      The user information associated with the URL.
    • Host string required
      The host or host:port of the URL.
    • Path string required
      The path of the URL.
    • RawPath string required
      The encoded path hint, used when the path contains escaped characters.
    • OmitHost boolean required
      Whether to omit the host in the URL string.
    • ForceQuery boolean required
      Whether to force a trailing question mark even if the query is empty.
    • RawQuery string required
      The encoded query string, without the leading question mark.
    • Fragment string required
      The URL fragment (without the leading hash).
    • RawFragment string required
      The encoded fragment hint.