{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--aws-sagemaker-modelpackage.json",
  "title": "AWSSageMakerModelPackageProperties",
  "description": "Resource Type definition for AWS::SageMaker::ModelPackage. Source:- No source definition found, add manually please",
  "x-lintel": {
    "source": "https://raw.githubusercontent.com/lalcebo/json-schema/master/serverless/resources/cloudformation-modified/aws-sagemaker-modelpackage.json",
    "sourceSha256": "5ef2f86a76ba4af85fe5892a723f458d2aa414402941bf342dc03ab28bb9a994"
  },
  "type": "object",
  "properties": {
    "Tags": {
      "type": "array",
      "maxItems": 50,
      "description": "An array of key-value pairs to apply to this resource.",
      "items": {
        "$ref": "#/$defs/Tag"
      }
    },
    "AdditionalInferenceSpecifications": {
      "$ref": "#/$defs/AdditionalInferenceSpecifications"
    },
    "AdditionalInferenceSpecificationDefinition": {
      "$ref": "#/$defs/AdditionalInferenceSpecificationDefinition"
    },
    "CertifyForMarketplace": {
      "$ref": "#/$defs/CertifyForMarketplace"
    },
    "ClientToken": {
      "$ref": "#/$defs/ClientToken"
    },
    "CustomerMetadataProperties": {
      "$ref": "#/$defs/CustomerMetadataProperties"
    },
    "Domain": {
      "$ref": "#/$defs/Domain"
    },
    "DriftCheckBaselines": {
      "$ref": "#/$defs/DriftCheckBaselines"
    },
    "InferenceSpecification": {
      "$ref": "#/$defs/InferenceSpecification"
    },
    "MetadataProperties": {
      "$ref": "#/$defs/MetadataProperties"
    },
    "ModelApprovalStatus": {
      "$ref": "#/$defs/ModelApprovalStatus"
    },
    "ModelMetrics": {
      "$ref": "#/$defs/ModelMetrics"
    },
    "ModelPackageDescription": {
      "$ref": "#/$defs/ModelPackageDescription"
    },
    "ModelPackageGroupName": {
      "$ref": "#/$defs/ModelPackageGroupName"
    },
    "ModelPackageName": {
      "$ref": "#/$defs/ModelPackageName"
    },
    "SamplePayloadUrl": {
      "$ref": "#/$defs/SamplePayloadUrl"
    },
    "SourceAlgorithmSpecification": {
      "$ref": "#/$defs/SourceAlgorithmSpecification"
    },
    "Task": {
      "$ref": "#/$defs/Task"
    },
    "ValidationSpecification": {
      "$ref": "#/$defs/ValidationSpecification"
    },
    "ApprovalDescription": {
      "$ref": "#/$defs/ApprovalDescription"
    },
    "LastModifiedBy": {
      "$ref": "#/$defs/LastModifiedBy"
    },
    "LastModifiedTime": {
      "$ref": "#/$defs/LastModifiedTime"
    },
    "ModelPackageVersion": {
      "$ref": "#/$defs/ModelPackageVersion"
    },
    "AdditionalInferenceSpecificationsToAdd": {
      "$ref": "#/$defs/AdditionalInferenceSpecifications"
    },
    "ModelPackageStatusDetails": {
      "$ref": "#/$defs/ModelPackageStatusDetails"
    },
    "ModelPackageStatusItem": {
      "$ref": "#/$defs/ModelPackageStatusItem"
    },
    "CreatedBy": {
      "$ref": "#/$defs/CreatedBy"
    },
    "Environment": {
      "$ref": "#/$defs/Environment"
    }
  },
  "typeName": "AWS::SageMaker::ModelPackage",
  "primaryIdentifier": [
    "/properties/ModelPackageArn"
  ],
  "additionalProperties": false,
  "createOnlyProperties": [
    "/properties/ModelPackageGroupName",
    "/properties/ModelPackageDescription",
    "/properties/InferenceSpecification",
    "/properties/ValidationSpecification",
    "/properties/SourceAlgorithmSpecification",
    "/properties/MetadataProperties",
    "/properties/ModelMetrics",
    "/properties/ClientToken",
    "/properties/DriftCheckBaselines",
    "/properties/Domain",
    "/properties/Task",
    "/properties/SamplePayloadUrl"
  ],
  "$defs": {
    "Tag": {
      "description": "A key-value pair to associate with a resource.",
      "type": "object",
      "properties": {
        "Key": {
          "oneOf": [
            {
              "type": "string",
              "minLength": 1,
              "maxLength": 128,
              "pattern": "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The key name of the tag. You can specify a value that is 1 to 127 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -."
        },
        "Value": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 256,
              "pattern": "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The value for the tag. You can specify a value that is 1 to 255 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -."
        }
      },
      "required": [
        "Key",
        "Value"
      ],
      "title": "AWSSageMakerModelPackageTagDefinition",
      "additionalProperties": false
    },
    "AdditionalInferenceSpecifications": {
      "type": "array",
      "minItems": 1,
      "maxItems": 15,
      "description": "An array of additional Inference Specification objects.",
      "items": {
        "$ref": "#/$defs/AdditionalInferenceSpecificationDefinition"
      },
      "insertionOrder": true,
      "title": "AWSSageMakerModelPackageAdditionalInferenceSpecificationsDefinition"
    },
    "AdditionalInferenceSpecificationDefinition": {
      "description": "Additional Inference Specification specifies details about inference jobs that can be run with models based on this model package.AdditionalInferenceSpecifications can be added to existing model packages using AdditionalInferenceSpecificationsToAdd.",
      "type": "object",
      "title": "AWSSageMakerModelPackageAdditionalInferenceSpecificationDefinition",
      "properties": {
        "Containers": {
          "description": "The Amazon ECR registry path of the Docker image that contains the inference code.",
          "type": "array",
          "items": {
            "$ref": "#/$defs/ModelPackageContainerDefinition"
          },
          "minItems": 1,
          "maxItems": 15,
          "insertionOrder": true
        },
        "Description": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 1024,
              "pattern": ".*"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "A description of the additional Inference specification."
        },
        "Name": {
          "oneOf": [
            {
              "type": "string",
              "minLength": 1,
              "maxLength": 63,
              "pattern": "^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}$"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "A unique name to identify the additional inference specification. The name must be unique within the list of your additional inference specifications for a particular model package."
        },
        "SupportedContentTypes": {
          "description": "The supported MIME types for the input data.",
          "type": "array",
          "items": {
            "$ref": "#/$defs/ContentType"
          },
          "insertionOrder": true
        },
        "SupportedRealtimeInferenceInstanceTypes": {
          "description": "A list of the instance types that are used to generate inferences in real-time",
          "type": "array",
          "items": {
            "$ref": "#/$defs/InferenceInstanceType"
          },
          "insertionOrder": true
        },
        "SupportedResponseMIMETypes": {
          "description": "The supported MIME types for the output data.",
          "type": "array",
          "items": {
            "$ref": "#/$defs/ResponseMIMEType"
          },
          "insertionOrder": true
        },
        "SupportedTransformInstanceTypes": {
          "description": "A list of the instance types on which a transformation job can be run or on which an endpoint can be deployed.",
          "type": "array",
          "minItems": 1,
          "items": {
            "$ref": "#/$defs/TransformInstanceType"
          },
          "insertionOrder": true
        }
      },
      "required": [
        "Containers",
        "Name"
      ],
      "additionalProperties": false
    },
    "TransformInstanceType": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "Instance types on which a transformation job can be run or on which an endpoint can be deployed.",
      "title": "AWSSageMakerModelPackageTransformInstanceTypeDefinition"
    },
    "InferenceInstanceType": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "Instance type that is used to generate inferences in real-time",
      "title": "AWSSageMakerModelPackageInferenceInstanceTypeDefinition"
    },
    "ContentType": {
      "oneOf": [
        {
          "type": "string",
          "maxLength": 256,
          "pattern": ".*"
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The supported MIME type for the input data.",
      "title": "AWSSageMakerModelPackageContentTypeDefinition"
    },
    "ResponseMIMEType": {
      "oneOf": [
        {
          "type": "string",
          "maxLength": 1024,
          "pattern": "^[-\\w]+\\/.+$"
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The supported MIME types for the output data.",
      "title": "AWSSageMakerModelPackageResponseMIMETypeDefinition"
    },
    "CertifyForMarketplace": {
      "description": "Whether to certify the model package for listing on AWS Marketplace.",
      "type": "boolean",
      "title": "AWSSageMakerModelPackageCertifyForMarketplaceDefinition"
    },
    "ClientToken": {
      "oneOf": [
        {
          "type": "string",
          "minLength": 1,
          "maxLength": 36,
          "pattern": "^[a-zA-Z0-9-]+$"
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "A unique token that guarantees that the call to this API is idempotent.",
      "title": "AWSSageMakerModelPackageClientTokenDefinition"
    },
    "CustomerMetadataProperties": {
      "type": "object",
      "description": "The metadata properties associated with the model package versions.",
      "maxProperties": 50,
      "minProperties": 1,
      "additionalProperties": false,
      "title": "AWSSageMakerModelPackageCustomerMetadataPropertiesDefinition",
      "patternProperties": {
        "^([\\p{L}\\p{Z}\\p{N}_.:\\/=+\\-@]*)${1,128}": {
          "type": "string",
          "minLength": 1,
          "maxLength": 128
        },
        "^([\\p{L}\\p{Z}\\p{N}_.:\\/=+\\-@]*)${1,256}": {
          "type": "string",
          "minLength": 1,
          "maxLength": 256
        }
      }
    },
    "Domain": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The machine learning domain of the model package you specified.",
      "title": "AWSSageMakerModelPackageDomainDefinition"
    },
    "DriftCheckBaselines": {
      "description": "Represents the drift check baselines that can be used when the model monitor is set using the model package.",
      "type": "object",
      "title": "AWSSageMakerModelPackageDriftCheckBaselinesDefinition",
      "properties": {
        "Bias": {
          "$ref": "#/$defs/DriftCheckBias"
        },
        "Explainability": {
          "$ref": "#/$defs/DriftCheckExplainability"
        },
        "ModelDataQuality": {
          "$ref": "#/$defs/DriftCheckModelDataQuality"
        },
        "ModelQuality": {
          "$ref": "#/$defs/DriftCheckModelQuality"
        }
      },
      "additionalProperties": false
    },
    "DriftCheckBias": {
      "description": "Represents the drift check bias baselines that can be used when the model monitor is set using the model package.",
      "type": "object",
      "title": "AWSSageMakerModelPackageDriftCheckBiasDefinition",
      "properties": {
        "PostTrainingConstraints": {
          "$ref": "#/$defs/MetricsSource"
        },
        "PreTrainingConstraints": {
          "$ref": "#/$defs/MetricsSource"
        },
        "ConfigFile": {
          "$ref": "#/$defs/FileSource"
        }
      },
      "additionalProperties": false
    },
    "DriftCheckExplainability": {
      "description": "Contains explainability metrics for a model.",
      "type": "object",
      "title": "AWSSageMakerModelPackageDriftCheckExplainabilityDefinition",
      "properties": {
        "Constraints": {
          "$ref": "#/$defs/MetricsSource"
        },
        "ConfigFile": {
          "$ref": "#/$defs/FileSource"
        }
      },
      "additionalProperties": false
    },
    "DriftCheckModelDataQuality": {
      "description": "Represents the drift check data quality baselines that can be used when the model monitor is set using the model package.",
      "type": "object",
      "title": "AWSSageMakerModelPackageDriftCheckModelDataQualityDefinition",
      "properties": {
        "Constraints": {
          "$ref": "#/$defs/MetricsSource"
        },
        "Statistics": {
          "$ref": "#/$defs/MetricsSource"
        }
      },
      "additionalProperties": false
    },
    "DriftCheckModelQuality": {
      "description": "Represents the drift check model quality baselines that can be used when the model monitor is set using the model package.",
      "type": "object",
      "title": "AWSSageMakerModelPackageDriftCheckModelQualityDefinition",
      "properties": {
        "Constraints": {
          "$ref": "#/$defs/MetricsSource"
        },
        "Statistics": {
          "$ref": "#/$defs/MetricsSource"
        }
      },
      "additionalProperties": false
    },
    "MetricsSource": {
      "description": "Represents a Metric Source Object.",
      "type": "object",
      "title": "AWSSageMakerModelPackageMetricsSourceDefinition",
      "properties": {
        "ContentDigest": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 72,
              "pattern": "^[Ss][Hh][Aa]256:[0-9a-fA-F]{64}$"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The digest of the metric source."
        },
        "ContentType": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 256,
              "pattern": ".*"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The type of content stored in the metric source."
        },
        "S3Uri": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 1024,
              "pattern": "^(https|s3)://([^/]+)/?(.*)$"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The Amazon S3 URI for the metric source."
        }
      },
      "required": [
        "ContentType",
        "S3Uri"
      ],
      "additionalProperties": false
    },
    "FileSource": {
      "description": "Represents a File Source Object.",
      "type": "object",
      "title": "AWSSageMakerModelPackageFileSourceDefinition",
      "properties": {
        "ContentDigest": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 72,
              "pattern": "^[Ss][Hh][Aa]256:[0-9a-fA-F]{64}$"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The digest of the file source."
        },
        "ContentType": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 256,
              "pattern": ".*"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The type of content stored in the file source."
        },
        "S3Uri": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 1024,
              "pattern": "^(https|s3)://([^/]+)/?(.*)$"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The Amazon S3 URI for the file source."
        }
      },
      "required": [
        "S3Uri"
      ],
      "additionalProperties": false
    },
    "InferenceSpecification": {
      "description": "Details about inference jobs that can be run with models based on this model package.",
      "type": "object",
      "title": "AWSSageMakerModelPackageInferenceSpecificationDefinition",
      "properties": {
        "Containers": {
          "description": "The Amazon ECR registry path of the Docker image that contains the inference code.",
          "type": "array",
          "uniqueItems": true,
          "items": {
            "$ref": "#/$defs/ModelPackageContainerDefinition"
          },
          "minItems": 1,
          "maxItems": 15,
          "insertionOrder": true
        },
        "SupportedContentTypes": {
          "description": "The supported MIME types for the input data.",
          "type": "array",
          "items": {
            "$ref": "#/$defs/ContentType"
          },
          "insertionOrder": true
        },
        "SupportedRealtimeInferenceInstanceTypes": {
          "description": "A list of the instance types that are used to generate inferences in real-time",
          "type": "array",
          "items": {
            "$ref": "#/$defs/InferenceInstanceType"
          },
          "insertionOrder": true
        },
        "SupportedResponseMIMETypes": {
          "description": "The supported MIME types for the output data.",
          "type": "array",
          "items": {
            "$ref": "#/$defs/ResponseMIMEType"
          },
          "insertionOrder": true
        },
        "SupportedTransformInstanceTypes": {
          "description": "A list of the instance types on which a transformation job can be run or on which an endpoint can be deployed.",
          "type": "array",
          "minItems": 1,
          "items": {
            "$ref": "#/$defs/TransformInstanceType"
          },
          "insertionOrder": true
        }
      },
      "required": [
        "Containers",
        "SupportedContentTypes",
        "SupportedResponseMIMETypes"
      ],
      "additionalProperties": false
    },
    "Environment": {
      "type": "object",
      "description": "Sets the environment variables in the Docker container",
      "maxProperties": 16,
      "additionalProperties": false,
      "title": "AWSSageMakerModelPackageEnvironmentDefinition",
      "patternProperties": {
        "[a-zA-Z_][a-zA-Z0-9_]*": {
          "type": "string",
          "maxLength": 1024
        },
        "[\\S\\s]*": {
          "type": "string",
          "maxLength": 1024
        }
      }
    },
    "ModelPackageContainerDefinition": {
      "type": "object",
      "title": "AWSSageMakerModelPackageModelPackageContainerDefinition",
      "description": "Describes the Docker container for the model package.",
      "properties": {
        "ContainerHostname": {
          "oneOf": [
            {
              "type": "string",
              "pattern": "^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}",
              "maxLength": 63
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The DNS host name for the Docker container."
        },
        "Environment": {
          "$ref": "#/$defs/Environment"
        },
        "ModelInput": {
          "type": "object",
          "required": [
            "DataInputConfig"
          ],
          "properties": {
            "DataInputConfig": {
              "oneOf": [
                {
                  "type": "string",
                  "pattern": "[\\S\\s]+",
                  "minLength": 1,
                  "maxLength": 1024
                },
                {
                  "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
                }
              ],
              "description": "The input configuration object for the model."
            }
          },
          "additionalProperties": false
        },
        "Image": {
          "oneOf": [
            {
              "type": "string",
              "pattern": "[\\S]{1,255}",
              "minLength": 1,
              "maxLength": 255
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The Amazon EC2 Container Registry (Amazon ECR) path where inference code is stored."
        },
        "ImageDigest": {
          "oneOf": [
            {
              "type": "string",
              "pattern": "^[Ss][Hh][Aa]256:[0-9a-fA-F]{64}$",
              "maxLength": 72
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "An MD5 hash of the training algorithm that identifies the Docker image used for training."
        },
        "ModelDataUrl": {
          "oneOf": [
            {
              "type": "string",
              "pattern": "^(https|s3)://([^/]+)/?(.*)$",
              "maxLength": 1024
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "A structure with Model Input details."
        },
        "ProductId": {
          "oneOf": [
            {
              "type": "string",
              "pattern": "^[a-zA-Z0-9](-*[a-zA-Z0-9])*$",
              "maxLength": 256
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The AWS Marketplace product ID of the model package."
        },
        "Framework": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The machine learning framework of the model package container image."
        },
        "FrameworkVersion": {
          "oneOf": [
            {
              "type": "string",
              "pattern": "[0-9]\\.[A-Za-z0-9.]+",
              "minLength": 3,
              "maxLength": 10
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The framework version of the Model Package Container Image."
        },
        "NearestModelName": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The name of a pre-trained machine learning benchmarked by Amazon SageMaker Inference Recommender model that matches your model."
        }
      },
      "required": [
        "Image"
      ],
      "additionalProperties": false
    },
    "MetadataProperties": {
      "description": "Metadata properties of the tracking entity, trial, or trial component.",
      "type": "object",
      "properties": {
        "CommitId": {
          "oneOf": [
            {
              "type": "string",
              "pattern": ".*",
              "maxLength": 1024
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The commit ID."
        },
        "GeneratedBy": {
          "oneOf": [
            {
              "type": "string",
              "pattern": ".*",
              "maxLength": 1024
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The entity this entity was generated by."
        },
        "ProjectId": {
          "oneOf": [
            {
              "type": "string",
              "pattern": ".*",
              "maxLength": 1024
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The project ID metadata."
        },
        "Repository": {
          "oneOf": [
            {
              "type": "string",
              "pattern": ".*",
              "maxLength": 1024
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The repository metadata."
        }
      },
      "title": "AWSSageMakerModelPackageMetadataPropertiesDefinition",
      "additionalProperties": false
    },
    "ModelApprovalStatus": {
      "oneOf": [
        {
          "type": "string",
          "enum": [
            "Approved",
            "Rejected",
            "PendingManualApproval"
          ]
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The approval status of the model package.",
      "title": "AWSSageMakerModelPackageModelApprovalStatusDefinition"
    },
    "ModelMetrics": {
      "description": "A structure that contains model metrics reports.",
      "type": "object",
      "title": "AWSSageMakerModelPackageModelMetricsDefinition",
      "properties": {
        "Bias": {
          "$ref": "#/$defs/Bias"
        },
        "Explainability": {
          "$ref": "#/$defs/Explainability"
        },
        "ModelDataQuality": {
          "$ref": "#/$defs/ModelDataQuality"
        },
        "ModelQuality": {
          "$ref": "#/$defs/ModelQuality"
        }
      },
      "additionalProperties": false
    },
    "Bias": {
      "description": "Contains bias metrics for a model.",
      "type": "object",
      "title": "AWSSageMakerModelPackageBiasDefinition",
      "properties": {
        "Report": {
          "$ref": "#/$defs/MetricsSource"
        },
        "PreTrainingReport": {
          "$ref": "#/$defs/MetricsSource"
        },
        "PostTrainingReport": {
          "$ref": "#/$defs/MetricsSource"
        }
      },
      "additionalProperties": false
    },
    "Explainability": {
      "description": "Contains explainability metrics for a model.",
      "type": "object",
      "title": "AWSSageMakerModelPackageExplainabilityDefinition",
      "properties": {
        "Report": {
          "$ref": "#/$defs/MetricsSource"
        }
      },
      "additionalProperties": false
    },
    "ModelDataQuality": {
      "description": "Metrics that measure the quality of the input data for a model.",
      "type": "object",
      "title": "AWSSageMakerModelPackageModelDataQualityDefinition",
      "properties": {
        "Constraints": {
          "$ref": "#/$defs/MetricsSource"
        },
        "Statistics": {
          "$ref": "#/$defs/MetricsSource"
        }
      },
      "additionalProperties": false
    },
    "ModelQuality": {
      "description": "Metrics that measure the quality of a model.",
      "type": "object",
      "title": "AWSSageMakerModelPackageModelQualityDefinition",
      "properties": {
        "Constraints": {
          "$ref": "#/$defs/MetricsSource"
        },
        "Statistics": {
          "$ref": "#/$defs/MetricsSource"
        }
      },
      "additionalProperties": false
    },
    "ModelPackageDescription": {
      "oneOf": [
        {
          "type": "string",
          "pattern": "[\\p{L}\\p{M}\\p{Z}\\p{S}\\p{N}\\p{P}]*",
          "maxLength": 1024
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The description of the model package.",
      "title": "AWSSageMakerModelPackageModelPackageDescriptionDefinition"
    },
    "ModelPackageGroupName": {
      "oneOf": [
        {
          "type": "string",
          "pattern": "(arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:[a-z\\-]*\\/)?([a-zA-Z0-9]([a-zA-Z0-9-]){0,62})(?<!-)$",
          "minLength": 1,
          "maxLength": 170
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The name of the model package group.",
      "title": "AWSSageMakerModelPackageModelPackageGroupNameDefinition"
    },
    "ModelPackageName": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The name or arn of the model package.",
      "title": "AWSSageMakerModelPackageModelPackageNameDefinition"
    },
    "SamplePayloadUrl": {
      "oneOf": [
        {
          "type": "string",
          "maxLength": 1024,
          "pattern": "^(https|s3)://([^/]+)/?(.*)$"
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The Amazon Simple Storage Service (Amazon S3) path where the sample payload are stored pointing to single gzip compressed tar archive.",
      "title": "AWSSageMakerModelPackageSamplePayloadUrlDefinition"
    },
    "SourceAlgorithmSpecification": {
      "description": "Details about the algorithm that was used to create the model package.",
      "type": "object",
      "title": "AWSSageMakerModelPackageSourceAlgorithmSpecificationDefinition",
      "properties": {
        "SourceAlgorithms": {
          "description": "A list of algorithms that were used to create a model package.",
          "type": "array",
          "items": {
            "$ref": "#/$defs/SourceAlgorithm"
          },
          "minItems": 1,
          "maxItems": 1,
          "insertionOrder": true
        }
      },
      "required": [
        "SourceAlgorithms"
      ],
      "insertionOrder": true,
      "additionalProperties": false
    },
    "SourceAlgorithm": {
      "description": "Specifies an algorithm that was used to create the model package. The algorithm must be either an algorithm resource in your Amazon SageMaker account or an algorithm in AWS Marketplace that you are subscribed to.",
      "type": "object",
      "title": "AWSSageMakerModelPackageSourceAlgorithmDefinition",
      "properties": {
        "AlgorithmName": {
          "oneOf": [
            {
              "type": "string",
              "minLength": 1,
              "maxLength": 170,
              "pattern": "(arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:[a-z\\-]*\\/)?([a-zA-Z0-9]([a-zA-Z0-9-]){0,62})(?<!-)$"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The name of an algorithm that was used to create the model package. The algorithm must be either an algorithm resource in your Amazon SageMaker account or an algorithm in AWS Marketplace that you are subscribed to."
        },
        "ModelDataUrl": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 1024,
              "pattern": "^(https|s3)://([^/]+)/?(.*)$"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The Amazon S3 path where the model artifacts, which result from model training, are stored. This path must point to a single gzip compressed tar archive (.tar.gz suffix)."
        }
      },
      "required": [
        "AlgorithmName"
      ],
      "additionalProperties": false
    },
    "ValidationSpecification": {
      "description": "Specifies configurations for one or more transform jobs that Amazon SageMaker runs to test the model package.",
      "type": "object",
      "title": "AWSSageMakerModelPackageValidationSpecificationDefinition",
      "properties": {
        "ValidationProfiles": {
          "type": "array",
          "items": {
            "$ref": "#/$defs/ValidationProfile"
          },
          "minItems": 1,
          "maxItems": 1,
          "insertionOrder": true
        },
        "ValidationRole": {
          "oneOf": [
            {
              "type": "string",
              "minLength": 20,
              "maxLength": 2048,
              "pattern": "^arn:aws[a-z\\-]*:iam::\\d{12}:role/?[a-zA-Z_0-9+=,.@\\-_/]+$"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The IAM roles to be used for the validation of the model package."
        }
      },
      "required": [
        "ValidationProfiles",
        "ValidationRole"
      ],
      "insertionOrder": true,
      "additionalProperties": false
    },
    "ValidationProfile": {
      "description": "Contains data, such as the inputs and targeted instance types that are used in the process of validating the model package.",
      "type": "object",
      "title": "AWSSageMakerModelPackageValidationProfileDefinition",
      "properties": {
        "TransformJobDefinition": {
          "$ref": "#/$defs/TransformJobDefinition"
        },
        "ProfileName": {
          "oneOf": [
            {
              "type": "string",
              "minLength": 1,
              "maxLength": 63,
              "pattern": "^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}$"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The name of the profile for the model package."
        }
      },
      "required": [
        "TransformJobDefinition",
        "ProfileName"
      ],
      "additionalProperties": false
    },
    "TransformJobDefinition": {
      "description": "Defines the input needed to run a transform job using the inference specification specified in the algorithm.",
      "type": "object",
      "title": "AWSSageMakerModelPackageTransformJobDefinition",
      "properties": {
        "Environment": {
          "$ref": "#/$defs/Environment"
        },
        "BatchStrategy": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "MultiRecord",
                "SingleRecord"
              ]
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "A string that determines the number of records included in a single mini-batch."
        },
        "MaxConcurrentTransforms": {
          "description": "The maximum number of parallel requests that can be sent to each instance in a transform job. The default value is 1.",
          "type": "integer",
          "minimum": 0
        },
        "MaxPayloadInMB": {
          "description": "The maximum payload size allowed, in MB. A payload is the data portion of a record (without metadata).",
          "type": "integer",
          "minimum": 0
        },
        "TransformInput": {
          "$ref": "#/$defs/TransformInput"
        },
        "TransformOutput": {
          "$ref": "#/$defs/TransformOutput"
        },
        "TransformResources": {
          "$ref": "#/$defs/TransformResources"
        }
      },
      "required": [
        "TransformResources",
        "TransformOutput",
        "TransformInput"
      ],
      "additionalProperties": false
    },
    "TransformInput": {
      "description": "Describes the input source of a transform job and the way the transform job consumes it.",
      "type": "object",
      "title": "AWSSageMakerModelPackageTransformInputDefinition",
      "properties": {
        "CompressionType": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "None",
                "Gzip"
              ]
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "If your transform data is compressed, specify the compression type. Amazon SageMaker automatically decompresses the data for the transform job accordingly. The default value is None."
        },
        "ContentType": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 256,
              "pattern": ".*"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The multipurpose internet mail extension (MIME) type of the data. Amazon SageMaker uses the MIME type with each http call to transfer data to the transform job."
        },
        "DataSource": {
          "$ref": "#/$defs/DataSource"
        },
        "SplitType": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "None",
                "TFRecord",
                "Line",
                "RecordIO"
              ]
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The method to use to split the transform job's data files into smaller batches. "
        }
      },
      "required": [
        "DataSource"
      ],
      "additionalProperties": false
    },
    "DataSource": {
      "description": "Describes the input source of a transform job and the way the transform job consumes it.",
      "type": "object",
      "title": "AWSSageMakerModelPackageDataSourceDefinition",
      "properties": {
        "S3DataSource": {
          "$ref": "#/$defs/S3DataSource"
        }
      },
      "required": [
        "S3DataSource"
      ],
      "additionalProperties": false
    },
    "S3DataSource": {
      "description": "Describes the S3 data source.",
      "type": "object",
      "title": "AWSSageMakerModelPackageS3DataSourceDefinition",
      "properties": {
        "S3DataType": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "ManifestFile",
                "S3Prefix",
                "AugmentedManifestFile"
              ]
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The S3 Data Source Type"
        },
        "S3Uri": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 1024,
              "pattern": "^(https|s3)://([^/]+)/?(.*)$"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "Depending on the value specified for the S3DataType, identifies either a key name prefix or a manifest."
        }
      },
      "required": [
        "S3DataType",
        "S3Uri"
      ],
      "additionalProperties": false
    },
    "TransformOutput": {
      "description": "Describes the results of a transform job.",
      "type": "object",
      "title": "AWSSageMakerModelPackageTransformOutputDefinition",
      "properties": {
        "Accept": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 256,
              "pattern": ".*"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The MIME type used to specify the output data. Amazon SageMaker uses the MIME type with each http call to transfer data from the transform job."
        },
        "KmsKeyId": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 2048,
              "pattern": ".*"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt the model artifacts at rest using Amazon S3 server-side encryption."
        },
        "S3OutputPath": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 1024,
              "pattern": "^(https|s3)://([^/]+)/?(.*)$"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The Amazon S3 path where you want Amazon SageMaker to store the results of the transform job."
        },
        "AssembleWith": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "None",
                "Line"
              ]
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "Defines how to assemble the results of the transform job as a single S3 object."
        }
      },
      "required": [
        "S3OutputPath"
      ],
      "additionalProperties": false
    },
    "TransformResources": {
      "description": "Describes the resources, including ML instance types and ML instance count, to use for transform job.",
      "type": "object",
      "title": "AWSSageMakerModelPackageTransformResourcesDefinition",
      "properties": {
        "InstanceCount": {
          "description": "The number of ML compute instances to use in the transform job. For distributed transform jobs, specify a value greater than 1. The default value is 1.",
          "type": "integer",
          "minimum": 1
        },
        "InstanceType": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The ML compute instance type for the transform job."
        },
        "VolumeKmsKeyId": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 2048,
              "pattern": ".*"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt model data on the storage volume attached to the ML compute instance(s) that run the batch transform job."
        }
      },
      "required": [
        "InstanceCount",
        "InstanceType"
      ],
      "additionalProperties": false
    },
    "ModelPackageArn": {
      "oneOf": [
        {
          "type": "string",
          "pattern": "^arn:aws(-cn|-us-gov)?:sagemaker:[a-z0-9\\-]{9,16}:[0-9]{12}:model-package/[\\S]{1,2048}$",
          "minLength": 1,
          "maxLength": 2048
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The Amazon Resource Name (ARN) of the model package group.",
      "title": "AWSSageMakerModelPackageModelPackageArnDefinition"
    },
    "ApprovalDescription": {
      "oneOf": [
        {
          "type": "string",
          "maxLength": 1024,
          "pattern": ".*"
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "A description provided for the model approval.",
      "title": "AWSSageMakerModelPackageApprovalDescriptionDefinition"
    },
    "CreatedBy": {
      "$ref": "#/$defs/UserContext",
      "title": "AWSSageMakerModelPackageCreatedByDefinition"
    },
    "CreationTime": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The time at which the model package was created.",
      "title": "AWSSageMakerModelPackageCreationTimeDefinition"
    },
    "UserContext": {
      "type": "object",
      "title": "AWSSageMakerModelPackageUserContextDefinition",
      "description": "Information about the user who created or modified an experiment, trial, trial component, lineage group, or project.",
      "properties": {
        "DomainId": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The domain associated with the user."
        },
        "UserProfileArn": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The Amazon Resource Name (ARN) of the user's profile."
        },
        "UserProfileName": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The name of the user's profile."
        }
      },
      "additionalProperties": false
    },
    "LastModifiedBy": {
      "$ref": "#/$defs/UserContext",
      "title": "AWSSageMakerModelPackageLastModifiedByDefinition"
    },
    "LastModifiedTime": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The time at which the model package was last modified.",
      "title": "AWSSageMakerModelPackageLastModifiedTimeDefinition"
    },
    "ModelPackageStatus": {
      "oneOf": [
        {
          "type": "string",
          "enum": [
            "Pending",
            "Deleting",
            "InProgress",
            "Completed",
            "Failed"
          ]
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The current status of the model package.",
      "title": "AWSSageMakerModelPackageModelPackageStatusDefinition"
    },
    "ModelPackageStatusDetails": {
      "description": "Details about the current status of the model package.",
      "type": "object",
      "properties": {
        "ImageScanStatuses": {
          "type": "array",
          "items": {
            "$ref": "#/$defs/ModelPackageStatusItem"
          },
          "insertionOrder": true
        },
        "ValidationStatuses": {
          "type": "array",
          "items": {
            "$ref": "#/$defs/ModelPackageStatusItem"
          },
          "insertionOrder": true
        }
      },
      "required": [
        "ValidationStatuses"
      ],
      "title": "AWSSageMakerModelPackageModelPackageStatusDetailsDefinition",
      "additionalProperties": false
    },
    "ModelPackageStatusItem": {
      "description": "Represents the overall status of a model package.",
      "type": "object",
      "properties": {
        "FailureReason": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "If the overall status is Failed, the reason for the failure."
        },
        "Name": {
          "oneOf": [
            {
              "type": "string",
              "minLength": 1,
              "maxLength": 63,
              "pattern": "^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}$"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The name of the model package for which the overall status is being reported."
        },
        "Status": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "NotStarted",
                "Failed",
                "InProgress",
                "Completed"
              ]
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The current status."
        }
      },
      "required": [
        "Name",
        "Status"
      ],
      "title": "AWSSageMakerModelPackageModelPackageStatusItemDefinition",
      "additionalProperties": false
    },
    "ModelPackageVersion": {
      "type": "integer",
      "description": "The version of the model package.",
      "minimum": 1,
      "title": "AWSSageMakerModelPackageModelPackageVersionDefinition"
    },
    "Task": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The machine learning task your model package accomplishes.",
      "title": "AWSSageMakerModelPackageTaskDefinition"
    }
  },
  "tagging": {
    "taggable": true,
    "tagOnCreate": true,
    "tagUpdatable": true,
    "cloudFormationSystemTags": false,
    "tagProperty": "/properties/Tags"
  },
  "readOnlyProperties": [
    "/properties/ModelPackageArn",
    "/properties/CreationTime",
    "/properties/ModelPackageStatus"
  ]
}
