{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codepipeline/refs/heads/main/json-schema/amazon-codepipeline-artifact-details-schema.json",
"title": "ArtifactDetails",
"description": "Returns information about the details of an artifact.",
"type": "object",
"properties": {
"minimumCount": {
"allOf": [
{
"$ref": "#/components/schemas/MinimumArtifactCount"
},
{
"description": "The minimum number of artifacts allowed for the action type."
}
]
},
"maximumCount": {
"allOf": [
{
"$ref": "#/components/schemas/MaximumArtifactCount"
},
{
"description": "The maximum number of artifacts allowed for the action type."
}
]
}
},
"required": [
"minimumCount",
"maximumCount"
]
}