InvalidateProjectCacheInput schema from Amazon CodeBuild
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-schema/amazon-codebuild-invalidate-project-cache-input-schema.json", "title": "InvalidateProjectCacheInput", "description": "InvalidateProjectCacheInput schema from Amazon CodeBuild", "type": "object", "properties": { "projectName": { "allOf": [ { "$ref": "#/components/schemas/NonEmptyString" }, { "description": "The name of the CodeBuild build project that the cache is reset for." } ] } }, "required": [ "projectName" ] }