This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of FHIR with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 8

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/smart-on-fhir/Swift-FHIR.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/smart-on-fhir/Swift-FHIR
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at b68fb5d Fixed issue where only a summary version of the capability statement is fetched (#28)
Submodule path 'fhir-parser': checked out '505e283afaa047dcb2e8fe0860f0427d54033d70'
Submodule 'fhir-parser' (https://github.com/smart-on-fhir/fhir-parser.git) registered for path 'fhir-parser'
Cloning into '/Users/admin/builder/spi-builder-workspace/fhir-parser'...
Cloned https://github.com/smart-on-fhir/Swift-FHIR.git
Revision (git rev-parse @):
b68fb5d6c8137de4a06894e683dc1a726a832907
SUCCESS checkout https://github.com/smart-on-fhir/Swift-FHIR.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/smart-on-fhir/Swift-FHIR.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/4] Write sources
[3/4] Write swift-version-6F35C1178C84523A.txt
[5/196] Compiling Models FHIRRequest.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[6/196] Compiling Models FHIRRequestHandler.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[7/196] Compiling Models FHIRServer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[8/196] Compiling Models FHIRServerResponse.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[9/196] Compiling Models FHIRString.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[10/196] Compiling Models FHIRType.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[11/196] Compiling Models FHIRURL.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[12/196] Compiling Models FHIRValidationError.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[13/196] Compiling Models FamilyMemberHistory.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[14/196] Compiling Models Flag.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[15/196] Compiling Models Goal.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[16/196] Compiling Models GraphDefinition.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[17/196] Compiling Models Group.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[18/196] Compiling Models GuidanceResponse.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[19/196] Compiling Models HealthcareService.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[20/196] Compiling Models HumanName.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[21/196] Compiling Models Identifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[22/196] Compiling Models ImagingStudy.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[23/196] Compiling Models Immunization.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[24/196] Compiling Models ImmunizationEvaluation.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[25/196] Compiling Models ImmunizationRecommendation.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[26/196] Compiling Models MedicinalProductIngredient.swift
[27/196] Compiling Models MedicinalProductInteraction.swift
[28/196] Compiling Models MedicinalProductManufactured.swift
[29/196] Compiling Models MedicinalProductPackaged.swift
[30/196] Compiling Models MedicinalProductPharmaceutical.swift
[31/196] Compiling Models MedicinalProductUndesirableEffect.swift
[32/196] Compiling Models MessageDefinition.swift
[33/196] Compiling Models MessageHeader.swift
[34/196] Compiling Models Meta.swift
[35/196] Compiling Models MetadataResource.swift
[36/196] Compiling Models MolecularSequence.swift
[37/196] Compiling Models Money.swift
[38/196] Compiling Models NamingSystem.swift
[39/196] Compiling Models Narrative.swift
[40/196] Compiling Models NutritionOrder.swift
[41/196] Compiling Models Observation.swift
[42/196] Compiling Models ObservationDefinition.swift
[43/196] Compiling Models OperationDefinition.swift
[44/196] Compiling Models OperationOutcome.swift
[45/196] Compiling Models Organization.swift
[46/196] Compiling Models OrganizationAffiliation.swift
[47/217] Compiling Models RelatedArtifact.swift
[48/217] Compiling Models RelatedPerson.swift
[49/217] Compiling Models RequestGroup.swift
[50/217] Compiling Models ResearchDefinition.swift
[51/217] Compiling Models ResearchElementDefinition.swift
[52/217] Compiling Models ResearchStudy.swift
[53/217] Compiling Models ResearchSubject.swift
[54/217] Compiling Models Resource+Meta.swift
[55/217] Compiling Models Resource.swift
[56/217] Compiling Models RiskAssessment.swift
[57/217] Compiling Models RiskEvidenceSynthesis.swift
[58/217] Compiling Models SampledData.swift
[59/217] Compiling Models Schedule.swift
[60/217] Compiling Models SearchParameter.swift
[61/217] Compiling Models ServiceRequest.swift
[62/217] Compiling Models Signature.swift
[63/217] Compiling Models Slot.swift
[64/217] Compiling Models Specimen.swift
[65/217] Compiling Models SpecimenDefinition.swift
[66/217] Compiling Models StructureDefinition.swift
[67/217] Compiling Models StructureMap.swift
[68/217] Compiling Models ImplementationGuide.swift
[69/217] Compiling Models InsurancePlan.swift
[70/217] Compiling Models Invoice.swift
[71/217] Compiling Models Library.swift
[72/217] Compiling Models Linkage.swift
[73/217] Compiling Models List.swift
[74/217] Compiling Models Location.swift
[75/217] Compiling Models MarketingStatus.swift
[76/217] Compiling Models Measure.swift
[77/217] Compiling Models MeasureReport.swift
[78/217] Compiling Models Media.swift
[79/217] Compiling Models Medication.swift
[80/217] Compiling Models MedicationAdministration.swift
[81/217] Compiling Models MedicationDispense.swift
[82/217] Compiling Models MedicationKnowledge.swift
[83/217] Compiling Models MedicationRequest.swift
[84/217] Compiling Models MedicationStatement.swift
[85/217] Compiling Models MedicinalProduct.swift
[86/217] Compiling Models MedicinalProductAuthorization.swift
[87/217] Compiling Models MedicinalProductContraindication.swift
[88/217] Compiling Models MedicinalProductIndication.swift
[89/217] Compiling Models CoverageEligibilityRequest.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
[90/217] Compiling Models CoverageEligibilityResponse.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
[91/217] Compiling Models DataRequirement.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
[92/217] Compiling Models DateAndTime.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
[93/217] Compiling Models DetectedIssue.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
[94/217] Compiling Models Device.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
[95/217] Compiling Models DeviceDefinition.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
[96/217] Compiling Models DeviceMetric.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
[97/217] Compiling Models DeviceRequest.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
[98/217] Compiling Models DeviceUseStatement.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
[99/217] Compiling Models DiagnosticReport.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
[100/217] Compiling Models Distance.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
[101/217] Compiling Models DocumentManifest.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
[102/217] Compiling Models DocumentReference.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
[103/217] Compiling Models DomainResource.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
[104/217] Compiling Models Dosage.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
[105/217] Compiling Models Duration.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
[106/217] Compiling Models EffectEvidenceSynthesis.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
[107/217] Compiling Models Element.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
[108/217] Compiling Models ElementDefinition.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
[109/217] Compiling Models Encounter.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
[110/217] Compiling Models ChargeItem.swift
[111/217] Compiling Models ChargeItemDefinition.swift
[112/217] Compiling Models Claim.swift
[113/217] Compiling Models ClaimResponse.swift
[114/217] Compiling Models ClinicalImpression.swift
[115/217] Compiling Models CodeSystem.swift
[116/217] Compiling Models CodeSystems.swift
[117/217] Compiling Models CodeableConcept.swift
[118/217] Compiling Models Coding.swift
[119/217] Compiling Models Communication.swift
[120/217] Compiling Models CommunicationRequest.swift
[121/217] Compiling Models CompartmentDefinition.swift
[122/217] Compiling Models Composition.swift
[123/217] Compiling Models ConceptMap.swift
[124/217] Compiling Models Condition.swift
[125/217] Compiling Models Consent.swift
[126/217] Compiling Models ContactDetail.swift
[127/217] Compiling Models ContactPoint.swift
[128/217] Compiling Models Contract.swift
[129/217] Compiling Models Contributor.swift
[130/217] Compiling Models Count.swift
[131/217] Compiling Models Coverage.swift
[132/217] Compiling Models Account.swift
[133/217] Compiling Models ActivityDefinition.swift
[134/217] Compiling Models Address.swift
[135/217] Compiling Models AdverseEvent.swift
[136/217] Compiling Models Age.swift
[137/217] Compiling Models AllergyIntolerance.swift
[138/217] Compiling Models Annotation.swift
[139/217] Compiling Models Appointment.swift
[140/217] Compiling Models AppointmentResponse.swift
[141/217] Compiling Models Attachment.swift
[142/217] Compiling Models AuditEvent.swift
[143/217] Compiling Models BackboneElement.swift
[144/217] Compiling Models Base64Binary.swift
[145/217] Compiling Models Basic.swift
[146/217] Compiling Models Binary.swift
[147/217] Compiling Models BiologicallyDerivedProduct.swift
[148/217] Compiling Models BodyStructure.swift
[149/217] Compiling Models Bundle.swift
[150/217] Compiling Models CapabilityStatement.swift
[151/217] Compiling Models CarePlan.swift
[152/217] Compiling Models CareTeam.swift
[153/217] Compiling Models CatalogEntry.swift
[154/217] Compiling Models Endpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRError.swift:33:7: warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 31 | 	case requestNotSent(String)
 32 | 	case requestError(Int, String)
 33 | 	case noRequestHandlerAvailable(FHIRRequestMethod)
    |       `- warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 34 | 	case noResponseReceived
 35 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:15:13: note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 13 | Struct to describe REST request types, with a convenience method to make a request FHIR compliant.
 14 | */
 15 | public enum FHIRRequestMethod: String {
    |             `- note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 16 | 	case GET = "GET"
 17 | 	case PUT = "PUT"
[155/217] Compiling Models EnrollmentRequest.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRError.swift:33:7: warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 31 | 	case requestNotSent(String)
 32 | 	case requestError(Int, String)
 33 | 	case noRequestHandlerAvailable(FHIRRequestMethod)
    |       `- warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 34 | 	case noResponseReceived
 35 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:15:13: note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 13 | Struct to describe REST request types, with a convenience method to make a request FHIR compliant.
 14 | */
 15 | public enum FHIRRequestMethod: String {
    |             `- note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 16 | 	case GET = "GET"
 17 | 	case PUT = "PUT"
[156/217] Compiling Models EnrollmentResponse.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRError.swift:33:7: warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 31 | 	case requestNotSent(String)
 32 | 	case requestError(Int, String)
 33 | 	case noRequestHandlerAvailable(FHIRRequestMethod)
    |       `- warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 34 | 	case noResponseReceived
 35 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:15:13: note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 13 | Struct to describe REST request types, with a convenience method to make a request FHIR compliant.
 14 | */
 15 | public enum FHIRRequestMethod: String {
    |             `- note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 16 | 	case GET = "GET"
 17 | 	case PUT = "PUT"
[157/217] Compiling Models EpisodeOfCare.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRError.swift:33:7: warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 31 | 	case requestNotSent(String)
 32 | 	case requestError(Int, String)
 33 | 	case noRequestHandlerAvailable(FHIRRequestMethod)
    |       `- warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 34 | 	case noResponseReceived
 35 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:15:13: note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 13 | Struct to describe REST request types, with a convenience method to make a request FHIR compliant.
 14 | */
 15 | public enum FHIRRequestMethod: String {
    |             `- note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 16 | 	case GET = "GET"
 17 | 	case PUT = "PUT"
[158/217] Compiling Models EventDefinition.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRError.swift:33:7: warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 31 | 	case requestNotSent(String)
 32 | 	case requestError(Int, String)
 33 | 	case noRequestHandlerAvailable(FHIRRequestMethod)
    |       `- warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 34 | 	case noResponseReceived
 35 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:15:13: note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 13 | Struct to describe REST request types, with a convenience method to make a request FHIR compliant.
 14 | */
 15 | public enum FHIRRequestMethod: String {
    |             `- note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 16 | 	case GET = "GET"
 17 | 	case PUT = "PUT"
[159/217] Compiling Models Evidence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRError.swift:33:7: warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 31 | 	case requestNotSent(String)
 32 | 	case requestError(Int, String)
 33 | 	case noRequestHandlerAvailable(FHIRRequestMethod)
    |       `- warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 34 | 	case noResponseReceived
 35 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:15:13: note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 13 | Struct to describe REST request types, with a convenience method to make a request FHIR compliant.
 14 | */
 15 | public enum FHIRRequestMethod: String {
    |             `- note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 16 | 	case GET = "GET"
 17 | 	case PUT = "PUT"
[160/217] Compiling Models EvidenceVariable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRError.swift:33:7: warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 31 | 	case requestNotSent(String)
 32 | 	case requestError(Int, String)
 33 | 	case noRequestHandlerAvailable(FHIRRequestMethod)
    |       `- warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 34 | 	case noResponseReceived
 35 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:15:13: note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 13 | Struct to describe REST request types, with a convenience method to make a request FHIR compliant.
 14 | */
 15 | public enum FHIRRequestMethod: String {
    |             `- note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 16 | 	case GET = "GET"
 17 | 	case PUT = "PUT"
[161/217] Compiling Models ExampleScenario.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRError.swift:33:7: warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 31 | 	case requestNotSent(String)
 32 | 	case requestError(Int, String)
 33 | 	case noRequestHandlerAvailable(FHIRRequestMethod)
    |       `- warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 34 | 	case noResponseReceived
 35 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:15:13: note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 13 | Struct to describe REST request types, with a convenience method to make a request FHIR compliant.
 14 | */
 15 | public enum FHIRRequestMethod: String {
    |             `- note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 16 | 	case GET = "GET"
 17 | 	case PUT = "PUT"
[162/217] Compiling Models ExplanationOfBenefit.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRError.swift:33:7: warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 31 | 	case requestNotSent(String)
 32 | 	case requestError(Int, String)
 33 | 	case noRequestHandlerAvailable(FHIRRequestMethod)
    |       `- warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 34 | 	case noResponseReceived
 35 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:15:13: note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 13 | Struct to describe REST request types, with a convenience method to make a request FHIR compliant.
 14 | */
 15 | public enum FHIRRequestMethod: String {
    |             `- note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 16 | 	case GET = "GET"
 17 | 	case PUT = "PUT"
[163/217] Compiling Models Expression.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRError.swift:33:7: warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 31 | 	case requestNotSent(String)
 32 | 	case requestError(Int, String)
 33 | 	case noRequestHandlerAvailable(FHIRRequestMethod)
    |       `- warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 34 | 	case noResponseReceived
 35 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:15:13: note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 13 | Struct to describe REST request types, with a convenience method to make a request FHIR compliant.
 14 | */
 15 | public enum FHIRRequestMethod: String {
    |             `- note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 16 | 	case GET = "GET"
 17 | 	case PUT = "PUT"
[164/217] Compiling Models Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRError.swift:33:7: warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 31 | 	case requestNotSent(String)
 32 | 	case requestError(Int, String)
 33 | 	case noRequestHandlerAvailable(FHIRRequestMethod)
    |       `- warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 34 | 	case noResponseReceived
 35 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:15:13: note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 13 | Struct to describe REST request types, with a convenience method to make a request FHIR compliant.
 14 | */
 15 | public enum FHIRRequestMethod: String {
    |             `- note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 16 | 	case GET = "GET"
 17 | 	case PUT = "PUT"
[165/217] Compiling Models FHIRAbstractBase+Factory.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRError.swift:33:7: warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 31 | 	case requestNotSent(String)
 32 | 	case requestError(Int, String)
 33 | 	case noRequestHandlerAvailable(FHIRRequestMethod)
    |       `- warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 34 | 	case noResponseReceived
 35 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:15:13: note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 13 | Struct to describe REST request types, with a convenience method to make a request FHIR compliant.
 14 | */
 15 | public enum FHIRRequestMethod: String {
    |             `- note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 16 | 	case GET = "GET"
 17 | 	case PUT = "PUT"
[166/217] Compiling Models FHIRAbstractBase.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRError.swift:33:7: warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 31 | 	case requestNotSent(String)
 32 | 	case requestError(Int, String)
 33 | 	case noRequestHandlerAvailable(FHIRRequestMethod)
    |       `- warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 34 | 	case noResponseReceived
 35 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:15:13: note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 13 | Struct to describe REST request types, with a convenience method to make a request FHIR compliant.
 14 | */
 15 | public enum FHIRRequestMethod: String {
    |             `- note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 16 | 	case GET = "GET"
 17 | 	case PUT = "PUT"
[167/217] Compiling Models FHIRAbstractResource.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRError.swift:33:7: warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 31 | 	case requestNotSent(String)
 32 | 	case requestError(Int, String)
 33 | 	case noRequestHandlerAvailable(FHIRRequestMethod)
    |       `- warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 34 | 	case noResponseReceived
 35 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:15:13: note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 13 | Struct to describe REST request types, with a convenience method to make a request FHIR compliant.
 14 | */
 15 | public enum FHIRRequestMethod: String {
    |             `- note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 16 | 	case GET = "GET"
 17 | 	case PUT = "PUT"
[168/217] Compiling Models FHIRBool.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRError.swift:33:7: warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 31 | 	case requestNotSent(String)
 32 | 	case requestError(Int, String)
 33 | 	case noRequestHandlerAvailable(FHIRRequestMethod)
    |       `- warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 34 | 	case noResponseReceived
 35 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:15:13: note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 13 | Struct to describe REST request types, with a convenience method to make a request FHIR compliant.
 14 | */
 15 | public enum FHIRRequestMethod: String {
    |             `- note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 16 | 	case GET = "GET"
 17 | 	case PUT = "PUT"
[169/217] Compiling Models FHIRCanonical.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRError.swift:33:7: warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 31 | 	case requestNotSent(String)
 32 | 	case requestError(Int, String)
 33 | 	case noRequestHandlerAvailable(FHIRRequestMethod)
    |       `- warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 34 | 	case noResponseReceived
 35 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:15:13: note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 13 | Struct to describe REST request types, with a convenience method to make a request FHIR compliant.
 14 | */
 15 | public enum FHIRRequestMethod: String {
    |             `- note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 16 | 	case GET = "GET"
 17 | 	case PUT = "PUT"
[170/217] Compiling Models FHIRDecimal.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRError.swift:33:7: warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 31 | 	case requestNotSent(String)
 32 | 	case requestError(Int, String)
 33 | 	case noRequestHandlerAvailable(FHIRRequestMethod)
    |       `- warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 34 | 	case noResponseReceived
 35 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:15:13: note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 13 | Struct to describe REST request types, with a convenience method to make a request FHIR compliant.
 14 | */
 15 | public enum FHIRRequestMethod: String {
    |             `- note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 16 | 	case GET = "GET"
 17 | 	case PUT = "PUT"
[171/217] Compiling Models FHIREnum.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRError.swift:33:7: warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 31 | 	case requestNotSent(String)
 32 | 	case requestError(Int, String)
 33 | 	case noRequestHandlerAvailable(FHIRRequestMethod)
    |       `- warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 34 | 	case noResponseReceived
 35 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:15:13: note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 13 | Struct to describe REST request types, with a convenience method to make a request FHIR compliant.
 14 | */
 15 | public enum FHIRRequestMethod: String {
    |             `- note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 16 | 	case GET = "GET"
 17 | 	case PUT = "PUT"
[172/217] Compiling Models FHIRError.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRError.swift:33:7: warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 31 | 	case requestNotSent(String)
 32 | 	case requestError(Int, String)
 33 | 	case noRequestHandlerAvailable(FHIRRequestMethod)
    |       `- warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 34 | 	case noResponseReceived
 35 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:15:13: note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 13 | Struct to describe REST request types, with a convenience method to make a request FHIR compliant.
 14 | */
 15 | public enum FHIRRequestMethod: String {
    |             `- note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 16 | 	case GET = "GET"
 17 | 	case PUT = "PUT"
[173/217] Compiling Models FHIRInteger.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRError.swift:33:7: warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 31 | 	case requestNotSent(String)
 32 | 	case requestError(Int, String)
 33 | 	case noRequestHandlerAvailable(FHIRRequestMethod)
    |       `- warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 34 | 	case noResponseReceived
 35 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:15:13: note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 13 | Struct to describe REST request types, with a convenience method to make a request FHIR compliant.
 14 | */
 15 | public enum FHIRRequestMethod: String {
    |             `- note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 16 | 	case GET = "GET"
 17 | 	case PUT = "PUT"
[174/217] Compiling Models FHIRPrimitive.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRError.swift:33:7: warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 31 | 	case requestNotSent(String)
 32 | 	case requestError(Int, String)
 33 | 	case noRequestHandlerAvailable(FHIRRequestMethod)
    |       `- warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 34 | 	case noResponseReceived
 35 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:15:13: note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 13 | Struct to describe REST request types, with a convenience method to make a request FHIR compliant.
 14 | */
 15 | public enum FHIRRequestMethod: String {
    |             `- note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 16 | 	case GET = "GET"
 17 | 	case PUT = "PUT"
[175/217] Compiling Models ParameterDefinition.swift
[176/217] Compiling Models Parameters.swift
[177/217] Compiling Models Patient.swift
[178/217] Compiling Models PaymentNotice.swift
[179/217] Compiling Models PaymentReconciliation.swift
[180/217] Compiling Models Period.swift
[181/217] Compiling Models Person.swift
[182/217] Compiling Models PlanDefinition.swift
[183/217] Compiling Models Population.swift
[184/217] Compiling Models Practitioner.swift
[185/217] Compiling Models PractitionerRole.swift
[186/217] Compiling Models Procedure.swift
[187/217] Compiling Models ProdCharacteristic.swift
[188/217] Compiling Models ProductShelfLife.swift
[189/217] Compiling Models Provenance.swift
[190/217] Compiling Models Quantity.swift
[191/217] Compiling Models Questionnaire.swift
[192/217] Compiling Models QuestionnaireResponse.swift
[193/217] Compiling Models Range.swift
[194/217] Compiling Models Ratio.swift
[195/217] Compiling Models Reference.swift
[196/217] Emitting module Models
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/Users/admin/builder/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRError.swift:33:7: warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 31 | 	case requestNotSent(String)
 32 | 	case requestError(Int, String)
 33 | 	case noRequestHandlerAvailable(FHIRRequestMethod)
    |       `- warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 34 | 	case noResponseReceived
 35 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:15:13: note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 13 | Struct to describe REST request types, with a convenience method to make a request FHIR compliant.
 14 | */
 15 | public enum FHIRRequestMethod: String {
    |             `- note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 16 | 	case GET = "GET"
 17 | 	case PUT = "PUT"
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[197/217] Compiling Models Subscription.swift
[198/217] Compiling Models Substance.swift
[199/217] Compiling Models SubstanceAmount.swift
[200/217] Compiling Models SubstanceNucleicAcid.swift
[201/217] Compiling Models SubstancePolymer.swift
[202/217] Compiling Models SubstanceProtein.swift
[203/217] Compiling Models SubstanceReferenceInformation.swift
[204/217] Compiling Models SubstanceSourceMaterial.swift
[205/217] Compiling Models SubstanceSpecification.swift
[206/217] Compiling Models SupplyDelivery.swift
[207/217] Compiling Models SupplyRequest.swift
[208/217] Compiling Models Task.swift
[209/217] Compiling Models TerminologyCapabilities.swift
[210/217] Compiling Models TestReport.swift
[211/217] Compiling Models TestScript.swift
[212/217] Compiling Models Timing.swift
[213/217] Compiling Models TriggerDefinition.swift
[214/217] Compiling Models UsageContext.swift
[215/217] Compiling Models ValueSet.swift
[216/217] Compiling Models VerificationResult.swift
[217/217] Compiling Models VisionPrescription.swift
[218/234] Compiling Client Resource+REST.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
[219/234] Compiling Client Resource+Operation.swift
[220/234] Compiling Client FHIROpenServer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
[221/234] Compiling Client FHIROperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
[222/234] Compiling Client Reference+Resolving.swift
[223/234] Compiling Client Resource+Instantiation.swift
[224/234] Compiling Client FHIRCanonical+Resolving.swift
/Users/admin/builder/spi-builder-workspace/Sources/Client/FHIRMinimalServer.swift:137:70: warning: passing non-sendable parameter 'completionHandler' to function expecting a @Sendable closure
134 | 	*/
135 | 	@discardableResult
136 | 	open func perform(request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionTask? {
    |                                         `- note: parameter 'completionHandler' is implicitly non-sendable
137 | 		let task = URLSession().dataTask(with: request, completionHandler: completionHandler)
    |                                                                      `- warning: passing non-sendable parameter 'completionHandler' to function expecting a @Sendable closure
138 | 		task.resume()
139 | 		return task
[225/234] Compiling Client FHIRMinimalServer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Client/FHIRMinimalServer.swift:137:70: warning: passing non-sendable parameter 'completionHandler' to function expecting a @Sendable closure
134 | 	*/
135 | 	@discardableResult
136 | 	open func perform(request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionTask? {
    |                                         `- note: parameter 'completionHandler' is implicitly non-sendable
137 | 		let task = URLSession().dataTask(with: request, completionHandler: completionHandler)
    |                                                                      `- warning: passing non-sendable parameter 'completionHandler' to function expecting a @Sendable closure
138 | 		task.resume()
139 | 		return task
[226/234] Compiling Client FHIRString+Localization.swift
[227/234] Compiling Client Patient+SMART.swift
[228/234] Compiling Client FHIRBaseRequestHandler.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
[229/234] Compiling Client FHIRBaseServer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'summary' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
[230/234] Emitting module Client
/Users/admin/builder/spi-builder-workspace/Sources/Client/DomainResource+Containment.swift:48:2: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 46 | 	- returns:            A `Reference` instance pointing to the contained resource (as "#id")
 47 | 	*/
 48 | 	open func contain(resource: Resource, withDisplay display: String? = nil) throws -> Reference {
    |  `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 49 | 		guard resource !== self else {
 50 | 			throw FHIRError.resourceCannotContainItself
/Users/admin/builder/spi-builder-workspace/Sources/Client/DomainResource+Containment.swift:103:2: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
101 | 	- returns:            A `Reference`, ready for use
102 | 	*/
103 | 	open func reference(resource: Resource, withDisplay display: FHIRString? = nil) throws -> Reference {
    |  `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
104 | 		let ref = Reference(owner: self)
105 | 		ref.display = display
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/Users/admin/builder/spi-builder-workspace/Sources/Client/FHIRSearch.swift:287:13: warning: static property 'handlers' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
285 | struct FHIRSearchConstruct
286 | {
287 | 	static var handlers: [FHIRSearchConstructHandler] = [
    |             |- warning: static property 'handlers' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'handlers' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'handlers' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
288 | 		FHIRSearchConstructAndHandler(),
289 | 		FHIRSearchConstructOrHandler(),
[231/234] Compiling Client DomainResource+Containment.swift
/Users/admin/builder/spi-builder-workspace/Sources/Client/DomainResource+Containment.swift:48:2: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 46 | 	- returns:            A `Reference` instance pointing to the contained resource (as "#id")
 47 | 	*/
 48 | 	open func contain(resource: Resource, withDisplay display: String? = nil) throws -> Reference {
    |  `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 49 | 		guard resource !== self else {
 50 | 			throw FHIRError.resourceCannotContainItself
/Users/admin/builder/spi-builder-workspace/Sources/Client/DomainResource+Containment.swift:103:2: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
101 | 	- returns:            A `Reference`, ready for use
102 | 	*/
103 | 	open func reference(resource: Resource, withDisplay display: FHIRString? = nil) throws -> Reference {
    |  `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
104 | 		let ref = Reference(owner: self)
105 | 		ref.display = display
[232/234] Compiling Client Element+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Client/DomainResource+Containment.swift:48:2: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 46 | 	- returns:            A `Reference` instance pointing to the contained resource (as "#id")
 47 | 	*/
 48 | 	open func contain(resource: Resource, withDisplay display: String? = nil) throws -> Reference {
    |  `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
 49 | 		guard resource !== self else {
 50 | 			throw FHIRError.resourceCannotContainItself
/Users/admin/builder/spi-builder-workspace/Sources/Client/DomainResource+Containment.swift:103:2: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
101 | 	- returns:            A `Reference`, ready for use
102 | 	*/
103 | 	open func reference(resource: Resource, withDisplay display: FHIRString? = nil) throws -> Reference {
    |  `- warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
104 | 		let ref = Reference(owner: self)
105 | 		ref.display = display
[233/234] Compiling Client FHIRSearch.swift
/Users/admin/builder/spi-builder-workspace/Sources/Client/FHIRSearch.swift:287:13: warning: static property 'handlers' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
285 | struct FHIRSearchConstruct
286 | {
287 | 	static var handlers: [FHIRSearchConstructHandler] = [
    |             |- warning: static property 'handlers' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'handlers' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'handlers' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
288 | 		FHIRSearchConstructAndHandler(),
289 | 		FHIRSearchConstructOrHandler(),
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
[234/234] Compiling Client FHIRServerDataResponse.swift
/Users/admin/builder/spi-builder-workspace/Sources/Client/FHIRSearch.swift:287:13: warning: static property 'handlers' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
285 | struct FHIRSearchConstruct
286 | {
287 | 	static var handlers: [FHIRSearchConstructHandler] = [
    |             |- warning: static property 'handlers' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'handlers' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'handlers' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
288 | 		FHIRSearchConstructAndHandler(),
289 | 		FHIRSearchConstructOrHandler(),
/Users/admin/builder/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lenient' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
[235/235] Compiling Client ValueSet+Localization.swift
[236/237] Emitting module FHIR
[237/237] Compiling FHIR SwiftFHIR.swift
Build complete! (45.12s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "FHIR",
  "name" : "FHIR",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.13"
    },
    {
      "name" : "ios",
      "version" : "11.0"
    }
  ],
  "products" : [
    {
      "name" : "FHIR",
      "targets" : [
        "FHIR"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "Models",
      "module_type" : "SwiftTarget",
      "name" : "Models",
      "path" : "Sources/Models",
      "product_memberships" : [
        "FHIR"
      ],
      "sources" : [
        "Account.swift",
        "ActivityDefinition.swift",
        "Address.swift",
        "AdverseEvent.swift",
        "Age.swift",
        "AllergyIntolerance.swift",
        "Annotation.swift",
        "Appointment.swift",
        "AppointmentResponse.swift",
        "Attachment.swift",
        "AuditEvent.swift",
        "BackboneElement.swift",
        "Base64Binary.swift",
        "Basic.swift",
        "Binary.swift",
        "BiologicallyDerivedProduct.swift",
        "BodyStructure.swift",
        "Bundle.swift",
        "CapabilityStatement.swift",
        "CarePlan.swift",
        "CareTeam.swift",
        "CatalogEntry.swift",
        "ChargeItem.swift",
        "ChargeItemDefinition.swift",
        "Claim.swift",
        "ClaimResponse.swift",
        "ClinicalImpression.swift",
        "CodeSystem.swift",
        "CodeSystems.swift",
        "CodeableConcept.swift",
        "Coding.swift",
        "Communication.swift",
        "CommunicationRequest.swift",
        "CompartmentDefinition.swift",
        "Composition.swift",
        "ConceptMap.swift",
        "Condition.swift",
        "Consent.swift",
        "ContactDetail.swift",
        "ContactPoint.swift",
        "Contract.swift",
        "Contributor.swift",
        "Count.swift",
        "Coverage.swift",
        "CoverageEligibilityRequest.swift",
        "CoverageEligibilityResponse.swift",
        "DataRequirement.swift",
        "DateAndTime.swift",
        "DetectedIssue.swift",
        "Device.swift",
        "DeviceDefinition.swift",
        "DeviceMetric.swift",
        "DeviceRequest.swift",
        "DeviceUseStatement.swift",
        "DiagnosticReport.swift",
        "Distance.swift",
        "DocumentManifest.swift",
        "DocumentReference.swift",
        "DomainResource.swift",
        "Dosage.swift",
        "Duration.swift",
        "EffectEvidenceSynthesis.swift",
        "Element.swift",
        "ElementDefinition.swift",
        "Encounter.swift",
        "Endpoint.swift",
        "EnrollmentRequest.swift",
        "EnrollmentResponse.swift",
        "EpisodeOfCare.swift",
        "EventDefinition.swift",
        "Evidence.swift",
        "EvidenceVariable.swift",
        "ExampleScenario.swift",
        "ExplanationOfBenefit.swift",
        "Expression.swift",
        "Extension.swift",
        "FHIRAbstractBase+Factory.swift",
        "FHIRAbstractBase.swift",
        "FHIRAbstractResource.swift",
        "FHIRBool.swift",
        "FHIRCanonical.swift",
        "FHIRDecimal.swift",
        "FHIREnum.swift",
        "FHIRError.swift",
        "FHIRInteger.swift",
        "FHIRPrimitive.swift",
        "FHIRRequest.swift",
        "FHIRRequestHandler.swift",
        "FHIRServer.swift",
        "FHIRServerResponse.swift",
        "FHIRString.swift",
        "FHIRType.swift",
        "FHIRURL.swift",
        "FHIRValidationError.swift",
        "FamilyMemberHistory.swift",
        "Flag.swift",
        "Goal.swift",
        "GraphDefinition.swift",
        "Group.swift",
        "GuidanceResponse.swift",
        "HealthcareService.swift",
        "HumanName.swift",
        "Identifier.swift",
        "ImagingStudy.swift",
        "Immunization.swift",
        "ImmunizationEvaluation.swift",
        "ImmunizationRecommendation.swift",
        "ImplementationGuide.swift",
        "InsurancePlan.swift",
        "Invoice.swift",
        "Library.swift",
        "Linkage.swift",
        "List.swift",
        "Location.swift",
        "MarketingStatus.swift",
        "Measure.swift",
        "MeasureReport.swift",
        "Media.swift",
        "Medication.swift",
        "MedicationAdministration.swift",
        "MedicationDispense.swift",
        "MedicationKnowledge.swift",
        "MedicationRequest.swift",
        "MedicationStatement.swift",
        "MedicinalProduct.swift",
        "MedicinalProductAuthorization.swift",
        "MedicinalProductContraindication.swift",
        "MedicinalProductIndication.swift",
        "MedicinalProductIngredient.swift",
        "MedicinalProductInteraction.swift",
        "MedicinalProductManufactured.swift",
        "MedicinalProductPackaged.swift",
        "MedicinalProductPharmaceutical.swift",
        "MedicinalProductUndesirableEffect.swift",
        "MessageDefinition.swift",
        "MessageHeader.swift",
        "Meta.swift",
        "MetadataResource.swift",
        "MolecularSequence.swift",
        "Money.swift",
        "NamingSystem.swift",
        "Narrative.swift",
        "NutritionOrder.swift",
        "Observation.swift",
        "ObservationDefinition.swift",
        "OperationDefinition.swift",
        "OperationOutcome.swift",
        "Organization.swift",
        "OrganizationAffiliation.swift",
        "ParameterDefinition.swift",
        "Parameters.swift",
        "Patient.swift",
        "PaymentNotice.swift",
        "PaymentReconciliation.swift",
        "Period.swift",
        "Person.swift",
        "PlanDefinition.swift",
        "Population.swift",
        "Practitioner.swift",
        "PractitionerRole.swift",
        "Procedure.swift",
        "ProdCharacteristic.swift",
        "ProductShelfLife.swift",
        "Provenance.swift",
        "Quantity.swift",
        "Questionnaire.swift",
        "QuestionnaireResponse.swift",
        "Range.swift",
        "Ratio.swift",
        "Reference.swift",
        "RelatedArtifact.swift",
        "RelatedPerson.swift",
        "RequestGroup.swift",
        "ResearchDefinition.swift",
        "ResearchElementDefinition.swift",
        "ResearchStudy.swift",
        "ResearchSubject.swift",
        "Resource+Meta.swift",
        "Resource.swift",
        "RiskAssessment.swift",
        "RiskEvidenceSynthesis.swift",
        "SampledData.swift",
        "Schedule.swift",
        "SearchParameter.swift",
        "ServiceRequest.swift",
        "Signature.swift",
        "Slot.swift",
        "Specimen.swift",
        "SpecimenDefinition.swift",
        "StructureDefinition.swift",
        "StructureMap.swift",
        "Subscription.swift",
        "Substance.swift",
        "SubstanceAmount.swift",
        "SubstanceNucleicAcid.swift",
        "SubstancePolymer.swift",
        "SubstanceProtein.swift",
        "SubstanceReferenceInformation.swift",
        "SubstanceSourceMaterial.swift",
        "SubstanceSpecification.swift",
        "SupplyDelivery.swift",
        "SupplyRequest.swift",
        "Task.swift",
        "TerminologyCapabilities.swift",
        "TestReport.swift",
        "TestScript.swift",
        "Timing.swift",
        "TriggerDefinition.swift",
        "UsageContext.swift",
        "ValueSet.swift",
        "VerificationResult.swift",
        "VisionPrescription.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "FHIR",
      "module_type" : "SwiftTarget",
      "name" : "FHIR",
      "path" : "Sources/FHIR",
      "product_memberships" : [
        "FHIR"
      ],
      "sources" : [
        "SwiftFHIR.swift"
      ],
      "target_dependencies" : [
        "Models",
        "Client"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Client",
      "module_type" : "SwiftTarget",
      "name" : "Client",
      "path" : "Sources/Client",
      "product_memberships" : [
        "FHIR"
      ],
      "sources" : [
        "DomainResource+Containment.swift",
        "Element+Extensions.swift",
        "FHIRBaseRequestHandler.swift",
        "FHIRBaseServer.swift",
        "FHIRCanonical+Resolving.swift",
        "FHIRMinimalServer.swift",
        "FHIROpenServer.swift",
        "FHIROperation.swift",
        "FHIRSearch.swift",
        "FHIRServerDataResponse.swift",
        "FHIRString+Localization.swift",
        "Patient+SMART.swift",
        "Reference+Resolving.swift",
        "Resource+Instantiation.swift",
        "Resource+Operation.swift",
        "Resource+REST.swift",
        "ValueSet+Localization.swift"
      ],
      "target_dependencies" : [
        "Models"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.