The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of SwiftOpenAPI, reference 2.20.1 (44f946), with Swift 6.0 for macOS (SPM) on 5 Nov 2024 13:57:25 UTC.

Swift 6 data race errors: 56

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

109 | 		public static let urlEncoded: Application = "x-www-form-urlencoded"
110 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:109:21: warning: static property 'urlEncoded' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
107 | 		public static let xml: Application = "xml"
108 | 		public static let octetStream: Application = "octet-stream"
109 | 		public static let urlEncoded: Application = "x-www-form-urlencoded"
    |                     |- warning: static property 'urlEncoded' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'urlEncoded' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | 	}
111 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:127:21: warning: static property 'plain' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
114 | 	}
115 |
116 | 	struct Text: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Text' conform to the 'Sendable' protocol
117 | 		public var rawValue: String
118 |
    :
125 | 		}
126 |
127 | 		public static let plain: Text = "plain"
    |                     |- warning: static property 'plain' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'plain' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | 		public static let html: Text = "html"
129 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:128:21: warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
114 | 	}
115 |
116 | 	struct Text: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Text' conform to the 'Sendable' protocol
117 | 		public var rawValue: String
118 |
    :
126 |
127 | 		public static let plain: Text = "plain"
128 | 		public static let html: Text = "html"
    |                     |- warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'html' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 | 	}
130 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:150:21: warning: static property 'formData' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
137 | 	}
138 |
139 | 	struct Multipart: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Multipart' conform to the 'Sendable' protocol
140 | 		public var rawValue: String
141 |
    :
148 | 		}
149 |
150 | 		public static let formData: Multipart = "form-data"
    |                     |- warning: static property 'formData' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'formData' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | 		public static let byteranges: Multipart = "byteranges"
152 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:151:21: warning: static property 'byteranges' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
137 | 	}
138 |
139 | 	struct Multipart: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Multipart' conform to the 'Sendable' protocol
140 | 		public var rawValue: String
141 |
    :
149 |
150 | 		public static let formData: Multipart = "form-data"
151 | 		public static let byteranges: Multipart = "byteranges"
    |                     |- warning: static property 'byteranges' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'byteranges' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 | 	}
153 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:158:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct MediaType: Codable, Hashable, RawRepresentable, ExpressibleByStringLiteral, LosslessStringConvertible {
    |               `- note: consider making struct 'MediaType' conform to the 'Sendable' protocol
  4 |
  5 | 	public typealias RawValue = String
    :
156 | 	}
157 |
158 | 	static let any = MediaType("*", "*")
    |             |- warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate 'any' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
159 | }
160 |
[266/276] Compiling SwiftOpenAPI LicenseObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/SchemaContexts.swift:245:13: warning: static property 'invalid' is not concurrency-safe because non-'Sendable' type 'CompositionContext' may have shared mutable state; this is an error in the Swift 6 language mode
219 | }
220 |
221 | public struct CompositionContext: Codable, Equatable {
    |               `- note: consider making struct 'CompositionContext' conform to the 'Sendable' protocol
222 |
223 | 	public var allOf: [ReferenceOr<SchemaObject>]?
    :
243 | 	}
244 |
245 | 	static let invalid = CompositionContext()
    |             |- warning: static property 'invalid' is not concurrency-safe because non-'Sendable' type 'CompositionContext' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate 'invalid' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
246 | }
247 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | 	static var ipv4: DataFormat = "ipv4"
36 | 	static var ipv6: DataFormat = "ipv6"
37 | 	static var int64: DataFormat = "int64"
   |             |- warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'int64' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'int64' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | 	static var int32: DataFormat = "int32"
39 | 	static var double: DataFormat = "double"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:40:13: warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | 	static var int32: DataFormat = "int32"
39 | 	static var double: DataFormat = "double"
40 | 	static var float: DataFormat = "float"
   |             |- warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'float' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'float' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | 	static var decimal: DataFormat = "decimal"
42 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:41:13: warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
39 | 	static var double: DataFormat = "double"
40 | 	static var float: DataFormat = "float"
41 | 	static var decimal: DataFormat = "decimal"
   |             |- warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'decimal' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'decimal' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | 	/// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:39:13: warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
37 | 	static var int64: DataFormat = "int64"
38 | 	static var int32: DataFormat = "int32"
39 | 	static var double: DataFormat = "double"
   |             |- warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'double' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'double' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | 	static var float: DataFormat = "float"
41 | 	static var decimal: DataFormat = "decimal"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | 	static var email: DataFormat = "email"
32 | 	static var uuid: DataFormat = "uuid"
33 | 	static var uri: DataFormat = "uri"
   |             |- warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'uri' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'uri' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | 	static var hostname: DataFormat = "hostname"
35 | 	static var ipv4: DataFormat = "ipv4"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | 	static var email: DataFormat = "email"
32 | 	static var uuid: DataFormat = "uuid"
   |             |- warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'uuid' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'uuid' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | 	static var uri: DataFormat = "uri"
34 | 	static var hostname: DataFormat = "hostname"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:44:13: warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | 	/// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
44 | 	static var date: DataFormat = "date"
   |             |- warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'date' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'date' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | 	/// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 | 	/// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
47 | 	static var dateTime: DataFormat = "date-time"
   |             |- warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'dateTime' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'dateTime' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// a hint to UIs to mask the input
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:11:13: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension DateEncodingFormat {
10 |
11 | 	static var `default`: DateEncodingFormat = .dateTime
   |             |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 | 	/// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:10:13: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public extension KeyEncodingStrategy {
 9 |
10 | 	static var `default`: KeyEncodingStrategy = .useDefaultKeys
   |             |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:104:21: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
102 | 		}
103 |
104 | 		public static let json: Application = "json"
    |                     |- warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'json' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | 		public static let schemaJson: Application = "schema+json"
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:105:21: warning: static property 'schemaJson' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
103 |
104 | 		public static let json: Application = "json"
105 | 		public static let schemaJson: Application = "schema+json"
    |                     |- warning: static property 'schemaJson' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'schemaJson' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
107 | 		public static let xml: Application = "xml"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:106:21: warning: static property 'schemaInstanceJson' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
104 | 		public static let json: Application = "json"
105 | 		public static let schemaJson: Application = "schema+json"
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
    |                     |- warning: static property 'schemaInstanceJson' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'schemaInstanceJson' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | 		public static let xml: Application = "xml"
108 | 		public static let octetStream: Application = "octet-stream"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:107:21: warning: static property 'xml' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
105 | 		public static let schemaJson: Application = "schema+json"
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
107 | 		public static let xml: Application = "xml"
    |                     |- warning: static property 'xml' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'xml' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 | 		public static let octetStream: Application = "octet-stream"
109 | 		public static let urlEncoded: Application = "x-www-form-urlencoded"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:108:21: warning: static property 'octetStream' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
107 | 		public static let xml: Application = "xml"
108 | 		public static let octetStream: Application = "octet-stream"
    |                     |- warning: static property 'octetStream' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'octetStream' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 | 		public static let urlEncoded: Application = "x-www-form-urlencoded"
110 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:109:21: warning: static property 'urlEncoded' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
107 | 		public static let xml: Application = "xml"
108 | 		public static let octetStream: Application = "octet-stream"
109 | 		public static let urlEncoded: Application = "x-www-form-urlencoded"
    |                     |- warning: static property 'urlEncoded' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'urlEncoded' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | 	}
111 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:127:21: warning: static property 'plain' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
114 | 	}
115 |
116 | 	struct Text: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Text' conform to the 'Sendable' protocol
117 | 		public var rawValue: String
118 |
    :
125 | 		}
126 |
127 | 		public static let plain: Text = "plain"
    |                     |- warning: static property 'plain' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'plain' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | 		public static let html: Text = "html"
129 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:128:21: warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
114 | 	}
115 |
116 | 	struct Text: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Text' conform to the 'Sendable' protocol
117 | 		public var rawValue: String
118 |
    :
126 |
127 | 		public static let plain: Text = "plain"
128 | 		public static let html: Text = "html"
    |                     |- warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'html' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 | 	}
130 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:150:21: warning: static property 'formData' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
137 | 	}
138 |
139 | 	struct Multipart: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Multipart' conform to the 'Sendable' protocol
140 | 		public var rawValue: String
141 |
    :
148 | 		}
149 |
150 | 		public static let formData: Multipart = "form-data"
    |                     |- warning: static property 'formData' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'formData' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | 		public static let byteranges: Multipart = "byteranges"
152 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:151:21: warning: static property 'byteranges' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
137 | 	}
138 |
139 | 	struct Multipart: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Multipart' conform to the 'Sendable' protocol
140 | 		public var rawValue: String
141 |
    :
149 |
150 | 		public static let formData: Multipart = "form-data"
151 | 		public static let byteranges: Multipart = "byteranges"
    |                     |- warning: static property 'byteranges' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'byteranges' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 | 	}
153 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:158:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct MediaType: Codable, Hashable, RawRepresentable, ExpressibleByStringLiteral, LosslessStringConvertible {
    |               `- note: consider making struct 'MediaType' conform to the 'Sendable' protocol
  4 |
  5 | 	public typealias RawValue = String
    :
156 | 	}
157 |
158 | 	static let any = MediaType("*", "*")
    |             |- warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate 'any' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
159 | }
160 |
[267/276] Compiling SwiftOpenAPI LinkObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/SchemaContexts.swift:245:13: warning: static property 'invalid' is not concurrency-safe because non-'Sendable' type 'CompositionContext' may have shared mutable state; this is an error in the Swift 6 language mode
219 | }
220 |
221 | public struct CompositionContext: Codable, Equatable {
    |               `- note: consider making struct 'CompositionContext' conform to the 'Sendable' protocol
222 |
223 | 	public var allOf: [ReferenceOr<SchemaObject>]?
    :
243 | 	}
244 |
245 | 	static let invalid = CompositionContext()
    |             |- warning: static property 'invalid' is not concurrency-safe because non-'Sendable' type 'CompositionContext' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate 'invalid' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
246 | }
247 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | 	static var ipv4: DataFormat = "ipv4"
36 | 	static var ipv6: DataFormat = "ipv6"
37 | 	static var int64: DataFormat = "int64"
   |             |- warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'int64' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'int64' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | 	static var int32: DataFormat = "int32"
39 | 	static var double: DataFormat = "double"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:40:13: warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | 	static var int32: DataFormat = "int32"
39 | 	static var double: DataFormat = "double"
40 | 	static var float: DataFormat = "float"
   |             |- warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'float' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'float' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | 	static var decimal: DataFormat = "decimal"
42 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:41:13: warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
39 | 	static var double: DataFormat = "double"
40 | 	static var float: DataFormat = "float"
41 | 	static var decimal: DataFormat = "decimal"
   |             |- warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'decimal' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'decimal' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | 	/// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:39:13: warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
37 | 	static var int64: DataFormat = "int64"
38 | 	static var int32: DataFormat = "int32"
39 | 	static var double: DataFormat = "double"
   |             |- warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'double' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'double' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | 	static var float: DataFormat = "float"
41 | 	static var decimal: DataFormat = "decimal"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | 	static var email: DataFormat = "email"
32 | 	static var uuid: DataFormat = "uuid"
33 | 	static var uri: DataFormat = "uri"
   |             |- warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'uri' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'uri' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | 	static var hostname: DataFormat = "hostname"
35 | 	static var ipv4: DataFormat = "ipv4"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | 	static var email: DataFormat = "email"
32 | 	static var uuid: DataFormat = "uuid"
   |             |- warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'uuid' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'uuid' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | 	static var uri: DataFormat = "uri"
34 | 	static var hostname: DataFormat = "hostname"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:44:13: warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | 	/// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
44 | 	static var date: DataFormat = "date"
   |             |- warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'date' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'date' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | 	/// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 | 	/// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
47 | 	static var dateTime: DataFormat = "date-time"
   |             |- warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'dateTime' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'dateTime' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// a hint to UIs to mask the input
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:11:13: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension DateEncodingFormat {
10 |
11 | 	static var `default`: DateEncodingFormat = .dateTime
   |             |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 | 	/// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:10:13: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public extension KeyEncodingStrategy {
 9 |
10 | 	static var `default`: KeyEncodingStrategy = .useDefaultKeys
   |             |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:104:21: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
102 | 		}
103 |
104 | 		public static let json: Application = "json"
    |                     |- warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'json' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | 		public static let schemaJson: Application = "schema+json"
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:105:21: warning: static property 'schemaJson' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
103 |
104 | 		public static let json: Application = "json"
105 | 		public static let schemaJson: Application = "schema+json"
    |                     |- warning: static property 'schemaJson' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'schemaJson' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
107 | 		public static let xml: Application = "xml"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:106:21: warning: static property 'schemaInstanceJson' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
104 | 		public static let json: Application = "json"
105 | 		public static let schemaJson: Application = "schema+json"
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
    |                     |- warning: static property 'schemaInstanceJson' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'schemaInstanceJson' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | 		public static let xml: Application = "xml"
108 | 		public static let octetStream: Application = "octet-stream"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:107:21: warning: static property 'xml' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
105 | 		public static let schemaJson: Application = "schema+json"
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
107 | 		public static let xml: Application = "xml"
    |                     |- warning: static property 'xml' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'xml' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 | 		public static let octetStream: Application = "octet-stream"
109 | 		public static let urlEncoded: Application = "x-www-form-urlencoded"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:108:21: warning: static property 'octetStream' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
107 | 		public static let xml: Application = "xml"
108 | 		public static let octetStream: Application = "octet-stream"
    |                     |- warning: static property 'octetStream' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'octetStream' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 | 		public static let urlEncoded: Application = "x-www-form-urlencoded"
110 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:109:21: warning: static property 'urlEncoded' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
107 | 		public static let xml: Application = "xml"
108 | 		public static let octetStream: Application = "octet-stream"
109 | 		public static let urlEncoded: Application = "x-www-form-urlencoded"
    |                     |- warning: static property 'urlEncoded' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'urlEncoded' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | 	}
111 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:127:21: warning: static property 'plain' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
114 | 	}
115 |
116 | 	struct Text: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Text' conform to the 'Sendable' protocol
117 | 		public var rawValue: String
118 |
    :
125 | 		}
126 |
127 | 		public static let plain: Text = "plain"
    |                     |- warning: static property 'plain' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'plain' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | 		public static let html: Text = "html"
129 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:128:21: warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
114 | 	}
115 |
116 | 	struct Text: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Text' conform to the 'Sendable' protocol
117 | 		public var rawValue: String
118 |
    :
126 |
127 | 		public static let plain: Text = "plain"
128 | 		public static let html: Text = "html"
    |                     |- warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'html' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 | 	}
130 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:150:21: warning: static property 'formData' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
137 | 	}
138 |
139 | 	struct Multipart: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Multipart' conform to the 'Sendable' protocol
140 | 		public var rawValue: String
141 |
    :
148 | 		}
149 |
150 | 		public static let formData: Multipart = "form-data"
    |                     |- warning: static property 'formData' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'formData' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | 		public static let byteranges: Multipart = "byteranges"
152 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:151:21: warning: static property 'byteranges' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
137 | 	}
138 |
139 | 	struct Multipart: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Multipart' conform to the 'Sendable' protocol
140 | 		public var rawValue: String
141 |
    :
149 |
150 | 		public static let formData: Multipart = "form-data"
151 | 		public static let byteranges: Multipart = "byteranges"
    |                     |- warning: static property 'byteranges' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'byteranges' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 | 	}
153 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:158:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct MediaType: Codable, Hashable, RawRepresentable, ExpressibleByStringLiteral, LosslessStringConvertible {
    |               `- note: consider making struct 'MediaType' conform to the 'Sendable' protocol
  4 |
  5 | 	public typealias RawValue = String
    :
156 | 	}
157 |
158 | 	static let any = MediaType("*", "*")
    |             |- warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate 'any' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
159 | }
160 |
[268/276] Compiling SwiftOpenAPI MediaType.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/SchemaContexts.swift:245:13: warning: static property 'invalid' is not concurrency-safe because non-'Sendable' type 'CompositionContext' may have shared mutable state; this is an error in the Swift 6 language mode
219 | }
220 |
221 | public struct CompositionContext: Codable, Equatable {
    |               `- note: consider making struct 'CompositionContext' conform to the 'Sendable' protocol
222 |
223 | 	public var allOf: [ReferenceOr<SchemaObject>]?
    :
243 | 	}
244 |
245 | 	static let invalid = CompositionContext()
    |             |- warning: static property 'invalid' is not concurrency-safe because non-'Sendable' type 'CompositionContext' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate 'invalid' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
246 | }
247 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | 	static var ipv4: DataFormat = "ipv4"
36 | 	static var ipv6: DataFormat = "ipv6"
37 | 	static var int64: DataFormat = "int64"
   |             |- warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'int64' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'int64' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | 	static var int32: DataFormat = "int32"
39 | 	static var double: DataFormat = "double"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:40:13: warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | 	static var int32: DataFormat = "int32"
39 | 	static var double: DataFormat = "double"
40 | 	static var float: DataFormat = "float"
   |             |- warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'float' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'float' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | 	static var decimal: DataFormat = "decimal"
42 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:41:13: warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
39 | 	static var double: DataFormat = "double"
40 | 	static var float: DataFormat = "float"
41 | 	static var decimal: DataFormat = "decimal"
   |             |- warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'decimal' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'decimal' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | 	/// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:39:13: warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
37 | 	static var int64: DataFormat = "int64"
38 | 	static var int32: DataFormat = "int32"
39 | 	static var double: DataFormat = "double"
   |             |- warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'double' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'double' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | 	static var float: DataFormat = "float"
41 | 	static var decimal: DataFormat = "decimal"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | 	static var email: DataFormat = "email"
32 | 	static var uuid: DataFormat = "uuid"
33 | 	static var uri: DataFormat = "uri"
   |             |- warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'uri' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'uri' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | 	static var hostname: DataFormat = "hostname"
35 | 	static var ipv4: DataFormat = "ipv4"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | 	static var email: DataFormat = "email"
32 | 	static var uuid: DataFormat = "uuid"
   |             |- warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'uuid' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'uuid' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | 	static var uri: DataFormat = "uri"
34 | 	static var hostname: DataFormat = "hostname"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:44:13: warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | 	/// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
44 | 	static var date: DataFormat = "date"
   |             |- warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'date' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'date' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | 	/// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 | 	/// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
47 | 	static var dateTime: DataFormat = "date-time"
   |             |- warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'dateTime' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'dateTime' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// a hint to UIs to mask the input
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:11:13: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension DateEncodingFormat {
10 |
11 | 	static var `default`: DateEncodingFormat = .dateTime
   |             |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 | 	/// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:10:13: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public extension KeyEncodingStrategy {
 9 |
10 | 	static var `default`: KeyEncodingStrategy = .useDefaultKeys
   |             |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:104:21: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
102 | 		}
103 |
104 | 		public static let json: Application = "json"
    |                     |- warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'json' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | 		public static let schemaJson: Application = "schema+json"
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:105:21: warning: static property 'schemaJson' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
103 |
104 | 		public static let json: Application = "json"
105 | 		public static let schemaJson: Application = "schema+json"
    |                     |- warning: static property 'schemaJson' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'schemaJson' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
107 | 		public static let xml: Application = "xml"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:106:21: warning: static property 'schemaInstanceJson' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
104 | 		public static let json: Application = "json"
105 | 		public static let schemaJson: Application = "schema+json"
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
    |                     |- warning: static property 'schemaInstanceJson' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'schemaInstanceJson' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | 		public static let xml: Application = "xml"
108 | 		public static let octetStream: Application = "octet-stream"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:107:21: warning: static property 'xml' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
105 | 		public static let schemaJson: Application = "schema+json"
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
107 | 		public static let xml: Application = "xml"
    |                     |- warning: static property 'xml' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'xml' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 | 		public static let octetStream: Application = "octet-stream"
109 | 		public static let urlEncoded: Application = "x-www-form-urlencoded"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:108:21: warning: static property 'octetStream' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
107 | 		public static let xml: Application = "xml"
108 | 		public static let octetStream: Application = "octet-stream"
    |                     |- warning: static property 'octetStream' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'octetStream' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 | 		public static let urlEncoded: Application = "x-www-form-urlencoded"
110 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:109:21: warning: static property 'urlEncoded' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
107 | 		public static let xml: Application = "xml"
108 | 		public static let octetStream: Application = "octet-stream"
109 | 		public static let urlEncoded: Application = "x-www-form-urlencoded"
    |                     |- warning: static property 'urlEncoded' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'urlEncoded' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | 	}
111 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:127:21: warning: static property 'plain' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
114 | 	}
115 |
116 | 	struct Text: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Text' conform to the 'Sendable' protocol
117 | 		public var rawValue: String
118 |
    :
125 | 		}
126 |
127 | 		public static let plain: Text = "plain"
    |                     |- warning: static property 'plain' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'plain' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | 		public static let html: Text = "html"
129 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:128:21: warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
114 | 	}
115 |
116 | 	struct Text: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Text' conform to the 'Sendable' protocol
117 | 		public var rawValue: String
118 |
    :
126 |
127 | 		public static let plain: Text = "plain"
128 | 		public static let html: Text = "html"
    |                     |- warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'html' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 | 	}
130 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:150:21: warning: static property 'formData' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
137 | 	}
138 |
139 | 	struct Multipart: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Multipart' conform to the 'Sendable' protocol
140 | 		public var rawValue: String
141 |
    :
148 | 		}
149 |
150 | 		public static let formData: Multipart = "form-data"
    |                     |- warning: static property 'formData' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'formData' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | 		public static let byteranges: Multipart = "byteranges"
152 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:151:21: warning: static property 'byteranges' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
137 | 	}
138 |
139 | 	struct Multipart: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Multipart' conform to the 'Sendable' protocol
140 | 		public var rawValue: String
141 |
    :
149 |
150 | 		public static let formData: Multipart = "form-data"
151 | 		public static let byteranges: Multipart = "byteranges"
    |                     |- warning: static property 'byteranges' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'byteranges' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 | 	}
153 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:158:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct MediaType: Codable, Hashable, RawRepresentable, ExpressibleByStringLiteral, LosslessStringConvertible {
    |               `- note: consider making struct 'MediaType' conform to the 'Sendable' protocol
  4 |
  5 | 	public typealias RawValue = String
    :
156 | 	}
157 |
158 | 	static let any = MediaType("*", "*")
    |             |- warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate 'any' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
159 | }
160 |
[269/276] Compiling SwiftOpenAPI TagObject.swift
/Users/admin/builder/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: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | 	static var ipv4: DataFormat = "ipv4"
36 | 	static var ipv6: DataFormat = "ipv6"
37 | 	static var int64: DataFormat = "int64"
   |             |- warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'int64' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'int64' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | 	static var int32: DataFormat = "int32"
39 | 	static var double: DataFormat = "double"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | 	static var ipv6: DataFormat = "ipv6"
37 | 	static var int64: DataFormat = "int64"
38 | 	static var int32: DataFormat = "int32"
   |             |- warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'int32' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'int32' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | 	static var double: DataFormat = "double"
40 | 	static var float: DataFormat = "float"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 | 	/// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
47 | 	static var dateTime: DataFormat = "date-time"
   |             |- warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'dateTime' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'dateTime' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// a hint to UIs to mask the input
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
51 |
52 | 	/// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
53 | 	static var byte: DataFormat = "byte"
   |             |- warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'byte' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'byte' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// binary data, used to describe files
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | 	static var email: DataFormat = "email"
32 | 	static var uuid: DataFormat = "uuid"
   |             |- warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'uuid' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'uuid' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | 	static var uri: DataFormat = "uri"
34 | 	static var hostname: DataFormat = "hostname"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | 	static var email: DataFormat = "email"
32 | 	static var uuid: DataFormat = "uuid"
33 | 	static var uri: DataFormat = "uri"
   |             |- warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'uri' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'uri' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | 	static var hostname: DataFormat = "hostname"
35 | 	static var ipv4: DataFormat = "ipv4"
[270/276] Compiling SwiftOpenAPI Version.swift
/Users/admin/builder/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: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | 	static var ipv4: DataFormat = "ipv4"
36 | 	static var ipv6: DataFormat = "ipv6"
37 | 	static var int64: DataFormat = "int64"
   |             |- warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'int64' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'int64' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | 	static var int32: DataFormat = "int32"
39 | 	static var double: DataFormat = "double"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | 	static var ipv6: DataFormat = "ipv6"
37 | 	static var int64: DataFormat = "int64"
38 | 	static var int32: DataFormat = "int32"
   |             |- warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'int32' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'int32' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | 	static var double: DataFormat = "double"
40 | 	static var float: DataFormat = "float"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 | 	/// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
47 | 	static var dateTime: DataFormat = "date-time"
   |             |- warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'dateTime' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'dateTime' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// a hint to UIs to mask the input
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
51 |
52 | 	/// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
53 | 	static var byte: DataFormat = "byte"
   |             |- warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'byte' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'byte' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// binary data, used to describe files
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | 	static var email: DataFormat = "email"
32 | 	static var uuid: DataFormat = "uuid"
   |             |- warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'uuid' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'uuid' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | 	static var uri: DataFormat = "uri"
34 | 	static var hostname: DataFormat = "hostname"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | 	static var email: DataFormat = "email"
32 | 	static var uuid: DataFormat = "uuid"
33 | 	static var uri: DataFormat = "uri"
   |             |- warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'uri' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'uri' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | 	static var hostname: DataFormat = "hostname"
35 | 	static var ipv4: DataFormat = "ipv4"
[271/276] Compiling SwiftOpenAPI XMLObject.swift
/Users/admin/builder/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: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | 	static var ipv4: DataFormat = "ipv4"
36 | 	static var ipv6: DataFormat = "ipv6"
37 | 	static var int64: DataFormat = "int64"
   |             |- warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'int64' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'int64' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | 	static var int32: DataFormat = "int32"
39 | 	static var double: DataFormat = "double"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | 	static var ipv6: DataFormat = "ipv6"
37 | 	static var int64: DataFormat = "int64"
38 | 	static var int32: DataFormat = "int32"
   |             |- warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'int32' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'int32' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | 	static var double: DataFormat = "double"
40 | 	static var float: DataFormat = "float"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 | 	/// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
47 | 	static var dateTime: DataFormat = "date-time"
   |             |- warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'dateTime' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'dateTime' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// a hint to UIs to mask the input
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
51 |
52 | 	/// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
53 | 	static var byte: DataFormat = "byte"
   |             |- warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'byte' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'byte' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// binary data, used to describe files
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | 	static var email: DataFormat = "email"
32 | 	static var uuid: DataFormat = "uuid"
   |             |- warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'uuid' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'uuid' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | 	static var uri: DataFormat = "uri"
34 | 	static var hostname: DataFormat = "hostname"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | 	static var email: DataFormat = "email"
32 | 	static var uuid: DataFormat = "uuid"
33 | 	static var uri: DataFormat = "uri"
   |             |- warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'uri' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'uri' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | 	static var hostname: DataFormat = "hostname"
35 | 	static var ipv4: DataFormat = "ipv4"
[272/276] Compiling SwiftOpenAPI OpenAPIDescriptable.swift
/Users/admin/builder/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: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | 	static var ipv4: DataFormat = "ipv4"
36 | 	static var ipv6: DataFormat = "ipv6"
37 | 	static var int64: DataFormat = "int64"
   |             |- warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'int64' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'int64' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | 	static var int32: DataFormat = "int32"
39 | 	static var double: DataFormat = "double"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | 	static var ipv6: DataFormat = "ipv6"
37 | 	static var int64: DataFormat = "int64"
38 | 	static var int32: DataFormat = "int32"
   |             |- warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'int32' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'int32' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | 	static var double: DataFormat = "double"
40 | 	static var float: DataFormat = "float"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 | 	/// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
47 | 	static var dateTime: DataFormat = "date-time"
   |             |- warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'dateTime' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'dateTime' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// a hint to UIs to mask the input
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
51 |
52 | 	/// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
53 | 	static var byte: DataFormat = "byte"
   |             |- warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'byte' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'byte' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// binary data, used to describe files
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | 	static var email: DataFormat = "email"
32 | 	static var uuid: DataFormat = "uuid"
   |             |- warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'uuid' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'uuid' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | 	static var uri: DataFormat = "uri"
34 | 	static var hostname: DataFormat = "hostname"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | 	static var email: DataFormat = "email"
32 | 	static var uuid: DataFormat = "uuid"
33 | 	static var uri: DataFormat = "uri"
   |             |- warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'uri' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'uri' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | 	static var hostname: DataFormat = "hostname"
35 | 	static var ipv4: DataFormat = "ipv4"
[273/276] Compiling SwiftOpenAPI OpenAPIDescription.swift
/Users/admin/builder/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: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | 	static var ipv4: DataFormat = "ipv4"
36 | 	static var ipv6: DataFormat = "ipv6"
37 | 	static var int64: DataFormat = "int64"
   |             |- warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'int64' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'int64' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | 	static var int32: DataFormat = "int32"
39 | 	static var double: DataFormat = "double"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | 	static var ipv6: DataFormat = "ipv6"
37 | 	static var int64: DataFormat = "int64"
38 | 	static var int32: DataFormat = "int32"
   |             |- warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'int32' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'int32' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | 	static var double: DataFormat = "double"
40 | 	static var float: DataFormat = "float"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 | 	/// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
47 | 	static var dateTime: DataFormat = "date-time"
   |             |- warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'dateTime' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'dateTime' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// a hint to UIs to mask the input
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
51 |
52 | 	/// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
53 | 	static var byte: DataFormat = "byte"
   |             |- warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'byte' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'byte' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// binary data, used to describe files
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | 	static var email: DataFormat = "email"
32 | 	static var uuid: DataFormat = "uuid"
   |             |- warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'uuid' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'uuid' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | 	static var uri: DataFormat = "uri"
34 | 	static var hostname: DataFormat = "hostname"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | 	static var email: DataFormat = "email"
32 | 	static var uuid: DataFormat = "uuid"
33 | 	static var uri: DataFormat = "uri"
   |             |- warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'uri' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'uri' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | 	static var hostname: DataFormat = "hostname"
35 | 	static var ipv4: DataFormat = "ipv4"
[274/276] Compiling SwiftOpenAPI OpenAPIType.swift
/Users/admin/builder/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: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | 	static var ipv4: DataFormat = "ipv4"
36 | 	static var ipv6: DataFormat = "ipv6"
37 | 	static var int64: DataFormat = "int64"
   |             |- warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'int64' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'int64' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | 	static var int32: DataFormat = "int32"
39 | 	static var double: DataFormat = "double"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | 	static var ipv6: DataFormat = "ipv6"
37 | 	static var int64: DataFormat = "int64"
38 | 	static var int32: DataFormat = "int32"
   |             |- warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'int32' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'int32' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | 	static var double: DataFormat = "double"
40 | 	static var float: DataFormat = "float"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 | 	/// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
47 | 	static var dateTime: DataFormat = "date-time"
   |             |- warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'dateTime' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'dateTime' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// a hint to UIs to mask the input
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
51 |
52 | 	/// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
53 | 	static var byte: DataFormat = "byte"
   |             |- warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'byte' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'byte' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// binary data, used to describe files
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | 	static var email: DataFormat = "email"
32 | 	static var uuid: DataFormat = "uuid"
   |             |- warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'uuid' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'uuid' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | 	static var uri: DataFormat = "uri"
34 | 	static var hostname: DataFormat = "hostname"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | 	static var email: DataFormat = "email"
32 | 	static var uuid: DataFormat = "uuid"
33 | 	static var uri: DataFormat = "uri"
   |             |- warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'uri' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'uri' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | 	static var hostname: DataFormat = "hostname"
35 | 	static var ipv4: DataFormat = "ipv4"
[275/276] Compiling SwiftOpenAPI refactor.swift
/Users/admin/builder/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: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | 	static var ipv4: DataFormat = "ipv4"
36 | 	static var ipv6: DataFormat = "ipv6"
37 | 	static var int64: DataFormat = "int64"
   |             |- warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'int64' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'int64' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | 	static var int32: DataFormat = "int32"
39 | 	static var double: DataFormat = "double"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | 	static var ipv6: DataFormat = "ipv6"
37 | 	static var int64: DataFormat = "int64"
38 | 	static var int32: DataFormat = "int32"
   |             |- warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'int32' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'int32' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | 	static var double: DataFormat = "double"
40 | 	static var float: DataFormat = "float"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 | 	/// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
47 | 	static var dateTime: DataFormat = "date-time"
   |             |- warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'dateTime' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'dateTime' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// a hint to UIs to mask the input
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
51 |
52 | 	/// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
53 | 	static var byte: DataFormat = "byte"
   |             |- warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'byte' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'byte' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// binary data, used to describe files
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | 	static var email: DataFormat = "email"
32 | 	static var uuid: DataFormat = "uuid"
   |             |- warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'uuid' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'uuid' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | 	static var uri: DataFormat = "uri"
34 | 	static var hostname: DataFormat = "hostname"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | 	static var email: DataFormat = "email"
32 | 	static var uuid: DataFormat = "uuid"
33 | 	static var uri: DataFormat = "uri"
   |             |- warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'uri' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'uri' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | 	static var hostname: DataFormat = "hostname"
35 | 	static var ipv4: DataFormat = "ipv4"
[276/276] Emitting module SwiftOpenAPI
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Common/CodingKeys.swift:23:6: warning: stored property 'value' of 'Sendable'-conforming generic struct 'StringKey' has non-sendable type 'Value'; this is an error in the Swift 6 language mode
17 | }
18 |
19 | struct StringKey<Value: LosslessStringConvertible>: CodingKey {
   |                  `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
20 |
21 | 	var stringValue: String { value.description }
22 | 	var intValue: Int? { nil }
23 | 	var value: Value
   |      `- warning: stored property 'value' of 'Sendable'-conforming generic struct 'StringKey' has non-sendable type 'Value'; this is an error in the Swift 6 language mode
24 |
25 | 	init?(stringValue: String) {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:11:13: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension DateEncodingFormat {
10 |
11 | 	static var `default`: DateEncodingFormat = .dateTime
   |             |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 | 	/// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:70:13: warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
68 | }
69 |
70 | private let isoFormatter = ISO8601DateFormatter()
   |             |- warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'isoFormatter' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | private let dateFormatter = DateFormatter()
72 |
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:10:13: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public extension KeyEncodingStrategy {
 9 |
10 | 	static var `default`: KeyEncodingStrategy = .useDefaultKeys
   |             |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:12:13: warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | 	static var `default`: KeyEncodingStrategy = .useDefaultKeys
11 |
12 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
   |             |- warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'useDefaultKeys' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'useDefaultKeys' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | 	static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:5:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | struct TypeInfo {
    |        `- note: consider making struct 'TypeInfo' conform to the 'Sendable' protocol
  4 |
  5 | 	static let any = TypeInfo(type: Any.self, container: .single(.null))
    |             |- warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate 'any' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	var type: Any.Type
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:31:13: warning: static property 'email' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 | public extension DataFormat {
30 |
31 | 	static var email: DataFormat = "email"
   |             |- warning: static property 'email' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'email' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'email' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | 	static var uuid: DataFormat = "uuid"
33 | 	static var uri: DataFormat = "uri"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | 	static var email: DataFormat = "email"
32 | 	static var uuid: DataFormat = "uuid"
   |             |- warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'uuid' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'uuid' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | 	static var uri: DataFormat = "uri"
34 | 	static var hostname: DataFormat = "hostname"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | 	static var email: DataFormat = "email"
32 | 	static var uuid: DataFormat = "uuid"
33 | 	static var uri: DataFormat = "uri"
   |             |- warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'uri' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'uri' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | 	static var hostname: DataFormat = "hostname"
35 | 	static var ipv4: DataFormat = "ipv4"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:34:13: warning: static property 'hostname' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
32 | 	static var uuid: DataFormat = "uuid"
33 | 	static var uri: DataFormat = "uri"
34 | 	static var hostname: DataFormat = "hostname"
   |             |- warning: static property 'hostname' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'hostname' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'hostname' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | 	static var ipv4: DataFormat = "ipv4"
36 | 	static var ipv6: DataFormat = "ipv6"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:35:13: warning: static property 'ipv4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | 	static var uri: DataFormat = "uri"
34 | 	static var hostname: DataFormat = "hostname"
35 | 	static var ipv4: DataFormat = "ipv4"
   |             |- warning: static property 'ipv4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'ipv4' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'ipv4' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | 	static var ipv6: DataFormat = "ipv6"
37 | 	static var int64: DataFormat = "int64"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:36:13: warning: static property 'ipv6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 | 	static var hostname: DataFormat = "hostname"
35 | 	static var ipv4: DataFormat = "ipv4"
36 | 	static var ipv6: DataFormat = "ipv6"
   |             |- warning: static property 'ipv6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'ipv6' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'ipv6' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | 	static var int64: DataFormat = "int64"
38 | 	static var int32: DataFormat = "int32"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | 	static var ipv4: DataFormat = "ipv4"
36 | 	static var ipv6: DataFormat = "ipv6"
37 | 	static var int64: DataFormat = "int64"
   |             |- warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'int64' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'int64' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | 	static var int32: DataFormat = "int32"
39 | 	static var double: DataFormat = "double"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | 	static var ipv6: DataFormat = "ipv6"
37 | 	static var int64: DataFormat = "int64"
38 | 	static var int32: DataFormat = "int32"
   |             |- warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'int32' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'int32' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | 	static var double: DataFormat = "double"
40 | 	static var float: DataFormat = "float"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:39:13: warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
37 | 	static var int64: DataFormat = "int64"
38 | 	static var int32: DataFormat = "int32"
39 | 	static var double: DataFormat = "double"
   |             |- warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'double' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'double' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | 	static var float: DataFormat = "float"
41 | 	static var decimal: DataFormat = "decimal"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:40:13: warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | 	static var int32: DataFormat = "int32"
39 | 	static var double: DataFormat = "double"
40 | 	static var float: DataFormat = "float"
   |             |- warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'float' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'float' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | 	static var decimal: DataFormat = "decimal"
42 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:41:13: warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
39 | 	static var double: DataFormat = "double"
40 | 	static var float: DataFormat = "float"
41 | 	static var decimal: DataFormat = "decimal"
   |             |- warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'decimal' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'decimal' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | 	/// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:44:13: warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | 	/// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
44 | 	static var date: DataFormat = "date"
   |             |- warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'date' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'date' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | 	/// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 | 	/// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
47 | 	static var dateTime: DataFormat = "date-time"
   |             |- warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'dateTime' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'dateTime' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// a hint to UIs to mask the input
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:50:13: warning: static property 'password' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | 	/// a hint to UIs to mask the input
50 | 	static var password: DataFormat = "password"
   |             |- warning: static property 'password' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'password' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'password' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | 	/// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
51 |
52 | 	/// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
53 | 	static var byte: DataFormat = "byte"
   |             |- warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'byte' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'byte' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// binary data, used to describe files
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:56:13: warning: static property 'binary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
54 |
55 | 	/// binary data, used to describe files
56 | 	static var binary: DataFormat = "binary"
   |             |- warning: static property 'binary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'binary' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'binary' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/SchemaContexts.swift:245:13: warning: static property 'invalid' is not concurrency-safe because non-'Sendable' type 'CompositionContext' may have shared mutable state; this is an error in the Swift 6 language mode
219 | }
220 |
221 | public struct CompositionContext: Codable, Equatable {
    |               `- note: consider making struct 'CompositionContext' conform to the 'Sendable' protocol
222 |
223 | 	public var allOf: [ReferenceOr<SchemaObject>]?
    :
243 | 	}
244 |
245 | 	static let invalid = CompositionContext()
    |             |- warning: static property 'invalid' is not concurrency-safe because non-'Sendable' type 'CompositionContext' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate 'invalid' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
246 | }
247 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:104:21: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
102 | 		}
103 |
104 | 		public static let json: Application = "json"
    |                     |- warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'json' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | 		public static let schemaJson: Application = "schema+json"
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:105:21: warning: static property 'schemaJson' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
103 |
104 | 		public static let json: Application = "json"
105 | 		public static let schemaJson: Application = "schema+json"
    |                     |- warning: static property 'schemaJson' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'schemaJson' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
107 | 		public static let xml: Application = "xml"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:106:21: warning: static property 'schemaInstanceJson' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
104 | 		public static let json: Application = "json"
105 | 		public static let schemaJson: Application = "schema+json"
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
    |                     |- warning: static property 'schemaInstanceJson' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'schemaInstanceJson' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | 		public static let xml: Application = "xml"
108 | 		public static let octetStream: Application = "octet-stream"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:107:21: warning: static property 'xml' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
105 | 		public static let schemaJson: Application = "schema+json"
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
107 | 		public static let xml: Application = "xml"
    |                     |- warning: static property 'xml' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'xml' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 | 		public static let octetStream: Application = "octet-stream"
109 | 		public static let urlEncoded: Application = "x-www-form-urlencoded"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:108:21: warning: static property 'octetStream' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
107 | 		public static let xml: Application = "xml"
108 | 		public static let octetStream: Application = "octet-stream"
    |                     |- warning: static property 'octetStream' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'octetStream' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 | 		public static let urlEncoded: Application = "x-www-form-urlencoded"
110 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:109:21: warning: static property 'urlEncoded' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
107 | 		public static let xml: Application = "xml"
108 | 		public static let octetStream: Application = "octet-stream"
109 | 		public static let urlEncoded: Application = "x-www-form-urlencoded"
    |                     |- warning: static property 'urlEncoded' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'urlEncoded' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | 	}
111 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:127:21: warning: static property 'plain' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
114 | 	}
115 |
116 | 	struct Text: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Text' conform to the 'Sendable' protocol
117 | 		public var rawValue: String
118 |
    :
125 | 		}
126 |
127 | 		public static let plain: Text = "plain"
    |                     |- warning: static property 'plain' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'plain' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | 		public static let html: Text = "html"
129 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:128:21: warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
114 | 	}
115 |
116 | 	struct Text: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Text' conform to the 'Sendable' protocol
117 | 		public var rawValue: String
118 |
    :
126 |
127 | 		public static let plain: Text = "plain"
128 | 		public static let html: Text = "html"
    |                     |- warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'html' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 | 	}
130 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:150:21: warning: static property 'formData' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
137 | 	}
138 |
139 | 	struct Multipart: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Multipart' conform to the 'Sendable' protocol
140 | 		public var rawValue: String
141 |
    :
148 | 		}
149 |
150 | 		public static let formData: Multipart = "form-data"
    |                     |- warning: static property 'formData' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'formData' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | 		public static let byteranges: Multipart = "byteranges"
152 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:151:21: warning: static property 'byteranges' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
137 | 	}
138 |
139 | 	struct Multipart: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Multipart' conform to the 'Sendable' protocol
140 | 		public var rawValue: String
141 |
    :
149 |
150 | 		public static let formData: Multipart = "form-data"
151 | 		public static let byteranges: Multipart = "byteranges"
    |                     |- warning: static property 'byteranges' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'byteranges' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 | 	}
153 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:158:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct MediaType: Codable, Hashable, RawRepresentable, ExpressibleByStringLiteral, LosslessStringConvertible {
    |               `- note: consider making struct 'MediaType' conform to the 'Sendable' protocol
  4 |
  5 | 	public typealias RawValue = String
    :
156 | 	}
157 |
158 | 	static let any = MediaType("*", "*")
    |             |- warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate 'any' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
159 | }
160 |
/Users/admin/builder/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: annotate 'components' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 |
/Users/admin/builder/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
/Users/admin/builder/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
/Users/admin/builder/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: annotate 'get' with '@MainActor' if property should only be accessed from the main actor
    |                     `- 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")
/Users/admin/builder/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: annotate 'put' with '@MainActor' if property should only be accessed from the main actor
    |                     `- 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")
/Users/admin/builder/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: annotate 'post' with '@MainActor' if property should only be accessed from the main actor
    |                     `- 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")
/Users/admin/builder/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: annotate 'delete' with '@MainActor' if property should only be accessed from the main actor
    |                     `- 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")
/Users/admin/builder/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: annotate 'options' with '@MainActor' if property should only be accessed from the main actor
    |                     `- 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")
/Users/admin/builder/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: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                     `- 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")
/Users/admin/builder/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: annotate 'patch' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 | 		public static let trace = Method("trace")
156 | 	}
/Users/admin/builder/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: annotate 'trace' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 | 	}
157 | }
/Users/admin/builder/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: annotate 'names' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | 	\.schemas: "schemas",
254 | 	\.parameters: "parameters",
/Users/admin/builder/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: annotate 'basic' with '@MainActor' if property should only be accessed from the main actor
    |                    `- 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"
/Users/admin/builder/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: annotate 'bearer' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 | 	public static let digest: HTTPAuthScheme = "digest"
102 |
/Users/admin/builder/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: annotate 'digest' with '@MainActor' if property should only be accessed from the main actor
    |                    `- 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.
/Users/admin/builder/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: annotate 'hoba' with '@MainActor' if property should only be accessed from the main actor
    |                    `- 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"
/Users/admin/builder/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: annotate 'mutual' with '@MainActor' if property should only be accessed from the main actor
    |                    `- 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"
/Users/admin/builder/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: annotate 'oauth' with '@MainActor' if property should only be accessed from the main actor
    |                    `- 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"
/Users/admin/builder/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: annotate 'scramSHA1' with '@MainActor' if property should only be accessed from the main actor
    |                    `- 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"
/Users/admin/builder/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: annotate 'scramSHA256' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
110 | }
/Users/admin/builder/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: annotate 'vapid' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | }
111 |
/Users/admin/builder/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: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    |                    `- 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! (54.86s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-custom-dump",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.10.3",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-custom-dump.git"
    },
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "509.0.2",
            "upper_bound" : "510.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-syntax.git"
    }
  ],
  "manifest_display_name" : "SwiftOpenAPI",
  "name" : "SwiftOpenAPI",
  "path" : "/Users/admin/builder/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",
      "product_dependencies" : [
        "CustomDump"
      ],
      "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"
}
Done.