The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of SwiftOpenAPI, reference main (c2752c), with Swift 6.1 for Linux on 1 May 2025 06:07:21 UTC.

Swift 6 data race errors: 112

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | private let dateFormatter = DateFormatter()
72 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
/host/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: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | 	static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/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: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	var type: Any.Type
/host/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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | private let dateFormatter = DateFormatter()
72 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
/host/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: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | 	static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/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: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	var type: Any.Type
/host/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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | private let dateFormatter = DateFormatter()
72 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
/host/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: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | 	static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/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: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	var type: Any.Type
/host/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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | private let dateFormatter = DateFormatter()
72 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
/host/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: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | 	static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/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: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	var type: Any.Type
/host/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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | private let dateFormatter = DateFormatter()
72 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
/host/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: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | 	static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/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: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	var type: Any.Type
/host/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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | private let dateFormatter = DateFormatter()
72 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
/host/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: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | 	static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/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: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	var type: Any.Type
/host/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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | private let dateFormatter = DateFormatter()
72 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
/host/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: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | 	static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/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: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	var type: Any.Type
/host/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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | private let dateFormatter = DateFormatter()
72 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
/host/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: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | 	static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/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: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	var type: Any.Type
/host/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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | private let dateFormatter = DateFormatter()
72 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
/host/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: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 | 	static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/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: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	var type: Any.Type
/host/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) {
/host/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) {
/host/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) {
/host/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) {
/host/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) {
/host/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) {
/host/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) {
/host/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) {
/host/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) {
/host/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) {
/host/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: add '@MainActor' to make static property 'email' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'uuid' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'uri' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'hostname' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'ipv4' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'ipv6' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'int64' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'int32' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'double' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | 	static var decimal: DataFormat = "decimal"
42 |
/host/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: add '@MainActor' to make static property 'decimal' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make static property 'dateTime' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// a hint to UIs to mask the input
/host/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: add '@MainActor' to make static property 'password' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | 	/// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
/host/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: add '@MainActor' to make static property 'byte' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// binary data, used to describe files
/host/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: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/host/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: add '@MainActor' to make static property 'email' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'uuid' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'uri' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'hostname' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'ipv4' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'ipv6' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'int64' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'int32' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'double' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | 	static var decimal: DataFormat = "decimal"
42 |
/host/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: add '@MainActor' to make static property 'decimal' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make static property 'dateTime' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// a hint to UIs to mask the input
/host/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: add '@MainActor' to make static property 'password' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | 	/// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
/host/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: add '@MainActor' to make static property 'byte' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// binary data, used to describe files
/host/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: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/host/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: add '@MainActor' to make static property 'email' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'uuid' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'uri' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'hostname' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'ipv4' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'ipv6' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'int64' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'int32' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'double' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | 	static var decimal: DataFormat = "decimal"
42 |
/host/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: add '@MainActor' to make static property 'decimal' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make static property 'dateTime' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// a hint to UIs to mask the input
/host/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: add '@MainActor' to make static property 'password' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | 	/// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
/host/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: add '@MainActor' to make static property 'byte' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// binary data, used to describe files
/host/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: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/host/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: add '@MainActor' to make static property 'email' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'uuid' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'uri' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'hostname' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'ipv4' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'ipv6' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'int64' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'int32' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'double' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | 	static var decimal: DataFormat = "decimal"
42 |
/host/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: add '@MainActor' to make static property 'decimal' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make static property 'dateTime' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// a hint to UIs to mask the input
/host/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: add '@MainActor' to make static property 'password' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | 	/// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
/host/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: add '@MainActor' to make static property 'byte' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// binary data, used to describe files
/host/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: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/host/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: add '@MainActor' to make static property 'email' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'uuid' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'uri' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'hostname' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'ipv4' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'ipv6' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'int64' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'int32' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'double' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | 	static var decimal: DataFormat = "decimal"
42 |
/host/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: add '@MainActor' to make static property 'decimal' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make static property 'dateTime' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// a hint to UIs to mask the input
/host/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: add '@MainActor' to make static property 'password' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | 	/// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
/host/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: add '@MainActor' to make static property 'byte' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// binary data, used to describe files
/host/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: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/host/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: add '@MainActor' to make static property 'email' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'uuid' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'uri' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'hostname' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'ipv4' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'ipv6' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'int64' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'int32' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'double' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | 	static var decimal: DataFormat = "decimal"
42 |
/host/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: add '@MainActor' to make static property 'decimal' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make static property 'dateTime' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// a hint to UIs to mask the input
/host/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: add '@MainActor' to make static property 'password' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | 	/// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
/host/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: add '@MainActor' to make static property 'byte' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// binary data, used to describe files
/host/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: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/host/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: add '@MainActor' to make static property 'email' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'uuid' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'uri' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'hostname' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'ipv4' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'ipv6' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'int64' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'int32' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'double' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | 	static var decimal: DataFormat = "decimal"
42 |
/host/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: add '@MainActor' to make static property 'decimal' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make static property 'dateTime' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// a hint to UIs to mask the input
/host/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: add '@MainActor' to make static property 'password' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | 	/// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
/host/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: add '@MainActor' to make static property 'byte' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// binary data, used to describe files
/host/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: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/host/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: add '@MainActor' to make static property 'email' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'uuid' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'uri' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'hostname' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'ipv4' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'ipv6' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'int64' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'int32' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'double' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | 	static var decimal: DataFormat = "decimal"
42 |
/host/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: add '@MainActor' to make static property 'decimal' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make static property 'dateTime' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// a hint to UIs to mask the input
/host/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: add '@MainActor' to make static property 'password' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | 	/// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
/host/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: add '@MainActor' to make static property 'byte' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// binary data, used to describe files
/host/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: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/host/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: add '@MainActor' to make static property 'email' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'uuid' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'uri' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'hostname' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'ipv4' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'ipv6' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'int64' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'int32' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'double' part of global actor 'MainActor'
   |             `- 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"
/host/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: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | 	static var decimal: DataFormat = "decimal"
42 |
/host/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: add '@MainActor' to make static property 'decimal' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
   |             `- 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
/host/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: add '@MainActor' to make static property 'dateTime' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// a hint to UIs to mask the input
/host/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: add '@MainActor' to make static property 'password' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | 	/// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
/host/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: add '@MainActor' to make static property 'byte' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// binary data, used to describe files
/host/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: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
Build complete! (128.67s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "600.0.0",
            "upper_bound" : "601.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-syntax.git"
    }
  ],
  "manifest_display_name" : "SwiftOpenAPI",
  "name" : "SwiftOpenAPI",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "SwiftOpenAPI",
      "targets" : [
        "SwiftOpenAPI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SwiftOpenAPIMacros",
      "targets" : [
        "SwiftOpenAPIMacros"
      ],
      "type" : {
        "macro" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftOpenAPITests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftOpenAPITests",
      "path" : "Tests/SwiftOpenAPITests",
      "sources" : [
        "AnyValueTests/AnyValueTests.swift",
        "AnyValueTests/TestHelpers.swift",
        "ArrayDecodingTests.swift",
        "Mocks.swift",
        "SwiftOpenAPITests.swift"
      ],
      "target_dependencies" : [
        "SwiftOpenAPI"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftOpenAPIMacrosTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftOpenAPIMacrosTests",
      "path" : "Tests/SwiftOpenAPIMacrosTests",
      "product_dependencies" : [
        "SwiftSyntaxMacrosTestSupport"
      ],
      "sources" : [
        "SwiftOpenAPIMacrosTests.swift"
      ],
      "target_dependencies" : [
        "SwiftOpenAPI",
        "SwiftOpenAPIMacros"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftOpenAPIMacros",
      "module_type" : "SwiftTarget",
      "name" : "SwiftOpenAPIMacros",
      "path" : "Sources/SwiftOpenAPIMacros",
      "product_dependencies" : [
        "SwiftSyntaxMacros",
        "SwiftCompilerPlugin"
      ],
      "product_memberships" : [
        "SwiftOpenAPI",
        "SwiftOpenAPIMacros"
      ],
      "sources" : [
        "OpenAPIDescriptionMacro.swift",
        "StringError.swift",
        "SyntaxExt.swift"
      ],
      "type" : "macro"
    },
    {
      "c99name" : "SwiftOpenAPI",
      "module_type" : "SwiftTarget",
      "name" : "SwiftOpenAPI",
      "path" : "Sources/SwiftOpenAPI",
      "product_memberships" : [
        "SwiftOpenAPI"
      ],
      "sources" : [
        "Common/AnyRange.swift",
        "Common/Bool++.swift",
        "Common/Codable++.swift",
        "Common/CodingKeys.swift",
        "Common/Collection++.swift",
        "Common/Decimal++.swift",
        "Common/ExpressibleBy.swift",
        "Common/OrderedDictionary/OrderedDictionary.swift",
        "Common/OrderedDictionary/StringConvertibleHintProvider.swift",
        "Common/String++.swift",
        "Encoders/AnyValueEncoder.swift",
        "Encoders/CheckAllKeysDecoder.swift",
        "Encoders/DateEncodingFormat.swift",
        "Encoders/HeadersEncoder.swift",
        "Encoders/KeyEncodingStrategy.swift",
        "Encoders/ParametersEncoder.swift",
        "Encoders/Ref.swift",
        "Encoders/SchemeEncoder.swift",
        "Encoders/TypeRevision/CodableTypes.swift",
        "Encoders/TypeRevision/TypeRevision.swift",
        "Encoders/TypeRevision/TypeRevisionDecoder.swift",
        "Encoders/TypeRevision/TypeRevisionEncoder.swift",
        "Objects/AnyValue.swift",
        "Objects/CallbackObject.swift",
        "Objects/ComponentsObject.swift",
        "Objects/CompositeType.swift",
        "Objects/ContactObject.swift",
        "Objects/ContentObject.swift",
        "Objects/EncodingObject.swift",
        "Objects/ExampleObject.swift",
        "Objects/ExternalDocumentationObject.swift",
        "Objects/HeaderObject.swift",
        "Objects/InfoObject.swift",
        "Objects/JSONSchema/AdditionalProperties.swift",
        "Objects/JSONSchema/DataFormat.swift",
        "Objects/JSONSchema/DataType.swift",
        "Objects/JSONSchema/DiscriminatorObject.swift",
        "Objects/JSONSchema/ExpressibleBySchemaObject.swift",
        "Objects/JSONSchema/SchemaContexts.swift",
        "Objects/JSONSchema/SchemaObjec+deprecated.swift",
        "Objects/JSONSchema/SchemaObject++.swift",
        "Objects/JSONSchema/SchemaObject.swift",
        "Objects/LicenseObject.swift",
        "Objects/LinkObject.swift",
        "Objects/MediaType.swift",
        "Objects/MediaTypeObject.swift",
        "Objects/OAuthFlowObject.swift",
        "Objects/OAuthFlowsObject.swift",
        "Objects/OpenAPIObject.swift",
        "Objects/OperationObject.swift",
        "Objects/ParameterObject.swift",
        "Objects/Path.swift",
        "Objects/PathItemObject.swift",
        "Objects/PathsObject.swift",
        "Objects/ReferenceObject.swift",
        "Objects/ReferenceOr.swift",
        "Objects/RequestBodyObject.swift",
        "Objects/ResponseObject.swift",
        "Objects/ResponsesObject.swift",
        "Objects/RuntimeExpression.swift",
        "Objects/RuntimeExpressionOr.swift",
        "Objects/SecurityRequirementObject.swift",
        "Objects/SecuritySchemeObject.swift",
        "Objects/ServerObject.swift",
        "Objects/ServerVariableObject.swift",
        "Objects/SpecificationExtendable.swift",
        "Objects/TagObject.swift",
        "Objects/Version.swift",
        "Objects/XMLObject.swift",
        "OpenAPIDescriptable.swift",
        "OpenAPIDescription.swift",
        "OpenAPIType.swift",
        "refactor.swift"
      ],
      "target_dependencies" : [
        "SwiftOpenAPIMacros"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.