The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of SwiftOpenAPI, reference 2.24.1 (c2752c), with Swift 6.1 for Wasm on 30 May 2025 17:41:51 UTC.

Swift 6 data race errors: 112

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 |
103 | 	/// The HOBA scheme can be used with either HTTP servers or proxies. When used in response to a 407 Proxy Authentication Required indication, the appropriate proxy authentication header fields are used instead, as with any other HTTP authentication scheme.
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:104:20: warning: static property 'hoba' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
102 |
103 | 	/// The HOBA scheme can be used with either HTTP servers or proxies. When used in response to a 407 Proxy Authentication Required indication, the appropriate proxy authentication header fields are used instead, as with any other HTTP authentication scheme.
104 | 	public static let hoba: HTTPAuthScheme = "hoba"
    |                    |- warning: static property 'hoba' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'hoba' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:105:20: warning: static property 'mutual' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
103 | 	/// The HOBA scheme can be used with either HTTP servers or proxies. When used in response to a 407 Proxy Authentication Required indication, the appropriate proxy authentication header fields are used instead, as with any other HTTP authentication scheme.
104 | 	public static let hoba: HTTPAuthScheme = "hoba"
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
    |                    |- warning: static property 'mutual' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'mutual' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:106:20: warning: static property 'oauth' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
104 | 	public static let hoba: HTTPAuthScheme = "hoba"
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
    |                    |- warning: static property 'oauth' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'oauth' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:107:20: warning: static property 'scramSHA1' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
    |                    |- warning: static property 'scramSHA1' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'scramSHA1' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:108:20: warning: static property 'scramSHA256' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
    |                    |- warning: static property 'scramSHA256' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'scramSHA256' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
110 | }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:109:20: warning: static property 'vapid' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
    |                    |- warning: static property 'vapid' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'vapid' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | }
111 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ReferenceOr.swift:252:13: warning: var 'names' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
250 | }
251 |
252 | private var names: [PartialKeyPath<ComponentsObject>: String] = [
    |             |- warning: var 'names' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'names' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make var 'names' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | 	\.schemas: "schemas",
254 | 	\.parameters: "parameters",
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:99:20: warning: static property 'basic' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
 97 | 	}
 98 |
 99 | 	public static let basic: HTTPAuthScheme = "basic"
    |                    |- warning: static property 'basic' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'basic' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 | 	public static let bearer: HTTPAuthScheme = "bearer"
101 | 	public static let digest: HTTPAuthScheme = "digest"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:100:20: warning: static property 'bearer' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
 98 |
 99 | 	public static let basic: HTTPAuthScheme = "basic"
100 | 	public static let bearer: HTTPAuthScheme = "bearer"
    |                    |- warning: static property 'bearer' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'bearer' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 | 	public static let digest: HTTPAuthScheme = "digest"
102 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:101:20: warning: static property 'digest' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
 99 | 	public static let basic: HTTPAuthScheme = "basic"
100 | 	public static let bearer: HTTPAuthScheme = "bearer"
101 | 	public static let digest: HTTPAuthScheme = "digest"
    |                    |- warning: static property 'digest' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'digest' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 |
103 | 	/// The HOBA scheme can be used with either HTTP servers or proxies. When used in response to a 407 Proxy Authentication Required indication, the appropriate proxy authentication header fields are used instead, as with any other HTTP authentication scheme.
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:104:20: warning: static property 'hoba' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
102 |
103 | 	/// The HOBA scheme can be used with either HTTP servers or proxies. When used in response to a 407 Proxy Authentication Required indication, the appropriate proxy authentication header fields are used instead, as with any other HTTP authentication scheme.
104 | 	public static let hoba: HTTPAuthScheme = "hoba"
    |                    |- warning: static property 'hoba' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'hoba' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:105:20: warning: static property 'mutual' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
103 | 	/// The HOBA scheme can be used with either HTTP servers or proxies. When used in response to a 407 Proxy Authentication Required indication, the appropriate proxy authentication header fields are used instead, as with any other HTTP authentication scheme.
104 | 	public static let hoba: HTTPAuthScheme = "hoba"
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
    |                    |- warning: static property 'mutual' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'mutual' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:106:20: warning: static property 'oauth' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
104 | 	public static let hoba: HTTPAuthScheme = "hoba"
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
    |                    |- warning: static property 'oauth' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'oauth' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:107:20: warning: static property 'scramSHA1' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
    |                    |- warning: static property 'scramSHA1' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'scramSHA1' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:108:20: warning: static property 'scramSHA256' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
    |                    |- warning: static property 'scramSHA256' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'scramSHA256' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
110 | }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:109:20: warning: static property 'vapid' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
    |                    |- warning: static property 'vapid' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'vapid' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | }
111 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ReferenceOr.swift:252:13: warning: var 'names' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
250 | }
251 |
252 | private var names: [PartialKeyPath<ComponentsObject>: String] = [
    |             |- warning: var 'names' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'names' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make var 'names' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | 	\.schemas: "schemas",
254 | 	\.parameters: "parameters",
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:99:20: warning: static property 'basic' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
 97 | 	}
 98 |
 99 | 	public static let basic: HTTPAuthScheme = "basic"
    |                    |- warning: static property 'basic' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'basic' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 | 	public static let bearer: HTTPAuthScheme = "bearer"
101 | 	public static let digest: HTTPAuthScheme = "digest"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:100:20: warning: static property 'bearer' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
 98 |
 99 | 	public static let basic: HTTPAuthScheme = "basic"
100 | 	public static let bearer: HTTPAuthScheme = "bearer"
    |                    |- warning: static property 'bearer' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'bearer' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 | 	public static let digest: HTTPAuthScheme = "digest"
102 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:101:20: warning: static property 'digest' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
 99 | 	public static let basic: HTTPAuthScheme = "basic"
100 | 	public static let bearer: HTTPAuthScheme = "bearer"
101 | 	public static let digest: HTTPAuthScheme = "digest"
    |                    |- warning: static property 'digest' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'digest' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 |
103 | 	/// The HOBA scheme can be used with either HTTP servers or proxies. When used in response to a 407 Proxy Authentication Required indication, the appropriate proxy authentication header fields are used instead, as with any other HTTP authentication scheme.
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:104:20: warning: static property 'hoba' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
102 |
103 | 	/// The HOBA scheme can be used with either HTTP servers or proxies. When used in response to a 407 Proxy Authentication Required indication, the appropriate proxy authentication header fields are used instead, as with any other HTTP authentication scheme.
104 | 	public static let hoba: HTTPAuthScheme = "hoba"
    |                    |- warning: static property 'hoba' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'hoba' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:105:20: warning: static property 'mutual' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
103 | 	/// The HOBA scheme can be used with either HTTP servers or proxies. When used in response to a 407 Proxy Authentication Required indication, the appropriate proxy authentication header fields are used instead, as with any other HTTP authentication scheme.
104 | 	public static let hoba: HTTPAuthScheme = "hoba"
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
    |                    |- warning: static property 'mutual' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'mutual' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:106:20: warning: static property 'oauth' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
104 | 	public static let hoba: HTTPAuthScheme = "hoba"
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
    |                    |- warning: static property 'oauth' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'oauth' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:107:20: warning: static property 'scramSHA1' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
    |                    |- warning: static property 'scramSHA1' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'scramSHA1' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:108:20: warning: static property 'scramSHA256' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
    |                    |- warning: static property 'scramSHA256' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'scramSHA256' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
110 | }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:109:20: warning: static property 'vapid' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
    |                    |- warning: static property 'vapid' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'vapid' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | }
111 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ReferenceOr.swift:252:13: warning: var 'names' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
250 | }
251 |
252 | private var names: [PartialKeyPath<ComponentsObject>: String] = [
    |             |- warning: var 'names' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'names' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make var 'names' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | 	\.schemas: "schemas",
254 | 	\.parameters: "parameters",
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:99:20: warning: static property 'basic' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
 97 | 	}
 98 |
 99 | 	public static let basic: HTTPAuthScheme = "basic"
    |                    |- warning: static property 'basic' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'basic' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 | 	public static let bearer: HTTPAuthScheme = "bearer"
101 | 	public static let digest: HTTPAuthScheme = "digest"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:100:20: warning: static property 'bearer' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
 98 |
 99 | 	public static let basic: HTTPAuthScheme = "basic"
100 | 	public static let bearer: HTTPAuthScheme = "bearer"
    |                    |- warning: static property 'bearer' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'bearer' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 | 	public static let digest: HTTPAuthScheme = "digest"
102 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:101:20: warning: static property 'digest' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
 99 | 	public static let basic: HTTPAuthScheme = "basic"
100 | 	public static let bearer: HTTPAuthScheme = "bearer"
101 | 	public static let digest: HTTPAuthScheme = "digest"
    |                    |- warning: static property 'digest' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'digest' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 |
103 | 	/// The HOBA scheme can be used with either HTTP servers or proxies. When used in response to a 407 Proxy Authentication Required indication, the appropriate proxy authentication header fields are used instead, as with any other HTTP authentication scheme.
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:104:20: warning: static property 'hoba' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
102 |
103 | 	/// The HOBA scheme can be used with either HTTP servers or proxies. When used in response to a 407 Proxy Authentication Required indication, the appropriate proxy authentication header fields are used instead, as with any other HTTP authentication scheme.
104 | 	public static let hoba: HTTPAuthScheme = "hoba"
    |                    |- warning: static property 'hoba' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'hoba' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:105:20: warning: static property 'mutual' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
103 | 	/// The HOBA scheme can be used with either HTTP servers or proxies. When used in response to a 407 Proxy Authentication Required indication, the appropriate proxy authentication header fields are used instead, as with any other HTTP authentication scheme.
104 | 	public static let hoba: HTTPAuthScheme = "hoba"
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
    |                    |- warning: static property 'mutual' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'mutual' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:106:20: warning: static property 'oauth' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
104 | 	public static let hoba: HTTPAuthScheme = "hoba"
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
    |                    |- warning: static property 'oauth' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'oauth' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:107:20: warning: static property 'scramSHA1' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
    |                    |- warning: static property 'scramSHA1' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'scramSHA1' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:108:20: warning: static property 'scramSHA256' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
    |                    |- warning: static property 'scramSHA256' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'scramSHA256' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
110 | }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:109:20: warning: static property 'vapid' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
    |                    |- warning: static property 'vapid' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'vapid' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | }
111 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ReferenceOr.swift:252:13: warning: var 'names' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
250 | }
251 |
252 | private var names: [PartialKeyPath<ComponentsObject>: String] = [
    |             |- warning: var 'names' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'names' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make var 'names' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | 	\.schemas: "schemas",
254 | 	\.parameters: "parameters",
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:99:20: warning: static property 'basic' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
 97 | 	}
 98 |
 99 | 	public static let basic: HTTPAuthScheme = "basic"
    |                    |- warning: static property 'basic' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'basic' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 | 	public static let bearer: HTTPAuthScheme = "bearer"
101 | 	public static let digest: HTTPAuthScheme = "digest"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:100:20: warning: static property 'bearer' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
 98 |
 99 | 	public static let basic: HTTPAuthScheme = "basic"
100 | 	public static let bearer: HTTPAuthScheme = "bearer"
    |                    |- warning: static property 'bearer' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'bearer' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 | 	public static let digest: HTTPAuthScheme = "digest"
102 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:101:20: warning: static property 'digest' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
 99 | 	public static let basic: HTTPAuthScheme = "basic"
100 | 	public static let bearer: HTTPAuthScheme = "bearer"
101 | 	public static let digest: HTTPAuthScheme = "digest"
    |                    |- warning: static property 'digest' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'digest' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 |
103 | 	/// The HOBA scheme can be used with either HTTP servers or proxies. When used in response to a 407 Proxy Authentication Required indication, the appropriate proxy authentication header fields are used instead, as with any other HTTP authentication scheme.
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:104:20: warning: static property 'hoba' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
102 |
103 | 	/// The HOBA scheme can be used with either HTTP servers or proxies. When used in response to a 407 Proxy Authentication Required indication, the appropriate proxy authentication header fields are used instead, as with any other HTTP authentication scheme.
104 | 	public static let hoba: HTTPAuthScheme = "hoba"
    |                    |- warning: static property 'hoba' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'hoba' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:105:20: warning: static property 'mutual' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
103 | 	/// The HOBA scheme can be used with either HTTP servers or proxies. When used in response to a 407 Proxy Authentication Required indication, the appropriate proxy authentication header fields are used instead, as with any other HTTP authentication scheme.
104 | 	public static let hoba: HTTPAuthScheme = "hoba"
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
    |                    |- warning: static property 'mutual' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'mutual' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:106:20: warning: static property 'oauth' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
104 | 	public static let hoba: HTTPAuthScheme = "hoba"
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
    |                    |- warning: static property 'oauth' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'oauth' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:107:20: warning: static property 'scramSHA1' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
    |                    |- warning: static property 'scramSHA1' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'scramSHA1' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:108:20: warning: static property 'scramSHA256' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
    |                    |- warning: static property 'scramSHA256' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'scramSHA256' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
110 | }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:109:20: warning: static property 'vapid' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
    |                    |- warning: static property 'vapid' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'vapid' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | }
111 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ReferenceOr.swift:252:13: warning: var 'names' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
250 | }
251 |
252 | private var names: [PartialKeyPath<ComponentsObject>: String] = [
    |             |- warning: var 'names' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'names' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make var 'names' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | 	\.schemas: "schemas",
254 | 	\.parameters: "parameters",
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:99:20: warning: static property 'basic' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
 97 | 	}
 98 |
 99 | 	public static let basic: HTTPAuthScheme = "basic"
    |                    |- warning: static property 'basic' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'basic' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 | 	public static let bearer: HTTPAuthScheme = "bearer"
101 | 	public static let digest: HTTPAuthScheme = "digest"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:100:20: warning: static property 'bearer' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
 98 |
 99 | 	public static let basic: HTTPAuthScheme = "basic"
100 | 	public static let bearer: HTTPAuthScheme = "bearer"
    |                    |- warning: static property 'bearer' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'bearer' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 | 	public static let digest: HTTPAuthScheme = "digest"
102 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:101:20: warning: static property 'digest' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
 99 | 	public static let basic: HTTPAuthScheme = "basic"
100 | 	public static let bearer: HTTPAuthScheme = "bearer"
101 | 	public static let digest: HTTPAuthScheme = "digest"
    |                    |- warning: static property 'digest' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'digest' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 |
103 | 	/// The HOBA scheme can be used with either HTTP servers or proxies. When used in response to a 407 Proxy Authentication Required indication, the appropriate proxy authentication header fields are used instead, as with any other HTTP authentication scheme.
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:104:20: warning: static property 'hoba' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
102 |
103 | 	/// The HOBA scheme can be used with either HTTP servers or proxies. When used in response to a 407 Proxy Authentication Required indication, the appropriate proxy authentication header fields are used instead, as with any other HTTP authentication scheme.
104 | 	public static let hoba: HTTPAuthScheme = "hoba"
    |                    |- warning: static property 'hoba' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'hoba' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:105:20: warning: static property 'mutual' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
103 | 	/// The HOBA scheme can be used with either HTTP servers or proxies. When used in response to a 407 Proxy Authentication Required indication, the appropriate proxy authentication header fields are used instead, as with any other HTTP authentication scheme.
104 | 	public static let hoba: HTTPAuthScheme = "hoba"
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
    |                    |- warning: static property 'mutual' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'mutual' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:106:20: warning: static property 'oauth' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
104 | 	public static let hoba: HTTPAuthScheme = "hoba"
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
    |                    |- warning: static property 'oauth' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'oauth' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:107:20: warning: static property 'scramSHA1' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
    |                    |- warning: static property 'scramSHA1' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'scramSHA1' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:108:20: warning: static property 'scramSHA256' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
    |                    |- warning: static property 'scramSHA256' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'scramSHA256' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
110 | }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:109:20: warning: static property 'vapid' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
    |                    |- warning: static property 'vapid' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'vapid' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | }
111 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Path.swift:72:13: warning: static property 'components' is not concurrency-safe because non-'Sendable' type 'PathElement' may have shared mutable state; this is an error in the Swift 6 language mode
41 | }
42 |
43 | public enum PathElement: Hashable, ExpressibleByStringLiteral {
   |             `- note: consider making enum 'PathElement' conform to the 'Sendable' protocol
44 |
45 | 	case constant(String)
   :
70 | public extension PathElement {
71 |
72 | 	static let components: PathElement = "components"
   |             |- warning: static property 'components' is not concurrency-safe because non-'Sendable' type 'PathElement' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make static property 'components' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:64:8: warning: associated value 'field' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.CodingKeys.Field'; this is an error in the Swift 6 language mode
 62 | 	public enum CodingKeys: CodingKey {
 63 |
 64 | 		case field(Field)
    |        `- warning: associated value 'field' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.CodingKeys.Field'; this is an error in the Swift 6 language mode
 65 | 		case method(Method)
 66 |
    :
 97 | 		}
 98 |
 99 | 		public enum Field: String {
    |               `- note: consider making enum 'Field' conform to the 'Sendable' protocol
100 |
101 | 			case summary
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:65:8: warning: associated value 'method' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.Method'; this is an error in the Swift 6 language mode
 63 |
 64 | 		case field(Field)
 65 | 		case method(Method)
    |        `- warning: associated value 'method' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.Method'; this is an error in the Swift 6 language mode
 66 |
 67 | 		public var stringValue: String {
    :
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:148:21: warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
146 | 		}
147 |
148 | 		public static let get = Method("get")
    |                     |- warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'get' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:149:21: warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
147 |
148 | 		public static let get = Method("get")
149 | 		public static let put = Method("put")
    |                     |- warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'put' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:150:21: warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
148 | 		public static let get = Method("get")
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
    |                     |- warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'post' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:151:21: warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
    |                     |- warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'delete' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:152:21: warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
    |                     |- warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'options' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:153:21: warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
    |                     |- warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'head' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 | 		public static let patch = Method("patch")
155 | 		public static let trace = Method("trace")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:154:21: warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
    |                     |- warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'patch' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 | 		public static let trace = Method("trace")
156 | 	}
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:155:21: warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
155 | 		public static let trace = Method("trace")
    |                     |- warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'trace' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 | 	}
157 | }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Path.swift:72:13: warning: static property 'components' is not concurrency-safe because non-'Sendable' type 'PathElement' may have shared mutable state; this is an error in the Swift 6 language mode
41 | }
42 |
43 | public enum PathElement: Hashable, ExpressibleByStringLiteral {
   |             `- note: consider making enum 'PathElement' conform to the 'Sendable' protocol
44 |
45 | 	case constant(String)
   :
70 | public extension PathElement {
71 |
72 | 	static let components: PathElement = "components"
   |             |- warning: static property 'components' is not concurrency-safe because non-'Sendable' type 'PathElement' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make static property 'components' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:64:8: warning: associated value 'field' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.CodingKeys.Field'; this is an error in the Swift 6 language mode
 62 | 	public enum CodingKeys: CodingKey {
 63 |
 64 | 		case field(Field)
    |        `- warning: associated value 'field' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.CodingKeys.Field'; this is an error in the Swift 6 language mode
 65 | 		case method(Method)
 66 |
    :
 97 | 		}
 98 |
 99 | 		public enum Field: String {
    |               `- note: consider making enum 'Field' conform to the 'Sendable' protocol
100 |
101 | 			case summary
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:65:8: warning: associated value 'method' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.Method'; this is an error in the Swift 6 language mode
 63 |
 64 | 		case field(Field)
 65 | 		case method(Method)
    |        `- warning: associated value 'method' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.Method'; this is an error in the Swift 6 language mode
 66 |
 67 | 		public var stringValue: String {
    :
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:148:21: warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
146 | 		}
147 |
148 | 		public static let get = Method("get")
    |                     |- warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'get' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:149:21: warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
147 |
148 | 		public static let get = Method("get")
149 | 		public static let put = Method("put")
    |                     |- warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'put' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:150:21: warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
148 | 		public static let get = Method("get")
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
    |                     |- warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'post' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:151:21: warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
    |                     |- warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'delete' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:152:21: warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
    |                     |- warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'options' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:153:21: warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
    |                     |- warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'head' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 | 		public static let patch = Method("patch")
155 | 		public static let trace = Method("trace")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:154:21: warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
    |                     |- warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'patch' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 | 		public static let trace = Method("trace")
156 | 	}
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:155:21: warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
155 | 		public static let trace = Method("trace")
    |                     |- warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'trace' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 | 	}
157 | }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Path.swift:72:13: warning: static property 'components' is not concurrency-safe because non-'Sendable' type 'PathElement' may have shared mutable state; this is an error in the Swift 6 language mode
41 | }
42 |
43 | public enum PathElement: Hashable, ExpressibleByStringLiteral {
   |             `- note: consider making enum 'PathElement' conform to the 'Sendable' protocol
44 |
45 | 	case constant(String)
   :
70 | public extension PathElement {
71 |
72 | 	static let components: PathElement = "components"
   |             |- warning: static property 'components' is not concurrency-safe because non-'Sendable' type 'PathElement' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make static property 'components' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:64:8: warning: associated value 'field' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.CodingKeys.Field'; this is an error in the Swift 6 language mode
 62 | 	public enum CodingKeys: CodingKey {
 63 |
 64 | 		case field(Field)
    |        `- warning: associated value 'field' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.CodingKeys.Field'; this is an error in the Swift 6 language mode
 65 | 		case method(Method)
 66 |
    :
 97 | 		}
 98 |
 99 | 		public enum Field: String {
    |               `- note: consider making enum 'Field' conform to the 'Sendable' protocol
100 |
101 | 			case summary
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:65:8: warning: associated value 'method' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.Method'; this is an error in the Swift 6 language mode
 63 |
 64 | 		case field(Field)
 65 | 		case method(Method)
    |        `- warning: associated value 'method' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.Method'; this is an error in the Swift 6 language mode
 66 |
 67 | 		public var stringValue: String {
    :
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:148:21: warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
146 | 		}
147 |
148 | 		public static let get = Method("get")
    |                     |- warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'get' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:149:21: warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
147 |
148 | 		public static let get = Method("get")
149 | 		public static let put = Method("put")
    |                     |- warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'put' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:150:21: warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
148 | 		public static let get = Method("get")
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
    |                     |- warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'post' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:151:21: warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
    |                     |- warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'delete' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:152:21: warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
    |                     |- warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'options' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:153:21: warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
    |                     |- warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'head' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 | 		public static let patch = Method("patch")
155 | 		public static let trace = Method("trace")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:154:21: warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
    |                     |- warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'patch' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 | 		public static let trace = Method("trace")
156 | 	}
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:155:21: warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
155 | 		public static let trace = Method("trace")
    |                     |- warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'trace' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 | 	}
157 | }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Path.swift:72:13: warning: static property 'components' is not concurrency-safe because non-'Sendable' type 'PathElement' may have shared mutable state; this is an error in the Swift 6 language mode
41 | }
42 |
43 | public enum PathElement: Hashable, ExpressibleByStringLiteral {
   |             `- note: consider making enum 'PathElement' conform to the 'Sendable' protocol
44 |
45 | 	case constant(String)
   :
70 | public extension PathElement {
71 |
72 | 	static let components: PathElement = "components"
   |             |- warning: static property 'components' is not concurrency-safe because non-'Sendable' type 'PathElement' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make static property 'components' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:64:8: warning: associated value 'field' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.CodingKeys.Field'; this is an error in the Swift 6 language mode
 62 | 	public enum CodingKeys: CodingKey {
 63 |
 64 | 		case field(Field)
    |        `- warning: associated value 'field' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.CodingKeys.Field'; this is an error in the Swift 6 language mode
 65 | 		case method(Method)
 66 |
    :
 97 | 		}
 98 |
 99 | 		public enum Field: String {
    |               `- note: consider making enum 'Field' conform to the 'Sendable' protocol
100 |
101 | 			case summary
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:65:8: warning: associated value 'method' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.Method'; this is an error in the Swift 6 language mode
 63 |
 64 | 		case field(Field)
 65 | 		case method(Method)
    |        `- warning: associated value 'method' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.Method'; this is an error in the Swift 6 language mode
 66 |
 67 | 		public var stringValue: String {
    :
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:148:21: warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
146 | 		}
147 |
148 | 		public static let get = Method("get")
    |                     |- warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'get' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:149:21: warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
147 |
148 | 		public static let get = Method("get")
149 | 		public static let put = Method("put")
    |                     |- warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'put' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:150:21: warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
148 | 		public static let get = Method("get")
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
    |                     |- warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'post' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:151:21: warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
    |                     |- warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'delete' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:152:21: warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
    |                     |- warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'options' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:153:21: warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
    |                     |- warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'head' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 | 		public static let patch = Method("patch")
155 | 		public static let trace = Method("trace")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:154:21: warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
    |                     |- warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'patch' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 | 		public static let trace = Method("trace")
156 | 	}
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:155:21: warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
155 | 		public static let trace = Method("trace")
    |                     |- warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'trace' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 | 	}
157 | }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Path.swift:72:13: warning: static property 'components' is not concurrency-safe because non-'Sendable' type 'PathElement' may have shared mutable state; this is an error in the Swift 6 language mode
41 | }
42 |
43 | public enum PathElement: Hashable, ExpressibleByStringLiteral {
   |             `- note: consider making enum 'PathElement' conform to the 'Sendable' protocol
44 |
45 | 	case constant(String)
   :
70 | public extension PathElement {
71 |
72 | 	static let components: PathElement = "components"
   |             |- warning: static property 'components' is not concurrency-safe because non-'Sendable' type 'PathElement' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make static property 'components' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:64:8: warning: associated value 'field' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.CodingKeys.Field'; this is an error in the Swift 6 language mode
 62 | 	public enum CodingKeys: CodingKey {
 63 |
 64 | 		case field(Field)
    |        `- warning: associated value 'field' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.CodingKeys.Field'; this is an error in the Swift 6 language mode
 65 | 		case method(Method)
 66 |
    :
 97 | 		}
 98 |
 99 | 		public enum Field: String {
    |               `- note: consider making enum 'Field' conform to the 'Sendable' protocol
100 |
101 | 			case summary
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:65:8: warning: associated value 'method' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.Method'; this is an error in the Swift 6 language mode
 63 |
 64 | 		case field(Field)
 65 | 		case method(Method)
    |        `- warning: associated value 'method' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.Method'; this is an error in the Swift 6 language mode
 66 |
 67 | 		public var stringValue: String {
    :
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:148:21: warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
146 | 		}
147 |
148 | 		public static let get = Method("get")
    |                     |- warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'get' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:149:21: warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
147 |
148 | 		public static let get = Method("get")
149 | 		public static let put = Method("put")
    |                     |- warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'put' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:150:21: warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
148 | 		public static let get = Method("get")
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
    |                     |- warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'post' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:151:21: warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
    |                     |- warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'delete' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:152:21: warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
    |                     |- warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'options' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:153:21: warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
    |                     |- warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'head' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 | 		public static let patch = Method("patch")
155 | 		public static let trace = Method("trace")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:154:21: warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
    |                     |- warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'patch' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 | 		public static let trace = Method("trace")
156 | 	}
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:155:21: warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
155 | 		public static let trace = Method("trace")
    |                     |- warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'trace' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 | 	}
157 | }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Path.swift:72:13: warning: static property 'components' is not concurrency-safe because non-'Sendable' type 'PathElement' may have shared mutable state; this is an error in the Swift 6 language mode
41 | }
42 |
43 | public enum PathElement: Hashable, ExpressibleByStringLiteral {
   |             `- note: consider making enum 'PathElement' conform to the 'Sendable' protocol
44 |
45 | 	case constant(String)
   :
70 | public extension PathElement {
71 |
72 | 	static let components: PathElement = "components"
   |             |- warning: static property 'components' is not concurrency-safe because non-'Sendable' type 'PathElement' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make static property 'components' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:64:8: warning: associated value 'field' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.CodingKeys.Field'; this is an error in the Swift 6 language mode
 62 | 	public enum CodingKeys: CodingKey {
 63 |
 64 | 		case field(Field)
    |        `- warning: associated value 'field' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.CodingKeys.Field'; this is an error in the Swift 6 language mode
 65 | 		case method(Method)
 66 |
    :
 97 | 		}
 98 |
 99 | 		public enum Field: String {
    |               `- note: consider making enum 'Field' conform to the 'Sendable' protocol
100 |
101 | 			case summary
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:65:8: warning: associated value 'method' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.Method'; this is an error in the Swift 6 language mode
 63 |
 64 | 		case field(Field)
 65 | 		case method(Method)
    |        `- warning: associated value 'method' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.Method'; this is an error in the Swift 6 language mode
 66 |
 67 | 		public var stringValue: String {
    :
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:148:21: warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
146 | 		}
147 |
148 | 		public static let get = Method("get")
    |                     |- warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'get' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:149:21: warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
147 |
148 | 		public static let get = Method("get")
149 | 		public static let put = Method("put")
    |                     |- warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'put' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:150:21: warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
148 | 		public static let get = Method("get")
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
    |                     |- warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'post' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:151:21: warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
    |                     |- warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'delete' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:152:21: warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
    |                     |- warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'options' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:153:21: warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
    |                     |- warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'head' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 | 		public static let patch = Method("patch")
155 | 		public static let trace = Method("trace")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:154:21: warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
    |                     |- warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'patch' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 | 		public static let trace = Method("trace")
156 | 	}
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:155:21: warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
155 | 		public static let trace = Method("trace")
    |                     |- warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'trace' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 | 	}
157 | }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Path.swift:72:13: warning: static property 'components' is not concurrency-safe because non-'Sendable' type 'PathElement' may have shared mutable state; this is an error in the Swift 6 language mode
41 | }
42 |
43 | public enum PathElement: Hashable, ExpressibleByStringLiteral {
   |             `- note: consider making enum 'PathElement' conform to the 'Sendable' protocol
44 |
45 | 	case constant(String)
   :
70 | public extension PathElement {
71 |
72 | 	static let components: PathElement = "components"
   |             |- warning: static property 'components' is not concurrency-safe because non-'Sendable' type 'PathElement' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make static property 'components' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:64:8: warning: associated value 'field' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.CodingKeys.Field'; this is an error in the Swift 6 language mode
 62 | 	public enum CodingKeys: CodingKey {
 63 |
 64 | 		case field(Field)
    |        `- warning: associated value 'field' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.CodingKeys.Field'; this is an error in the Swift 6 language mode
 65 | 		case method(Method)
 66 |
    :
 97 | 		}
 98 |
 99 | 		public enum Field: String {
    |               `- note: consider making enum 'Field' conform to the 'Sendable' protocol
100 |
101 | 			case summary
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:65:8: warning: associated value 'method' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.Method'; this is an error in the Swift 6 language mode
 63 |
 64 | 		case field(Field)
 65 | 		case method(Method)
    |        `- warning: associated value 'method' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.Method'; this is an error in the Swift 6 language mode
 66 |
 67 | 		public var stringValue: String {
    :
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:148:21: warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
146 | 		}
147 |
148 | 		public static let get = Method("get")
    |                     |- warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'get' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:149:21: warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
147 |
148 | 		public static let get = Method("get")
149 | 		public static let put = Method("put")
    |                     |- warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'put' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:150:21: warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
148 | 		public static let get = Method("get")
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
    |                     |- warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'post' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:151:21: warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
    |                     |- warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'delete' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:152:21: warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
    |                     |- warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'options' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:153:21: warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
    |                     |- warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'head' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 | 		public static let patch = Method("patch")
155 | 		public static let trace = Method("trace")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:154:21: warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
    |                     |- warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'patch' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 | 		public static let trace = Method("trace")
156 | 	}
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:155:21: warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
155 | 		public static let trace = Method("trace")
    |                     |- warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'trace' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 | 	}
157 | }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Path.swift:72:13: warning: static property 'components' is not concurrency-safe because non-'Sendable' type 'PathElement' may have shared mutable state; this is an error in the Swift 6 language mode
41 | }
42 |
43 | public enum PathElement: Hashable, ExpressibleByStringLiteral {
   |             `- note: consider making enum 'PathElement' conform to the 'Sendable' protocol
44 |
45 | 	case constant(String)
   :
70 | public extension PathElement {
71 |
72 | 	static let components: PathElement = "components"
   |             |- warning: static property 'components' is not concurrency-safe because non-'Sendable' type 'PathElement' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make static property 'components' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:64:8: warning: associated value 'field' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.CodingKeys.Field'; this is an error in the Swift 6 language mode
 62 | 	public enum CodingKeys: CodingKey {
 63 |
 64 | 		case field(Field)
    |        `- warning: associated value 'field' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.CodingKeys.Field'; this is an error in the Swift 6 language mode
 65 | 		case method(Method)
 66 |
    :
 97 | 		}
 98 |
 99 | 		public enum Field: String {
    |               `- note: consider making enum 'Field' conform to the 'Sendable' protocol
100 |
101 | 			case summary
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:65:8: warning: associated value 'method' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.Method'; this is an error in the Swift 6 language mode
 63 |
 64 | 		case field(Field)
 65 | 		case method(Method)
    |        `- warning: associated value 'method' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.Method'; this is an error in the Swift 6 language mode
 66 |
 67 | 		public var stringValue: String {
    :
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:148:21: warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
146 | 		}
147 |
148 | 		public static let get = Method("get")
    |                     |- warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'get' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:149:21: warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
147 |
148 | 		public static let get = Method("get")
149 | 		public static let put = Method("put")
    |                     |- warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'put' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:150:21: warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
148 | 		public static let get = Method("get")
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
    |                     |- warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'post' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:151:21: warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
    |                     |- warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'delete' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:152:21: warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
    |                     |- warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'options' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:153:21: warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
    |                     |- warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'head' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 | 		public static let patch = Method("patch")
155 | 		public static let trace = Method("trace")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:154:21: warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
    |                     |- warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'patch' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 | 		public static let trace = Method("trace")
156 | 	}
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:155:21: warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
155 | 		public static let trace = Method("trace")
    |                     |- warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'trace' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 | 	}
157 | }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Path.swift:72:13: warning: static property 'components' is not concurrency-safe because non-'Sendable' type 'PathElement' may have shared mutable state; this is an error in the Swift 6 language mode
41 | }
42 |
43 | public enum PathElement: Hashable, ExpressibleByStringLiteral {
   |             `- note: consider making enum 'PathElement' conform to the 'Sendable' protocol
44 |
45 | 	case constant(String)
   :
70 | public extension PathElement {
71 |
72 | 	static let components: PathElement = "components"
   |             |- warning: static property 'components' is not concurrency-safe because non-'Sendable' type 'PathElement' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make static property 'components' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:64:8: warning: associated value 'field' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.CodingKeys.Field'; this is an error in the Swift 6 language mode
 62 | 	public enum CodingKeys: CodingKey {
 63 |
 64 | 		case field(Field)
    |        `- warning: associated value 'field' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.CodingKeys.Field'; this is an error in the Swift 6 language mode
 65 | 		case method(Method)
 66 |
    :
 97 | 		}
 98 |
 99 | 		public enum Field: String {
    |               `- note: consider making enum 'Field' conform to the 'Sendable' protocol
100 |
101 | 			case summary
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:65:8: warning: associated value 'method' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.Method'; this is an error in the Swift 6 language mode
 63 |
 64 | 		case field(Field)
 65 | 		case method(Method)
    |        `- warning: associated value 'method' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.Method'; this is an error in the Swift 6 language mode
 66 |
 67 | 		public var stringValue: String {
    :
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:148:21: warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
146 | 		}
147 |
148 | 		public static let get = Method("get")
    |                     |- warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'get' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:149:21: warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
147 |
148 | 		public static let get = Method("get")
149 | 		public static let put = Method("put")
    |                     |- warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'put' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:150:21: warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
148 | 		public static let get = Method("get")
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
    |                     |- warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'post' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:151:21: warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
    |                     |- warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'delete' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:152:21: warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
    |                     |- warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'options' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:153:21: warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
    |                     |- warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'head' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 | 		public static let patch = Method("patch")
155 | 		public static let trace = Method("trace")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:154:21: warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
    |                     |- warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'patch' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 | 		public static let trace = Method("trace")
156 | 	}
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:155:21: warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
155 | 		public static let trace = Method("trace")
    |                     |- warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'trace' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 | 	}
157 | }
[422/430] Compiling SwiftOpenAPI ServerVariableObject.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct Version: Codable, Comparable, LosslessStringConvertible, ExpressibleByStringInterpolation {
    |               `- note: consider making struct 'Version' conform to the 'Sendable' protocol
  4 |
  5 | 	public static let zero = Version(0, 0, 0)
    |                    |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
[423/430] Compiling SwiftOpenAPI SpecificationExtendable.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct Version: Codable, Comparable, LosslessStringConvertible, ExpressibleByStringInterpolation {
    |               `- note: consider making struct 'Version' conform to the 'Sendable' protocol
  4 |
  5 | 	public static let zero = Version(0, 0, 0)
    |                    |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
[424/430] Compiling SwiftOpenAPI TagObject.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct Version: Codable, Comparable, LosslessStringConvertible, ExpressibleByStringInterpolation {
    |               `- note: consider making struct 'Version' conform to the 'Sendable' protocol
  4 |
  5 | 	public static let zero = Version(0, 0, 0)
    |                    |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
[425/430] Compiling SwiftOpenAPI Version.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct Version: Codable, Comparable, LosslessStringConvertible, ExpressibleByStringInterpolation {
    |               `- note: consider making struct 'Version' conform to the 'Sendable' protocol
  4 |
  5 | 	public static let zero = Version(0, 0, 0)
    |                    |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
[426/430] Compiling SwiftOpenAPI XMLObject.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct Version: Codable, Comparable, LosslessStringConvertible, ExpressibleByStringInterpolation {
    |               `- note: consider making struct 'Version' conform to the 'Sendable' protocol
  4 |
  5 | 	public static let zero = Version(0, 0, 0)
    |                    |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
[427/430] Compiling SwiftOpenAPI OpenAPIDescriptable.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct Version: Codable, Comparable, LosslessStringConvertible, ExpressibleByStringInterpolation {
    |               `- note: consider making struct 'Version' conform to the 'Sendable' protocol
  4 |
  5 | 	public static let zero = Version(0, 0, 0)
    |                    |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
[428/430] Compiling SwiftOpenAPI OpenAPIDescription.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct Version: Codable, Comparable, LosslessStringConvertible, ExpressibleByStringInterpolation {
    |               `- note: consider making struct 'Version' conform to the 'Sendable' protocol
  4 |
  5 | 	public static let zero = Version(0, 0, 0)
    |                    |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
[429/430] Compiling SwiftOpenAPI OpenAPIType.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct Version: Codable, Comparable, LosslessStringConvertible, ExpressibleByStringInterpolation {
    |               `- note: consider making struct 'Version' conform to the 'Sendable' protocol
  4 |
  5 | 	public static let zero = Version(0, 0, 0)
    |                    |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
[430/430] Compiling SwiftOpenAPI refactor.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct Version: Codable, Comparable, LosslessStringConvertible, ExpressibleByStringInterpolation {
    |               `- note: consider making struct 'Version' conform to the 'Sendable' protocol
  4 |
  5 | 	public static let zero = Version(0, 0, 0)
    |                    |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
Build complete! (120.86s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "600.0.0",
            "upper_bound" : "601.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-syntax.git"
    }
  ],
  "manifest_display_name" : "SwiftOpenAPI",
  "name" : "SwiftOpenAPI",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "SwiftOpenAPI",
      "targets" : [
        "SwiftOpenAPI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SwiftOpenAPIMacros",
      "targets" : [
        "SwiftOpenAPIMacros"
      ],
      "type" : {
        "macro" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftOpenAPITests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftOpenAPITests",
      "path" : "Tests/SwiftOpenAPITests",
      "sources" : [
        "AnyValueTests/AnyValueTests.swift",
        "AnyValueTests/TestHelpers.swift",
        "ArrayDecodingTests.swift",
        "Mocks.swift",
        "SwiftOpenAPITests.swift"
      ],
      "target_dependencies" : [
        "SwiftOpenAPI"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftOpenAPIMacrosTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftOpenAPIMacrosTests",
      "path" : "Tests/SwiftOpenAPIMacrosTests",
      "product_dependencies" : [
        "SwiftSyntaxMacrosTestSupport"
      ],
      "sources" : [
        "SwiftOpenAPIMacrosTests.swift"
      ],
      "target_dependencies" : [
        "SwiftOpenAPI",
        "SwiftOpenAPIMacros"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftOpenAPIMacros",
      "module_type" : "SwiftTarget",
      "name" : "SwiftOpenAPIMacros",
      "path" : "Sources/SwiftOpenAPIMacros",
      "product_dependencies" : [
        "SwiftSyntaxMacros",
        "SwiftCompilerPlugin"
      ],
      "product_memberships" : [
        "SwiftOpenAPI",
        "SwiftOpenAPIMacros"
      ],
      "sources" : [
        "OpenAPIDescriptionMacro.swift",
        "StringError.swift",
        "SyntaxExt.swift"
      ],
      "type" : "macro"
    },
    {
      "c99name" : "SwiftOpenAPI",
      "module_type" : "SwiftTarget",
      "name" : "SwiftOpenAPI",
      "path" : "Sources/SwiftOpenAPI",
      "product_memberships" : [
        "SwiftOpenAPI"
      ],
      "sources" : [
        "Common/AnyRange.swift",
        "Common/Bool++.swift",
        "Common/Codable++.swift",
        "Common/CodingKeys.swift",
        "Common/Collection++.swift",
        "Common/Decimal++.swift",
        "Common/ExpressibleBy.swift",
        "Common/OrderedDictionary/OrderedDictionary.swift",
        "Common/OrderedDictionary/StringConvertibleHintProvider.swift",
        "Common/String++.swift",
        "Encoders/AnyValueEncoder.swift",
        "Encoders/CheckAllKeysDecoder.swift",
        "Encoders/DateEncodingFormat.swift",
        "Encoders/HeadersEncoder.swift",
        "Encoders/KeyEncodingStrategy.swift",
        "Encoders/ParametersEncoder.swift",
        "Encoders/Ref.swift",
        "Encoders/SchemeEncoder.swift",
        "Encoders/TypeRevision/CodableTypes.swift",
        "Encoders/TypeRevision/TypeRevision.swift",
        "Encoders/TypeRevision/TypeRevisionDecoder.swift",
        "Encoders/TypeRevision/TypeRevisionEncoder.swift",
        "Objects/AnyValue.swift",
        "Objects/CallbackObject.swift",
        "Objects/ComponentsObject.swift",
        "Objects/CompositeType.swift",
        "Objects/ContactObject.swift",
        "Objects/ContentObject.swift",
        "Objects/EncodingObject.swift",
        "Objects/ExampleObject.swift",
        "Objects/ExternalDocumentationObject.swift",
        "Objects/HeaderObject.swift",
        "Objects/InfoObject.swift",
        "Objects/JSONSchema/AdditionalProperties.swift",
        "Objects/JSONSchema/DataFormat.swift",
        "Objects/JSONSchema/DataType.swift",
        "Objects/JSONSchema/DiscriminatorObject.swift",
        "Objects/JSONSchema/ExpressibleBySchemaObject.swift",
        "Objects/JSONSchema/SchemaContexts.swift",
        "Objects/JSONSchema/SchemaObjec+deprecated.swift",
        "Objects/JSONSchema/SchemaObject++.swift",
        "Objects/JSONSchema/SchemaObject.swift",
        "Objects/LicenseObject.swift",
        "Objects/LinkObject.swift",
        "Objects/MediaType.swift",
        "Objects/MediaTypeObject.swift",
        "Objects/OAuthFlowObject.swift",
        "Objects/OAuthFlowsObject.swift",
        "Objects/OpenAPIObject.swift",
        "Objects/OperationObject.swift",
        "Objects/ParameterObject.swift",
        "Objects/Path.swift",
        "Objects/PathItemObject.swift",
        "Objects/PathsObject.swift",
        "Objects/ReferenceObject.swift",
        "Objects/ReferenceOr.swift",
        "Objects/RequestBodyObject.swift",
        "Objects/ResponseObject.swift",
        "Objects/ResponsesObject.swift",
        "Objects/RuntimeExpression.swift",
        "Objects/RuntimeExpressionOr.swift",
        "Objects/SecurityRequirementObject.swift",
        "Objects/SecuritySchemeObject.swift",
        "Objects/ServerObject.swift",
        "Objects/ServerVariableObject.swift",
        "Objects/SpecificationExtendable.swift",
        "Objects/TagObject.swift",
        "Objects/Version.swift",
        "Objects/XMLObject.swift",
        "OpenAPIDescriptable.swift",
        "OpenAPIDescription.swift",
        "OpenAPIType.swift",
        "refactor.swift"
      ],
      "target_dependencies" : [
        "SwiftOpenAPIMacros"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Done.