Build Information
Successful build of SwiftOpenAPI, reference main (c2752c
), with Swift 6.1 for visionOS using Xcode 16.3 on 1 May 2025 06:09:39 UTC.
Swift 6 data race errors: 56
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme SwiftOpenAPI -destination generic/platform=xrOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Common/OrderedDictionary/StringConvertibleHintProvider.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Common/String++.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/AnyValueEncoder.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/CheckAllKeysDecoder.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:11:13: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var `default`: DateEncodingFormat = .dateTime
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:11:13: note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
static var `default`: DateEncodingFormat = .dateTime
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:11:13: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
static var `default`: DateEncodingFormat = .dateTime
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:11:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var `default`: DateEncodingFormat = .dateTime
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:70:13: warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
private let isoFormatter = ISO8601DateFormatter()
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
@interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:70:13: note: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
private let isoFormatter = ISO8601DateFormatter()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:70:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let isoFormatter = ISO8601DateFormatter()
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/HeadersEncoder.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:10:13: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var `default`: KeyEncodingStrategy = .useDefaultKeys
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:10:13: note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
static var `default`: KeyEncodingStrategy = .useDefaultKeys
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:10:13: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
static var `default`: KeyEncodingStrategy = .useDefaultKeys
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:10:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var `default`: KeyEncodingStrategy = .useDefaultKeys
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:12:13: warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:12:13: note: convert 'useDefaultKeys' to a 'let' constant to make 'Sendable' shared state immutable
static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:12:13: note: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:12:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/ParametersEncoder.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ ComponentsObject.swift,\ CompositeType.swift,\ ContactObject.swift,\ ContentObject.swift,\ EncodingObject.swift,\ ExampleObject.swift,\ ExternalDocumentationObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ComponentsObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/CompositeType.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ContactObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ContentObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/EncodingObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ExampleObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ExternalDocumentationObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ComponentsObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/CompositeType.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ContactObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ContentObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/EncodingObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ExampleObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ExternalDocumentationObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ PathItemObject.swift,\ PathsObject.swift,\ ReferenceObject.swift,\ ReferenceOr.swift,\ RequestBodyObject.swift,\ ResponseObject.swift,\ ResponsesObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathsObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ReferenceObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ReferenceOr.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/RequestBodyObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ResponseObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ResponsesObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:64:8: warning: associated value 'field' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.CodingKeys.Field'; this is an error in the Swift 6 language mode
case field(Field)
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:99:15: note: consider making enum 'Field' conform to the 'Sendable' protocol
public enum Field: String {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:65:8: warning: associated value 'method' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.Method'; this is an error in the Swift 6 language mode
case method(Method)
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:127:16: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:148:21: warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
public static let get = Method("get")
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:127:16: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:148:21: note: add '@MainActor' to make static property 'get' part of global actor 'MainActor'
public static let get = Method("get")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:148:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let get = Method("get")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:149:21: warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
public static let put = Method("put")
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:127:16: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:149:21: note: add '@MainActor' to make static property 'put' part of global actor 'MainActor'
public static let put = Method("put")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:149:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let put = Method("put")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:150:21: warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
public static let post = Method("post")
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:127:16: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:150:21: note: add '@MainActor' to make static property 'post' part of global actor 'MainActor'
public static let post = Method("post")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:150:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let post = Method("post")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:151:21: warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
public static let delete = Method("delete")
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:127:16: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:151:21: note: add '@MainActor' to make static property 'delete' part of global actor 'MainActor'
public static let delete = Method("delete")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:151:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let delete = Method("delete")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:152:21: warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
public static let options = Method("options")
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:127:16: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:152:21: note: add '@MainActor' to make static property 'options' part of global actor 'MainActor'
public static let options = Method("options")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:152:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let options = Method("options")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:153:21: warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
public static let head = Method("head")
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:127:16: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:153:21: note: add '@MainActor' to make static property 'head' part of global actor 'MainActor'
public static let head = Method("head")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:153:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let head = Method("head")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:154:21: warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
public static let patch = Method("patch")
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:127:16: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:154:21: note: add '@MainActor' to make static property 'patch' part of global actor 'MainActor'
public static let patch = Method("patch")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:154:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let patch = Method("patch")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:155:21: warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
public static let trace = Method("trace")
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:127:16: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:155:21: note: add '@MainActor' to make static property 'trace' part of global actor 'MainActor'
public static let trace = Method("trace")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:155:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let trace = Method("trace")
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathsObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ReferenceObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ReferenceOr.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ReferenceOr.swift:252:13: warning: var 'names' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var names: [PartialKeyPath<ComponentsObject>: String] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ReferenceOr.swift:252:13: note: convert 'names' to a 'let' constant to make 'Sendable' shared state immutable
private var names: [PartialKeyPath<ComponentsObject>: String] = [
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ReferenceOr.swift:252:13: note: add '@MainActor' to make var 'names' part of global actor 'MainActor'
private var names: [PartialKeyPath<ComponentsObject>: String] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ReferenceOr.swift:252:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var names: [PartialKeyPath<ComponentsObject>: String] = [
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/RequestBodyObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ResponseObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ResponsesObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ MediaTypeObject.swift,\ OAuthFlowObject.swift,\ OAuthFlowsObject.swift,\ OpenAPIObject.swift,\ OperationObject.swift,\ ParameterObject.swift,\ Path.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaTypeObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/OAuthFlowObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/OAuthFlowsObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/OpenAPIObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/OperationObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ParameterObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Path.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaTypeObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/OAuthFlowObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/OAuthFlowsObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/OpenAPIObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/OperationObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ParameterObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Path.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Path.swift:72:13: warning: static property 'components' is not concurrency-safe because non-'Sendable' type 'PathElement' may have shared mutable state; this is an error in the Swift 6 language mode
static let components: PathElement = "components"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Path.swift:43:13: note: consider making enum 'PathElement' conform to the 'Sendable' protocol
public enum PathElement: Hashable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Path.swift:72:13: note: add '@MainActor' to make static property 'components' part of global actor 'MainActor'
static let components: PathElement = "components"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Path.swift:72:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let components: PathElement = "components"
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ HeaderObject.swift,\ InfoObject.swift,\ AdditionalProperties.swift,\ DataFormat.swift,\ DataType.swift,\ DiscriminatorObject.swift,\ ExpressibleBySchemaObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/HeaderObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/InfoObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/AdditionalProperties.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataType.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DiscriminatorObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/ExpressibleBySchemaObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/HeaderObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/InfoObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/AdditionalProperties.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:31:13: warning: static property 'email' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var email: DataFormat = "email"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:31:13: note: convert 'email' to a 'let' constant to make 'Sendable' shared state immutable
static var email: DataFormat = "email"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:31:13: note: add '@MainActor' to make static property 'email' part of global actor 'MainActor'
static var email: DataFormat = "email"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:31:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var email: DataFormat = "email"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var uuid: DataFormat = "uuid"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: note: convert 'uuid' to a 'let' constant to make 'Sendable' shared state immutable
static var uuid: DataFormat = "uuid"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: note: add '@MainActor' to make static property 'uuid' part of global actor 'MainActor'
static var uuid: DataFormat = "uuid"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var uuid: DataFormat = "uuid"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var uri: DataFormat = "uri"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: note: convert 'uri' to a 'let' constant to make 'Sendable' shared state immutable
static var uri: DataFormat = "uri"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: note: add '@MainActor' to make static property 'uri' part of global actor 'MainActor'
static var uri: DataFormat = "uri"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var uri: DataFormat = "uri"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:34:13: warning: static property 'hostname' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var hostname: DataFormat = "hostname"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:34:13: note: convert 'hostname' to a 'let' constant to make 'Sendable' shared state immutable
static var hostname: DataFormat = "hostname"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:34:13: note: add '@MainActor' to make static property 'hostname' part of global actor 'MainActor'
static var hostname: DataFormat = "hostname"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:34:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var hostname: DataFormat = "hostname"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:35:13: warning: static property 'ipv4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var ipv4: DataFormat = "ipv4"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:35:13: note: convert 'ipv4' to a 'let' constant to make 'Sendable' shared state immutable
static var ipv4: DataFormat = "ipv4"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:35:13: note: add '@MainActor' to make static property 'ipv4' part of global actor 'MainActor'
static var ipv4: DataFormat = "ipv4"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:35:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var ipv4: DataFormat = "ipv4"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:36:13: warning: static property 'ipv6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var ipv6: DataFormat = "ipv6"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:36:13: note: convert 'ipv6' to a 'let' constant to make 'Sendable' shared state immutable
static var ipv6: DataFormat = "ipv6"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:36:13: note: add '@MainActor' to make static property 'ipv6' part of global actor 'MainActor'
static var ipv6: DataFormat = "ipv6"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:36:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var ipv6: DataFormat = "ipv6"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var int64: DataFormat = "int64"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: note: convert 'int64' to a 'let' constant to make 'Sendable' shared state immutable
static var int64: DataFormat = "int64"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: note: add '@MainActor' to make static property 'int64' part of global actor 'MainActor'
static var int64: DataFormat = "int64"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var int64: DataFormat = "int64"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var int32: DataFormat = "int32"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: note: convert 'int32' to a 'let' constant to make 'Sendable' shared state immutable
static var int32: DataFormat = "int32"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: note: add '@MainActor' to make static property 'int32' part of global actor 'MainActor'
static var int32: DataFormat = "int32"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var int32: DataFormat = "int32"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:39:13: warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var double: DataFormat = "double"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:39:13: note: convert 'double' to a 'let' constant to make 'Sendable' shared state immutable
static var double: DataFormat = "double"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:39:13: note: add '@MainActor' to make static property 'double' part of global actor 'MainActor'
static var double: DataFormat = "double"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:39:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var double: DataFormat = "double"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:40:13: warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var float: DataFormat = "float"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:40:13: note: convert 'float' to a 'let' constant to make 'Sendable' shared state immutable
static var float: DataFormat = "float"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:40:13: note: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
static var float: DataFormat = "float"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:40:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var float: DataFormat = "float"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:41:13: warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var decimal: DataFormat = "decimal"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:41:13: note: convert 'decimal' to a 'let' constant to make 'Sendable' shared state immutable
static var decimal: DataFormat = "decimal"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:41:13: note: add '@MainActor' to make static property 'decimal' part of global actor 'MainActor'
static var decimal: DataFormat = "decimal"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:41:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var decimal: DataFormat = "decimal"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:44:13: warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var date: DataFormat = "date"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:44:13: note: convert 'date' to a 'let' constant to make 'Sendable' shared state immutable
static var date: DataFormat = "date"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:44:13: note: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
static var date: DataFormat = "date"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:44:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var date: DataFormat = "date"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var dateTime: DataFormat = "date-time"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: note: convert 'dateTime' to a 'let' constant to make 'Sendable' shared state immutable
static var dateTime: DataFormat = "date-time"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: note: add '@MainActor' to make static property 'dateTime' part of global actor 'MainActor'
static var dateTime: DataFormat = "date-time"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var dateTime: DataFormat = "date-time"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:50:13: warning: static property 'password' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var password: DataFormat = "password"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:50:13: note: convert 'password' to a 'let' constant to make 'Sendable' shared state immutable
static var password: DataFormat = "password"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:50:13: note: add '@MainActor' to make static property 'password' part of global actor 'MainActor'
static var password: DataFormat = "password"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:50:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var password: DataFormat = "password"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var byte: DataFormat = "byte"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: note: convert 'byte' to a 'let' constant to make 'Sendable' shared state immutable
static var byte: DataFormat = "byte"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: note: add '@MainActor' to make static property 'byte' part of global actor 'MainActor'
static var byte: DataFormat = "byte"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var byte: DataFormat = "byte"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:56:13: warning: static property 'binary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var binary: DataFormat = "binary"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:56:13: note: convert 'binary' to a 'let' constant to make 'Sendable' shared state immutable
static var binary: DataFormat = "binary"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:56:13: note: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
static var binary: DataFormat = "binary"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:56:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var binary: DataFormat = "binary"
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataType.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DiscriminatorObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/ExpressibleBySchemaObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ RuntimeExpression.swift,\ RuntimeExpressionOr.swift,\ SecurityRequirementObject.swift,\ SecuritySchemeObject.swift,\ ServerObject.swift,\ ServerVariableObject.swift,\ SpecificationExtendable.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/RuntimeExpression.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/RuntimeExpressionOr.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecurityRequirementObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ServerObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ServerVariableObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SpecificationExtendable.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/RuntimeExpression.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/RuntimeExpressionOr.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecurityRequirementObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:99:20: warning: static property 'basic' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
public static let basic: HTTPAuthScheme = "basic"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:74:15: note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:99:20: note: add '@MainActor' to make static property 'basic' part of global actor 'MainActor'
public static let basic: HTTPAuthScheme = "basic"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:99:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let basic: HTTPAuthScheme = "basic"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:100:20: warning: static property 'bearer' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
public static let bearer: HTTPAuthScheme = "bearer"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:74:15: note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:100:20: note: add '@MainActor' to make static property 'bearer' part of global actor 'MainActor'
public static let bearer: HTTPAuthScheme = "bearer"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:100:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let bearer: HTTPAuthScheme = "bearer"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:101:20: warning: static property 'digest' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
public static let digest: HTTPAuthScheme = "digest"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:74:15: note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:101:20: note: add '@MainActor' to make static property 'digest' part of global actor 'MainActor'
public static let digest: HTTPAuthScheme = "digest"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:101:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let digest: HTTPAuthScheme = "digest"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:104:20: warning: static property 'hoba' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
public static let hoba: HTTPAuthScheme = "hoba"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:74:15: note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:104:20: note: add '@MainActor' to make static property 'hoba' part of global actor 'MainActor'
public static let hoba: HTTPAuthScheme = "hoba"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:104:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let hoba: HTTPAuthScheme = "hoba"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:105:20: warning: static property 'mutual' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
public static let mutual: HTTPAuthScheme = "mutual"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:74:15: note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:105:20: note: add '@MainActor' to make static property 'mutual' part of global actor 'MainActor'
public static let mutual: HTTPAuthScheme = "mutual"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:105:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let mutual: HTTPAuthScheme = "mutual"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:106:20: warning: static property 'oauth' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
public static let oauth: HTTPAuthScheme = "oauth"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:74:15: note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:106:20: note: add '@MainActor' to make static property 'oauth' part of global actor 'MainActor'
public static let oauth: HTTPAuthScheme = "oauth"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:106:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let oauth: HTTPAuthScheme = "oauth"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:107:20: warning: static property 'scramSHA1' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:74:15: note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:107:20: note: add '@MainActor' to make static property 'scramSHA1' part of global actor 'MainActor'
public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:107:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:108:20: warning: static property 'scramSHA256' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:74:15: note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:108:20: note: add '@MainActor' to make static property 'scramSHA256' part of global actor 'MainActor'
public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:108:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:109:20: warning: static property 'vapid' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
public static let vapid: HTTPAuthScheme = "vapid"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:74:15: note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:109:20: note: add '@MainActor' to make static property 'vapid' part of global actor 'MainActor'
public static let vapid: HTTPAuthScheme = "vapid"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:109:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let vapid: HTTPAuthScheme = "vapid"
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ServerObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ServerVariableObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SpecificationExtendable.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64 Emitting\ module\ for\ SwiftOpenAPI (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
LLVM Profile Error: Failed to write file "default.profraw": Operation not permitted
EmitSwiftModule normal arm64 (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Common/CodingKeys.swift:23:6: warning: stored property 'value' of 'Sendable'-conforming generic struct 'StringKey' has non-sendable type 'Value'; this is an error in the Swift 6 language mode
var value: Value
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Common/CodingKeys.swift:19:18: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
struct StringKey<Value: LosslessStringConvertible>: CodingKey {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:11:13: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var `default`: DateEncodingFormat = .dateTime
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:11:13: note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
static var `default`: DateEncodingFormat = .dateTime
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:11:13: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
static var `default`: DateEncodingFormat = .dateTime
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:11:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var `default`: DateEncodingFormat = .dateTime
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:70:13: warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
private let isoFormatter = ISO8601DateFormatter()
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
@interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:70:13: note: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
private let isoFormatter = ISO8601DateFormatter()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:70:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let isoFormatter = ISO8601DateFormatter()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:10:13: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var `default`: KeyEncodingStrategy = .useDefaultKeys
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:10:13: note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
static var `default`: KeyEncodingStrategy = .useDefaultKeys
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:10:13: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
static var `default`: KeyEncodingStrategy = .useDefaultKeys
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:10:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var `default`: KeyEncodingStrategy = .useDefaultKeys
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:12:13: warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:12:13: note: convert 'useDefaultKeys' to a 'let' constant to make 'Sendable' shared state immutable
static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:12:13: note: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:12:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:5:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
static let any = TypeInfo(type: Any.self, container: .single(.null))
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:3:8: note: consider making struct 'TypeInfo' conform to the 'Sendable' protocol
struct TypeInfo {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:5:13: note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
static let any = TypeInfo(type: Any.self, container: .single(.null))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:5:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let any = TypeInfo(type: Any.self, container: .single(.null))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:31:13: warning: static property 'email' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var email: DataFormat = "email"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:31:13: note: convert 'email' to a 'let' constant to make 'Sendable' shared state immutable
static var email: DataFormat = "email"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:31:13: note: add '@MainActor' to make static property 'email' part of global actor 'MainActor'
static var email: DataFormat = "email"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:31:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var email: DataFormat = "email"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var uuid: DataFormat = "uuid"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: note: convert 'uuid' to a 'let' constant to make 'Sendable' shared state immutable
static var uuid: DataFormat = "uuid"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: note: add '@MainActor' to make static property 'uuid' part of global actor 'MainActor'
static var uuid: DataFormat = "uuid"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var uuid: DataFormat = "uuid"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var uri: DataFormat = "uri"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: note: convert 'uri' to a 'let' constant to make 'Sendable' shared state immutable
static var uri: DataFormat = "uri"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: note: add '@MainActor' to make static property 'uri' part of global actor 'MainActor'
static var uri: DataFormat = "uri"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var uri: DataFormat = "uri"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:34:13: warning: static property 'hostname' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var hostname: DataFormat = "hostname"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:34:13: note: convert 'hostname' to a 'let' constant to make 'Sendable' shared state immutable
static var hostname: DataFormat = "hostname"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:34:13: note: add '@MainActor' to make static property 'hostname' part of global actor 'MainActor'
static var hostname: DataFormat = "hostname"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:34:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var hostname: DataFormat = "hostname"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:35:13: warning: static property 'ipv4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var ipv4: DataFormat = "ipv4"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:35:13: note: convert 'ipv4' to a 'let' constant to make 'Sendable' shared state immutable
static var ipv4: DataFormat = "ipv4"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:35:13: note: add '@MainActor' to make static property 'ipv4' part of global actor 'MainActor'
static var ipv4: DataFormat = "ipv4"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:35:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var ipv4: DataFormat = "ipv4"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:36:13: warning: static property 'ipv6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var ipv6: DataFormat = "ipv6"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:36:13: note: convert 'ipv6' to a 'let' constant to make 'Sendable' shared state immutable
static var ipv6: DataFormat = "ipv6"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:36:13: note: add '@MainActor' to make static property 'ipv6' part of global actor 'MainActor'
static var ipv6: DataFormat = "ipv6"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:36:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var ipv6: DataFormat = "ipv6"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var int64: DataFormat = "int64"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: note: convert 'int64' to a 'let' constant to make 'Sendable' shared state immutable
static var int64: DataFormat = "int64"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: note: add '@MainActor' to make static property 'int64' part of global actor 'MainActor'
static var int64: DataFormat = "int64"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var int64: DataFormat = "int64"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var int32: DataFormat = "int32"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: note: convert 'int32' to a 'let' constant to make 'Sendable' shared state immutable
static var int32: DataFormat = "int32"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: note: add '@MainActor' to make static property 'int32' part of global actor 'MainActor'
static var int32: DataFormat = "int32"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var int32: DataFormat = "int32"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:39:13: warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var double: DataFormat = "double"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:39:13: note: convert 'double' to a 'let' constant to make 'Sendable' shared state immutable
static var double: DataFormat = "double"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:39:13: note: add '@MainActor' to make static property 'double' part of global actor 'MainActor'
static var double: DataFormat = "double"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:39:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var double: DataFormat = "double"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:40:13: warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var float: DataFormat = "float"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:40:13: note: convert 'float' to a 'let' constant to make 'Sendable' shared state immutable
static var float: DataFormat = "float"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:40:13: note: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
static var float: DataFormat = "float"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:40:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var float: DataFormat = "float"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:41:13: warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var decimal: DataFormat = "decimal"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:41:13: note: convert 'decimal' to a 'let' constant to make 'Sendable' shared state immutable
static var decimal: DataFormat = "decimal"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:41:13: note: add '@MainActor' to make static property 'decimal' part of global actor 'MainActor'
static var decimal: DataFormat = "decimal"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:41:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var decimal: DataFormat = "decimal"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:44:13: warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var date: DataFormat = "date"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:44:13: note: convert 'date' to a 'let' constant to make 'Sendable' shared state immutable
static var date: DataFormat = "date"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:44:13: note: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
static var date: DataFormat = "date"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:44:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var date: DataFormat = "date"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var dateTime: DataFormat = "date-time"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: note: convert 'dateTime' to a 'let' constant to make 'Sendable' shared state immutable
static var dateTime: DataFormat = "date-time"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: note: add '@MainActor' to make static property 'dateTime' part of global actor 'MainActor'
static var dateTime: DataFormat = "date-time"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var dateTime: DataFormat = "date-time"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:50:13: warning: static property 'password' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var password: DataFormat = "password"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:50:13: note: convert 'password' to a 'let' constant to make 'Sendable' shared state immutable
static var password: DataFormat = "password"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:50:13: note: add '@MainActor' to make static property 'password' part of global actor 'MainActor'
static var password: DataFormat = "password"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:50:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var password: DataFormat = "password"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var byte: DataFormat = "byte"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: note: convert 'byte' to a 'let' constant to make 'Sendable' shared state immutable
static var byte: DataFormat = "byte"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: note: add '@MainActor' to make static property 'byte' part of global actor 'MainActor'
static var byte: DataFormat = "byte"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var byte: DataFormat = "byte"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:56:13: warning: static property 'binary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var binary: DataFormat = "binary"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:56:13: note: convert 'binary' to a 'let' constant to make 'Sendable' shared state immutable
static var binary: DataFormat = "binary"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:56:13: note: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
static var binary: DataFormat = "binary"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:56:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var binary: DataFormat = "binary"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/SchemaContexts.swift:245:13: warning: static property 'invalid' is not concurrency-safe because non-'Sendable' type 'CompositionContext' may have shared mutable state; this is an error in the Swift 6 language mode
static let invalid = CompositionContext()
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/SchemaContexts.swift:221:15: note: consider making struct 'CompositionContext' conform to the 'Sendable' protocol
public struct CompositionContext: Codable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/SchemaContexts.swift:245:13: note: add '@MainActor' to make static property 'invalid' part of global actor 'MainActor'
static let invalid = CompositionContext()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/SchemaContexts.swift:245:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let invalid = CompositionContext()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:104:21: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
public static let json: Application = "json"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:93:9: note: consider making struct 'Application' conform to the 'Sendable' protocol
struct Application: RawRepresentable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:104:21: note: add '@MainActor' to make static property 'json' part of global actor 'MainActor'
public static let json: Application = "json"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:104:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let json: Application = "json"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:105:21: warning: static property 'schemaJson' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
public static let schemaJson: Application = "schema+json"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:93:9: note: consider making struct 'Application' conform to the 'Sendable' protocol
struct Application: RawRepresentable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:105:21: note: add '@MainActor' to make static property 'schemaJson' part of global actor 'MainActor'
public static let schemaJson: Application = "schema+json"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:105:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let schemaJson: Application = "schema+json"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:106:21: warning: static property 'schemaInstanceJson' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
public static let schemaInstanceJson: Application = "schema-instance+json"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:93:9: note: consider making struct 'Application' conform to the 'Sendable' protocol
struct Application: RawRepresentable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:106:21: note: add '@MainActor' to make static property 'schemaInstanceJson' part of global actor 'MainActor'
public static let schemaInstanceJson: Application = "schema-instance+json"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:106:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let schemaInstanceJson: Application = "schema-instance+json"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:107:21: warning: static property 'xml' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
public static let xml: Application = "xml"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:93:9: note: consider making struct 'Application' conform to the 'Sendable' protocol
struct Application: RawRepresentable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:107:21: note: add '@MainActor' to make static property 'xml' part of global actor 'MainActor'
public static let xml: Application = "xml"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:107:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let xml: Application = "xml"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:108:21: warning: static property 'octetStream' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
public static let octetStream: Application = "octet-stream"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:93:9: note: consider making struct 'Application' conform to the 'Sendable' protocol
struct Application: RawRepresentable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:108:21: note: add '@MainActor' to make static property 'octetStream' part of global actor 'MainActor'
public static let octetStream: Application = "octet-stream"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:108:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let octetStream: Application = "octet-stream"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:109:21: warning: static property 'urlEncoded' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
public static let urlEncoded: Application = "x-www-form-urlencoded"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:93:9: note: consider making struct 'Application' conform to the 'Sendable' protocol
struct Application: RawRepresentable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:109:21: note: add '@MainActor' to make static property 'urlEncoded' part of global actor 'MainActor'
public static let urlEncoded: Application = "x-www-form-urlencoded"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:109:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let urlEncoded: Application = "x-www-form-urlencoded"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:127:21: warning: static property 'plain' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
public static let plain: Text = "plain"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:116:9: note: consider making struct 'Text' conform to the 'Sendable' protocol
struct Text: RawRepresentable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:127:21: note: add '@MainActor' to make static property 'plain' part of global actor 'MainActor'
public static let plain: Text = "plain"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:127:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let plain: Text = "plain"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:128:21: warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
public static let html: Text = "html"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:116:9: note: consider making struct 'Text' conform to the 'Sendable' protocol
struct Text: RawRepresentable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:128:21: note: add '@MainActor' to make static property 'html' part of global actor 'MainActor'
public static let html: Text = "html"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:128:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let html: Text = "html"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:150:21: warning: static property 'formData' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
public static let formData: Multipart = "form-data"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:139:9: note: consider making struct 'Multipart' conform to the 'Sendable' protocol
struct Multipart: RawRepresentable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:150:21: note: add '@MainActor' to make static property 'formData' part of global actor 'MainActor'
public static let formData: Multipart = "form-data"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:150:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let formData: Multipart = "form-data"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:151:21: warning: static property 'byteranges' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
public static let byteranges: Multipart = "byteranges"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:139:9: note: consider making struct 'Multipart' conform to the 'Sendable' protocol
struct Multipart: RawRepresentable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:151:21: note: add '@MainActor' to make static property 'byteranges' part of global actor 'MainActor'
public static let byteranges: Multipart = "byteranges"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:151:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let byteranges: Multipart = "byteranges"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:158:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
static let any = MediaType("*", "*")
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:3:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: Codable, Hashable, RawRepresentable, ExpressibleByStringLiteral, LosslessStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:158:13: note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
static let any = MediaType("*", "*")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:158:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let any = MediaType("*", "*")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Path.swift:72:13: warning: static property 'components' is not concurrency-safe because non-'Sendable' type 'PathElement' may have shared mutable state; this is an error in the Swift 6 language mode
static let components: PathElement = "components"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Path.swift:43:13: note: consider making enum 'PathElement' conform to the 'Sendable' protocol
public enum PathElement: Hashable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Path.swift:72:13: note: add '@MainActor' to make static property 'components' part of global actor 'MainActor'
static let components: PathElement = "components"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Path.swift:72:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let components: PathElement = "components"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:64:8: warning: associated value 'field' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.CodingKeys.Field'; this is an error in the Swift 6 language mode
case field(Field)
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:99:15: note: consider making enum 'Field' conform to the 'Sendable' protocol
public enum Field: String {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:65:8: warning: associated value 'method' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.Method'; this is an error in the Swift 6 language mode
case method(Method)
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:127:16: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:148:21: warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
public static let get = Method("get")
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:127:16: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:148:21: note: add '@MainActor' to make static property 'get' part of global actor 'MainActor'
public static let get = Method("get")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:148:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let get = Method("get")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:149:21: warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
public static let put = Method("put")
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:127:16: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:149:21: note: add '@MainActor' to make static property 'put' part of global actor 'MainActor'
public static let put = Method("put")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:149:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let put = Method("put")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:150:21: warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
public static let post = Method("post")
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:127:16: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:150:21: note: add '@MainActor' to make static property 'post' part of global actor 'MainActor'
public static let post = Method("post")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:150:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let post = Method("post")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:151:21: warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
public static let delete = Method("delete")
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:127:16: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:151:21: note: add '@MainActor' to make static property 'delete' part of global actor 'MainActor'
public static let delete = Method("delete")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:151:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let delete = Method("delete")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:152:21: warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
public static let options = Method("options")
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:127:16: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:152:21: note: add '@MainActor' to make static property 'options' part of global actor 'MainActor'
public static let options = Method("options")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:152:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let options = Method("options")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:153:21: warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
public static let head = Method("head")
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:127:16: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:153:21: note: add '@MainActor' to make static property 'head' part of global actor 'MainActor'
public static let head = Method("head")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:153:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let head = Method("head")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:154:21: warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
public static let patch = Method("patch")
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:127:16: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:154:21: note: add '@MainActor' to make static property 'patch' part of global actor 'MainActor'
public static let patch = Method("patch")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:154:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let patch = Method("patch")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:155:21: warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
public static let trace = Method("trace")
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:127:16: note: consider making struct 'Method' conform to the 'Sendable' protocol
public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:155:21: note: add '@MainActor' to make static property 'trace' part of global actor 'MainActor'
public static let trace = Method("trace")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:155:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let trace = Method("trace")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ReferenceOr.swift:252:13: warning: var 'names' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var names: [PartialKeyPath<ComponentsObject>: String] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ReferenceOr.swift:252:13: note: convert 'names' to a 'let' constant to make 'Sendable' shared state immutable
private var names: [PartialKeyPath<ComponentsObject>: String] = [
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ReferenceOr.swift:252:13: note: add '@MainActor' to make var 'names' part of global actor 'MainActor'
private var names: [PartialKeyPath<ComponentsObject>: String] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ReferenceOr.swift:252:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var names: [PartialKeyPath<ComponentsObject>: String] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:99:20: warning: static property 'basic' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
public static let basic: HTTPAuthScheme = "basic"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:74:15: note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:99:20: note: add '@MainActor' to make static property 'basic' part of global actor 'MainActor'
public static let basic: HTTPAuthScheme = "basic"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:99:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let basic: HTTPAuthScheme = "basic"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:100:20: warning: static property 'bearer' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
public static let bearer: HTTPAuthScheme = "bearer"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:74:15: note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:100:20: note: add '@MainActor' to make static property 'bearer' part of global actor 'MainActor'
public static let bearer: HTTPAuthScheme = "bearer"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:100:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let bearer: HTTPAuthScheme = "bearer"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:101:20: warning: static property 'digest' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
public static let digest: HTTPAuthScheme = "digest"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:74:15: note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:101:20: note: add '@MainActor' to make static property 'digest' part of global actor 'MainActor'
public static let digest: HTTPAuthScheme = "digest"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:101:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let digest: HTTPAuthScheme = "digest"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:104:20: warning: static property 'hoba' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
public static let hoba: HTTPAuthScheme = "hoba"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:74:15: note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:104:20: note: add '@MainActor' to make static property 'hoba' part of global actor 'MainActor'
public static let hoba: HTTPAuthScheme = "hoba"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:104:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let hoba: HTTPAuthScheme = "hoba"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:105:20: warning: static property 'mutual' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
public static let mutual: HTTPAuthScheme = "mutual"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:74:15: note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:105:20: note: add '@MainActor' to make static property 'mutual' part of global actor 'MainActor'
public static let mutual: HTTPAuthScheme = "mutual"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:105:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let mutual: HTTPAuthScheme = "mutual"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:106:20: warning: static property 'oauth' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
public static let oauth: HTTPAuthScheme = "oauth"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:74:15: note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:106:20: note: add '@MainActor' to make static property 'oauth' part of global actor 'MainActor'
public static let oauth: HTTPAuthScheme = "oauth"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:106:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let oauth: HTTPAuthScheme = "oauth"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:107:20: warning: static property 'scramSHA1' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:74:15: note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:107:20: note: add '@MainActor' to make static property 'scramSHA1' part of global actor 'MainActor'
public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:107:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:108:20: warning: static property 'scramSHA256' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:74:15: note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:108:20: note: add '@MainActor' to make static property 'scramSHA256' part of global actor 'MainActor'
public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:108:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:109:20: warning: static property 'vapid' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
public static let vapid: HTTPAuthScheme = "vapid"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:74:15: note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:109:20: note: add '@MainActor' to make static property 'vapid' part of global actor 'MainActor'
public static let vapid: HTTPAuthScheme = "vapid"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:109:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let vapid: HTTPAuthScheme = "vapid"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
public static let zero = Version(0, 0, 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:3:15: note: consider making struct 'Version' conform to the 'Sendable' protocol
public struct Version: Codable, Comparable, LosslessStringConvertible, ExpressibleByStringInterpolation {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
public static let zero = Version(0, 0, 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let zero = Version(0, 0, 0)
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ SchemaContexts.swift,\ SchemaObjec+deprecated.swift,\ SchemaObject++.swift,\ SchemaObject.swift,\ LicenseObject.swift,\ LinkObject.swift,\ MediaType.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/SchemaContexts.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/SchemaObjec+deprecated.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/SchemaObject++.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/SchemaObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/LicenseObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/LinkObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/SchemaContexts.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/SchemaContexts.swift:245:13: warning: static property 'invalid' is not concurrency-safe because non-'Sendable' type 'CompositionContext' may have shared mutable state; this is an error in the Swift 6 language mode
static let invalid = CompositionContext()
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/SchemaContexts.swift:221:15: note: consider making struct 'CompositionContext' conform to the 'Sendable' protocol
public struct CompositionContext: Codable, Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/SchemaContexts.swift:245:13: note: add '@MainActor' to make static property 'invalid' part of global actor 'MainActor'
static let invalid = CompositionContext()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/SchemaContexts.swift:245:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let invalid = CompositionContext()
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/SchemaObjec+deprecated.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/SchemaObject++.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/SchemaObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/LicenseObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/LinkObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:104:21: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
public static let json: Application = "json"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:93:9: note: consider making struct 'Application' conform to the 'Sendable' protocol
struct Application: RawRepresentable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:104:21: note: add '@MainActor' to make static property 'json' part of global actor 'MainActor'
public static let json: Application = "json"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:104:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let json: Application = "json"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:105:21: warning: static property 'schemaJson' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
public static let schemaJson: Application = "schema+json"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:93:9: note: consider making struct 'Application' conform to the 'Sendable' protocol
struct Application: RawRepresentable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:105:21: note: add '@MainActor' to make static property 'schemaJson' part of global actor 'MainActor'
public static let schemaJson: Application = "schema+json"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:105:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let schemaJson: Application = "schema+json"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:106:21: warning: static property 'schemaInstanceJson' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
public static let schemaInstanceJson: Application = "schema-instance+json"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:93:9: note: consider making struct 'Application' conform to the 'Sendable' protocol
struct Application: RawRepresentable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:106:21: note: add '@MainActor' to make static property 'schemaInstanceJson' part of global actor 'MainActor'
public static let schemaInstanceJson: Application = "schema-instance+json"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:106:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let schemaInstanceJson: Application = "schema-instance+json"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:107:21: warning: static property 'xml' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
public static let xml: Application = "xml"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:93:9: note: consider making struct 'Application' conform to the 'Sendable' protocol
struct Application: RawRepresentable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:107:21: note: add '@MainActor' to make static property 'xml' part of global actor 'MainActor'
public static let xml: Application = "xml"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:107:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let xml: Application = "xml"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:108:21: warning: static property 'octetStream' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
public static let octetStream: Application = "octet-stream"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:93:9: note: consider making struct 'Application' conform to the 'Sendable' protocol
struct Application: RawRepresentable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:108:21: note: add '@MainActor' to make static property 'octetStream' part of global actor 'MainActor'
public static let octetStream: Application = "octet-stream"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:108:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let octetStream: Application = "octet-stream"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:109:21: warning: static property 'urlEncoded' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
public static let urlEncoded: Application = "x-www-form-urlencoded"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:93:9: note: consider making struct 'Application' conform to the 'Sendable' protocol
struct Application: RawRepresentable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:109:21: note: add '@MainActor' to make static property 'urlEncoded' part of global actor 'MainActor'
public static let urlEncoded: Application = "x-www-form-urlencoded"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:109:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let urlEncoded: Application = "x-www-form-urlencoded"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:127:21: warning: static property 'plain' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
public static let plain: Text = "plain"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:116:9: note: consider making struct 'Text' conform to the 'Sendable' protocol
struct Text: RawRepresentable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:127:21: note: add '@MainActor' to make static property 'plain' part of global actor 'MainActor'
public static let plain: Text = "plain"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:127:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let plain: Text = "plain"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:128:21: warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
public static let html: Text = "html"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:116:9: note: consider making struct 'Text' conform to the 'Sendable' protocol
struct Text: RawRepresentable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:128:21: note: add '@MainActor' to make static property 'html' part of global actor 'MainActor'
public static let html: Text = "html"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:128:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let html: Text = "html"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:150:21: warning: static property 'formData' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
public static let formData: Multipart = "form-data"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:139:9: note: consider making struct 'Multipart' conform to the 'Sendable' protocol
struct Multipart: RawRepresentable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:150:21: note: add '@MainActor' to make static property 'formData' part of global actor 'MainActor'
public static let formData: Multipart = "form-data"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:150:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let formData: Multipart = "form-data"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:151:21: warning: static property 'byteranges' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
public static let byteranges: Multipart = "byteranges"
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:139:9: note: consider making struct 'Multipart' conform to the 'Sendable' protocol
struct Multipart: RawRepresentable, ExpressibleByStringLiteral {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:151:21: note: add '@MainActor' to make static property 'byteranges' part of global actor 'MainActor'
public static let byteranges: Multipart = "byteranges"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:151:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let byteranges: Multipart = "byteranges"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:158:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
static let any = MediaType("*", "*")
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:3:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: Codable, Hashable, RawRepresentable, ExpressibleByStringLiteral, LosslessStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:158:13: note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
static let any = MediaType("*", "*")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:158:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let any = MediaType("*", "*")
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ AnyRange.swift,\ Bool++.swift,\ Codable++.swift,\ CodingKeys.swift,\ Collection++.swift,\ Decimal++.swift,\ ExpressibleBy.swift,\ OrderedDictionary.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Common/AnyRange.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Bool++.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Codable++.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Common/CodingKeys.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Collection++.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Decimal++.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Common/ExpressibleBy.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Common/OrderedDictionary/OrderedDictionary.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Common/AnyRange.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Bool++.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Codable++.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Common/CodingKeys.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Common/CodingKeys.swift:23:6: warning: stored property 'value' of 'Sendable'-conforming generic struct 'StringKey' has non-sendable type 'Value'; this is an error in the Swift 6 language mode
var value: Value
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Common/CodingKeys.swift:19:18: note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
struct StringKey<Value: LosslessStringConvertible>: CodingKey {
^
, Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Collection++.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Decimal++.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Common/ExpressibleBy.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Common/OrderedDictionary/OrderedDictionary.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ TagObject.swift,\ Version.swift,\ XMLObject.swift,\ OpenAPIDescriptable.swift,\ OpenAPIDescription.swift,\ OpenAPIType.swift,\ refactor.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/TagObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/XMLObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/OpenAPIDescriptable.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/OpenAPIDescription.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/OpenAPIType.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/refactor.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
LLVM Profile Error: Failed to write file "default.profraw": Operation not permitted
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/TagObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
public static let zero = Version(0, 0, 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:3:15: note: consider making struct 'Version' conform to the 'Sendable' protocol
public struct Version: Codable, Comparable, LosslessStringConvertible, ExpressibleByStringInterpolation {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
public static let zero = Version(0, 0, 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let zero = Version(0, 0, 0)
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/XMLObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/OpenAPIDescriptable.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/OpenAPIDescription.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/OpenAPIType.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/refactor.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Ref.swift,\ SchemeEncoder.swift,\ CodableTypes.swift,\ TypeRevision.swift,\ TypeRevisionDecoder.swift,\ TypeRevisionEncoder.swift,\ AnyValue.swift,\ CallbackObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/Ref.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/SchemeEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/TypeRevision.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/TypeRevisionDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/TypeRevisionEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/AnyValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/CallbackObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/Ref.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/SchemeEncoder.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:5:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
static let any = TypeInfo(type: Any.self, container: .single(.null))
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:3:8: note: consider making struct 'TypeInfo' conform to the 'Sendable' protocol
struct TypeInfo {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:5:13: note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
static let any = TypeInfo(type: Any.self, container: .single(.null))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:5:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let any = TypeInfo(type: Any.self, container: .single(.null))
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/TypeRevision.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/TypeRevisionDecoder.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/TypeRevisionEncoder.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/AnyValue.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/CallbackObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Emitting module for SwiftOpenAPI (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
SwiftDriver\ Compilation\ Requirements SwiftOpenAPI normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftOpenAPI -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SwiftOpenAPIMacros\#SwiftOpenAPIMacros -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling TagObject.swift, Version.swift, XMLObject.swift, OpenAPIDescriptable.swift, OpenAPIDescription.swift, OpenAPIType.swift, refactor.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/SwiftOpenAPI-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI-Swift.h (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/SwiftOpenAPI-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftOpenAPI.swiftmodule/arm64-apple-xros.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI.swiftmodule (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftOpenAPI.swiftmodule/arm64-apple-xros.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftOpenAPI.swiftmodule/arm64-apple-xros.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI.swiftdoc (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftOpenAPI.swiftmodule/arm64-apple-xros.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftOpenAPI.swiftmodule/arm64-apple-xros.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI.abi.json (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftOpenAPI.swiftmodule/arm64-apple-xros.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftOpenAPI.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI.swiftsourceinfo (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftOpenAPI.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling ComponentsObject.swift, CompositeType.swift, ContactObject.swift, ContentObject.swift, EncodingObject.swift, ExampleObject.swift, ExternalDocumentationObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
SwiftDriverJobDiscovery normal arm64 Compiling MediaTypeObject.swift, OAuthFlowObject.swift, OAuthFlowsObject.swift, OpenAPIObject.swift, OperationObject.swift, ParameterObject.swift, Path.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
SwiftDriverJobDiscovery normal arm64 Compiling SchemaContexts.swift, SchemaObjec+deprecated.swift, SchemaObject++.swift, SchemaObject.swift, LicenseObject.swift, LinkObject.swift, MediaType.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
SwiftDriverJobDiscovery normal arm64 Compiling AnyRange.swift, Bool++.swift, Codable++.swift, CodingKeys.swift, Collection++.swift, Decimal++.swift, ExpressibleBy.swift, OrderedDictionary.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
SwiftDriverJobDiscovery normal arm64 Compiling HeaderObject.swift, InfoObject.swift, AdditionalProperties.swift, DataFormat.swift, DataType.swift, DiscriminatorObject.swift, ExpressibleBySchemaObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
SwiftDriverJobDiscovery normal arm64 Compiling StringConvertibleHintProvider.swift, String++.swift, AnyValueEncoder.swift, CheckAllKeysDecoder.swift, DateEncodingFormat.swift, HeadersEncoder.swift, KeyEncodingStrategy.swift, ParametersEncoder.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
SwiftDriverJobDiscovery normal arm64 Compiling RuntimeExpression.swift, RuntimeExpressionOr.swift, SecurityRequirementObject.swift, SecuritySchemeObject.swift, ServerObject.swift, ServerVariableObject.swift, SpecificationExtendable.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
SwiftDriverJobDiscovery normal arm64 Compiling PathItemObject.swift, PathsObject.swift, ReferenceObject.swift, ReferenceOr.swift, RequestBodyObject.swift, ResponseObject.swift, ResponsesObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
SwiftDriverJobDiscovery normal arm64 Compiling Ref.swift, SchemeEncoder.swift, CodableTypes.swift, TypeRevision.swift, TypeRevisionDecoder.swift, TypeRevisionEncoder.swift, AnyValue.swift, CallbackObject.swift (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
SwiftDriver\ Compilation SwiftOpenAPI normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftOpenAPI -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SwiftOpenAPIMacros\#SwiftOpenAPIMacros -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftOpenAPI.o normal (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-xros1.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftOpenAPI.o
ExtractAppIntentsMetadata (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name SwiftOpenAPI --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk --xcode-version 16E140 --platform-family xrOS --deployment-target 1.0 --bundle-identifier spi-builder-workspace.SwiftOpenAPI --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftOpenAPI.appintents --target-triple arm64-apple-xros1.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftOpenAPI.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/SwiftOpenAPI.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/SwiftOpenAPI.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftOpenAPI.build/Debug-xros/SwiftOpenAPI.build/Objects-normal/arm64/SwiftOpenAPI.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-30 23:09:38.130 appintentsmetadataprocessor[1101:5943] Starting appintentsmetadataprocessor export
2025-04-30 23:09:38.164 appintentsmetadataprocessor[1101:5943] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftOpenAPI.o (in target 'SwiftOpenAPI' from project 'SwiftOpenAPI')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftOpenAPI.o
** BUILD SUCCEEDED **
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" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
}
],
"products" : [
{
"name" : "SwiftOpenAPI",
"targets" : [
"SwiftOpenAPI"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "SwiftOpenAPIMacros",
"targets" : [
"SwiftOpenAPIMacros"
],
"type" : {
"macro" : null
}
}
],
"targets" : [
{
"c99name" : "SwiftOpenAPITests",
"module_type" : "SwiftTarget",
"name" : "SwiftOpenAPITests",
"path" : "Tests/SwiftOpenAPITests",
"sources" : [
"AnyValueTests/AnyValueTests.swift",
"AnyValueTests/TestHelpers.swift",
"ArrayDecodingTests.swift",
"Mocks.swift",
"SwiftOpenAPITests.swift"
],
"target_dependencies" : [
"SwiftOpenAPI"
],
"type" : "test"
},
{
"c99name" : "SwiftOpenAPIMacrosTests",
"module_type" : "SwiftTarget",
"name" : "SwiftOpenAPIMacrosTests",
"path" : "Tests/SwiftOpenAPIMacrosTests",
"product_dependencies" : [
"SwiftSyntaxMacrosTestSupport"
],
"sources" : [
"SwiftOpenAPIMacrosTests.swift"
],
"target_dependencies" : [
"SwiftOpenAPI",
"SwiftOpenAPIMacros"
],
"type" : "test"
},
{
"c99name" : "SwiftOpenAPIMacros",
"module_type" : "SwiftTarget",
"name" : "SwiftOpenAPIMacros",
"path" : "Sources/SwiftOpenAPIMacros",
"product_dependencies" : [
"SwiftSyntaxMacros",
"SwiftCompilerPlugin"
],
"product_memberships" : [
"SwiftOpenAPI",
"SwiftOpenAPIMacros"
],
"sources" : [
"OpenAPIDescriptionMacro.swift",
"StringError.swift",
"SyntaxExt.swift"
],
"type" : "macro"
},
{
"c99name" : "SwiftOpenAPI",
"module_type" : "SwiftTarget",
"name" : "SwiftOpenAPI",
"path" : "Sources/SwiftOpenAPI",
"product_memberships" : [
"SwiftOpenAPI"
],
"sources" : [
"Common/AnyRange.swift",
"Common/Bool++.swift",
"Common/Codable++.swift",
"Common/CodingKeys.swift",
"Common/Collection++.swift",
"Common/Decimal++.swift",
"Common/ExpressibleBy.swift",
"Common/OrderedDictionary/OrderedDictionary.swift",
"Common/OrderedDictionary/StringConvertibleHintProvider.swift",
"Common/String++.swift",
"Encoders/AnyValueEncoder.swift",
"Encoders/CheckAllKeysDecoder.swift",
"Encoders/DateEncodingFormat.swift",
"Encoders/HeadersEncoder.swift",
"Encoders/KeyEncodingStrategy.swift",
"Encoders/ParametersEncoder.swift",
"Encoders/Ref.swift",
"Encoders/SchemeEncoder.swift",
"Encoders/TypeRevision/CodableTypes.swift",
"Encoders/TypeRevision/TypeRevision.swift",
"Encoders/TypeRevision/TypeRevisionDecoder.swift",
"Encoders/TypeRevision/TypeRevisionEncoder.swift",
"Objects/AnyValue.swift",
"Objects/CallbackObject.swift",
"Objects/ComponentsObject.swift",
"Objects/CompositeType.swift",
"Objects/ContactObject.swift",
"Objects/ContentObject.swift",
"Objects/EncodingObject.swift",
"Objects/ExampleObject.swift",
"Objects/ExternalDocumentationObject.swift",
"Objects/HeaderObject.swift",
"Objects/InfoObject.swift",
"Objects/JSONSchema/AdditionalProperties.swift",
"Objects/JSONSchema/DataFormat.swift",
"Objects/JSONSchema/DataType.swift",
"Objects/JSONSchema/DiscriminatorObject.swift",
"Objects/JSONSchema/ExpressibleBySchemaObject.swift",
"Objects/JSONSchema/SchemaContexts.swift",
"Objects/JSONSchema/SchemaObjec+deprecated.swift",
"Objects/JSONSchema/SchemaObject++.swift",
"Objects/JSONSchema/SchemaObject.swift",
"Objects/LicenseObject.swift",
"Objects/LinkObject.swift",
"Objects/MediaType.swift",
"Objects/MediaTypeObject.swift",
"Objects/OAuthFlowObject.swift",
"Objects/OAuthFlowsObject.swift",
"Objects/OpenAPIObject.swift",
"Objects/OperationObject.swift",
"Objects/ParameterObject.swift",
"Objects/Path.swift",
"Objects/PathItemObject.swift",
"Objects/PathsObject.swift",
"Objects/ReferenceObject.swift",
"Objects/ReferenceOr.swift",
"Objects/RequestBodyObject.swift",
"Objects/ResponseObject.swift",
"Objects/ResponsesObject.swift",
"Objects/RuntimeExpression.swift",
"Objects/RuntimeExpressionOr.swift",
"Objects/SecurityRequirementObject.swift",
"Objects/SecuritySchemeObject.swift",
"Objects/ServerObject.swift",
"Objects/ServerVariableObject.swift",
"Objects/SpecificationExtendable.swift",
"Objects/TagObject.swift",
"Objects/Version.swift",
"Objects/XMLObject.swift",
"OpenAPIDescriptable.swift",
"OpenAPIDescription.swift",
"OpenAPIType.swift",
"refactor.swift"
],
"target_dependencies" : [
"SwiftOpenAPIMacros"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Done.