smithy.api.TraitShapeId.scala Maven / Gradle / Ivy
package smithy.api
import smithy4s.Hints
import smithy4s.Newtype
import smithy4s.Schema
import smithy4s.ShapeId
import smithy4s.schema.Schema.bijection
import smithy4s.schema.Schema.string
object TraitShapeId extends Newtype[ShapeId] {
val id: ShapeId = ShapeId("smithy.api", "TraitShapeId")
val hints: Hints = Hints(
smithy.api.Private(),
).lazily
val underlyingSchema: Schema[ShapeId] = string.refined[ShapeId](smithy.api.IdRef(selector = "[trait|trait]", failWhenMissing = Some(true), errorMessage = None)).withId(id).addHints(hints)
implicit val schema: Schema[TraitShapeId] = bijection(underlyingSchema, asBijection)
}