This set of common support assets is reused by multiple test assets through referencing. This allows test files to reduce their size and use a consistent, known base. Also included is an error image that can be used to indicate an application or render issue.
 usdrecord 22.08
usdrecord 22.08
 usdrecord 22.08
usdrecord 22.08

The teapot model is TM & (c) 2017 Lucasfilm Entertainment Company Ltd. and Lucasfilm Ltd. All rights reserved, and covered by the Apache 2.0 license.

#usda 1.0
(
    customLayerData = {
        string copyright = "Copyright 2022 Apple Inc. All rights reserved."
    }
    defaultPrim = "World"
    upAxis = "Y"
    metersPerUnit = 0.01
)
def Xform "World"
{
    def Cube "X"
    {
        color3f[] primvars:displayColor = [(1, 0, 0)]
        float3 xformOp:scale = (1, 0.1, 0.1)
        double3 xformOp:translate = (1.1, 0, 0)
        uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:scale"]
    }
    def Cube "Y"
    {
        color3f[] primvars:displayColor = [(0, 1, 0)]
        float3 xformOp:scale = (0.1, 1, 0.1)
        double3 xformOp:translate = (0, 1.1, 0)
        uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:scale"]
    }
    def Cube "Z"
    {
        color3f[] primvars:displayColor = [(0, 0, 1)]
        float3 xformOp:scale = (0.1, 0.1, 1)
        double3 xformOp:translate = (0, 0, 1.1)
        uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:scale"]
    }
}