openapi: 3.0.1 info: title: App Store Connect AccessibilityDeclarations CiProducts API version: 4.3.1 x-platforms: app_store_connect_api: App Store Connect API description: The App Store Connect API is the standards-based REST API Apple provides to automate tasks across App Store Connect, Xcode, and Certificates, Identifiers & Profiles. It covers apps, builds, TestFlight, in-app purchases, subscriptions, Game Center, Xcode Cloud, provisioning, pricing and availability, and the full reporting surface (analytics, sales and trends, financial reports, power and performance). This spec is the official OpenAPI 3.0 document published by Apple at https://developer.apple.com/app-store-connect/api/ — mirrored here unmodified except for title-cased operation summaries. servers: - url: https://api.appstoreconnect.apple.com/ security: - itc-bearer-token: [] tags: - name: CiProducts paths: /v1/ciProducts: get: tags: - CiProducts operationId: ciProducts_getCollection parameters: - name: filter[productType] in: query description: filter by attribute 'productType' schema: type: array items: type: string enum: - APP - FRAMEWORK style: form explode: false required: false - name: filter[app] in: query description: filter by id(s) of related 'app' schema: type: array items: type: string style: form explode: false required: false - name: fields[ciProducts] in: query description: the fields to include for returned resources of type ciProducts schema: type: array items: type: string enum: - name - createdDate - productType - app - bundleId - workflows - primaryRepositories - additionalRepositories - buildRuns style: form explode: false required: false - name: fields[apps] in: query description: the fields to include for returned resources of type apps schema: type: array items: type: string enum: - accessibilityUrl - name - bundleId - sku - primaryLocale - isOrEverWasMadeForKids - subscriptionStatusUrl - subscriptionStatusUrlVersion - subscriptionStatusUrlForSandbox - subscriptionStatusUrlVersionForSandbox - contentRightsDeclaration - streamlinedPurchasingEnabled - accessibilityDeclarations - appEncryptionDeclarations - appStoreIcon - ciProduct - betaTesters - betaGroups - appStoreVersions - appTags - preReleaseVersions - betaAppLocalizations - builds - betaLicenseAgreement - betaAppReviewDetail - appInfos - appClips - appPricePoints - endUserLicenseAgreement - appPriceSchedule - appAvailabilityV2 - inAppPurchases - subscriptionGroups - gameCenterEnabledVersions - perfPowerMetrics - appCustomProductPages - inAppPurchasesV2 - promotedPurchases - appEvents - reviewSubmissions - subscriptionGracePeriod - customerReviews - customerReviewSummarizations - gameCenterDetail - appStoreVersionExperimentsV2 - alternativeDistributionKey - analyticsReportRequests - marketplaceSearchDetail - buildUploads - backgroundAssets - betaFeedbackScreenshotSubmissions - betaFeedbackCrashSubmissions - searchKeywords - webhooks - androidToIosAppMappingDetails style: form explode: false required: false - name: fields[bundleIds] in: query description: the fields to include for returned resources of type bundleIds schema: type: array items: type: string enum: - name - platform - identifier - seedId - profiles - bundleIdCapabilities - app style: form explode: false required: false - name: fields[scmRepositories] in: query description: the fields to include for returned resources of type scmRepositories schema: type: array items: type: string enum: - lastAccessedDate - httpCloneUrl - sshCloneUrl - ownerName - repositoryName - scmProvider - defaultBranch - gitReferences - pullRequests style: form explode: false required: false - name: limit in: query description: maximum resources per page schema: type: integer maximum: 200 style: form - name: include in: query description: comma-separated list of relationships to include schema: type: array items: type: string enum: - app - bundleId - primaryRepositories style: form explode: false required: false - name: limit[primaryRepositories] in: query description: maximum number of related primaryRepositories returned (when they are included) schema: type: integer maximum: 50 style: form required: false responses: '400': description: Parameter error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '401': description: Unauthorized error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '403': description: Forbidden error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '200': description: List of CiProducts content: application/json: schema: $ref: '#/components/schemas/CiProductsResponse' '429': description: Rate limit exceeded error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' summary: List Ci Products /v1/ciProducts/{id}: parameters: - name: id in: path description: the id of the requested resource schema: type: string style: simple required: true get: tags: - CiProducts operationId: ciProducts_getInstance parameters: - name: fields[ciProducts] in: query description: the fields to include for returned resources of type ciProducts schema: type: array items: type: string enum: - name - createdDate - productType - app - bundleId - workflows - primaryRepositories - additionalRepositories - buildRuns style: form explode: false required: false - name: fields[apps] in: query description: the fields to include for returned resources of type apps schema: type: array items: type: string enum: - accessibilityUrl - name - bundleId - sku - primaryLocale - isOrEverWasMadeForKids - subscriptionStatusUrl - subscriptionStatusUrlVersion - subscriptionStatusUrlForSandbox - subscriptionStatusUrlVersionForSandbox - contentRightsDeclaration - streamlinedPurchasingEnabled - accessibilityDeclarations - appEncryptionDeclarations - appStoreIcon - ciProduct - betaTesters - betaGroups - appStoreVersions - appTags - preReleaseVersions - betaAppLocalizations - builds - betaLicenseAgreement - betaAppReviewDetail - appInfos - appClips - appPricePoints - endUserLicenseAgreement - appPriceSchedule - appAvailabilityV2 - inAppPurchases - subscriptionGroups - gameCenterEnabledVersions - perfPowerMetrics - appCustomProductPages - inAppPurchasesV2 - promotedPurchases - appEvents - reviewSubmissions - subscriptionGracePeriod - customerReviews - customerReviewSummarizations - gameCenterDetail - appStoreVersionExperimentsV2 - alternativeDistributionKey - analyticsReportRequests - marketplaceSearchDetail - buildUploads - backgroundAssets - betaFeedbackScreenshotSubmissions - betaFeedbackCrashSubmissions - searchKeywords - webhooks - androidToIosAppMappingDetails style: form explode: false required: false - name: fields[bundleIds] in: query description: the fields to include for returned resources of type bundleIds schema: type: array items: type: string enum: - name - platform - identifier - seedId - profiles - bundleIdCapabilities - app style: form explode: false required: false - name: fields[scmRepositories] in: query description: the fields to include for returned resources of type scmRepositories schema: type: array items: type: string enum: - lastAccessedDate - httpCloneUrl - sshCloneUrl - ownerName - repositoryName - scmProvider - defaultBranch - gitReferences - pullRequests style: form explode: false required: false - name: include in: query description: comma-separated list of relationships to include schema: type: array items: type: string enum: - app - bundleId - primaryRepositories style: form explode: false required: false - name: limit[primaryRepositories] in: query description: maximum number of related primaryRepositories returned (when they are included) schema: type: integer maximum: 50 style: form required: false responses: '400': description: Parameter error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '401': description: Unauthorized error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '403': description: Forbidden error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '404': description: Not found error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '200': description: Single CiProduct content: application/json: schema: $ref: '#/components/schemas/CiProductResponse' '429': description: Rate limit exceeded error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' summary: Get Ci Products delete: tags: - CiProducts operationId: ciProducts_deleteInstance responses: '400': description: Parameter error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '401': description: Unauthorized error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '403': description: Forbidden error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '404': description: Not found error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '204': description: Success (no content) '429': description: Rate limit exceeded error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' summary: Delete Ci Products /v1/ciProducts/{id}/relationships/additionalRepositories: parameters: - name: id in: path description: the id of the requested resource schema: type: string style: simple required: true get: tags: - CiProducts operationId: ciProducts_additionalRepositories_getToManyRelationship parameters: - name: limit in: query description: maximum resources per page schema: type: integer maximum: 200 style: form responses: '400': description: Parameter error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '401': description: Unauthorized error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '403': description: Forbidden error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '404': description: Not found error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '200': description: List of related linkages content: application/json: schema: $ref: '#/components/schemas/CiProductAdditionalRepositoriesLinkagesResponse' '429': description: Rate limit exceeded error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' summary: List Related Ci Products / Additional Repositories /v1/ciProducts/{id}/additionalRepositories: parameters: - name: id in: path description: the id of the requested resource schema: type: string style: simple required: true get: tags: - CiProducts operationId: ciProducts_additionalRepositories_getToManyRelated parameters: - name: filter[id] in: query description: filter by id(s) schema: type: array items: type: string style: form explode: false - name: fields[scmRepositories] in: query description: the fields to include for returned resources of type scmRepositories schema: type: array items: type: string enum: - lastAccessedDate - httpCloneUrl - sshCloneUrl - ownerName - repositoryName - scmProvider - defaultBranch - gitReferences - pullRequests style: form explode: false - name: fields[scmProviders] in: query description: the fields to include for returned resources of type scmProviders schema: type: array items: type: string enum: - scmProviderType - url - repositories style: form explode: false - name: fields[scmGitReferences] in: query description: the fields to include for returned resources of type scmGitReferences schema: type: array items: type: string enum: - name - canonicalName - isDeleted - kind - repository style: form explode: false - name: limit in: query description: maximum resources per page schema: type: integer maximum: 200 style: form - name: include in: query description: comma-separated list of relationships to include schema: type: array items: type: string enum: - scmProvider - defaultBranch style: form explode: false responses: '400': description: Parameter error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '401': description: Unauthorized error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '403': description: Forbidden error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '404': description: Not found error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '200': description: List of ScmRepositories content: application/json: schema: $ref: '#/components/schemas/ScmRepositoriesResponse' '429': description: Rate limit exceeded error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' summary: List Related Ci Products / Additional Repositories /v1/ciProducts/{id}/relationships/app: parameters: - name: id in: path description: the id of the requested resource schema: type: string style: simple required: true get: tags: - CiProducts operationId: ciProducts_app_getToOneRelationship parameters: [] responses: '400': description: Parameter error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '401': description: Unauthorized error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '403': description: Forbidden error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '404': description: Not found error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '200': description: Related linkage content: application/json: schema: $ref: '#/components/schemas/CiProductAppLinkageResponse' '429': description: Rate limit exceeded error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' summary: Get Related Ci Products / App /v1/ciProducts/{id}/app: parameters: - name: id in: path description: the id of the requested resource schema: type: string style: simple required: true get: tags: - CiProducts operationId: ciProducts_app_getToOneRelated parameters: - name: fields[apps] in: query description: the fields to include for returned resources of type apps schema: type: array items: type: string enum: - accessibilityUrl - name - bundleId - sku - primaryLocale - isOrEverWasMadeForKids - subscriptionStatusUrl - subscriptionStatusUrlVersion - subscriptionStatusUrlForSandbox - subscriptionStatusUrlVersionForSandbox - contentRightsDeclaration - streamlinedPurchasingEnabled - accessibilityDeclarations - appEncryptionDeclarations - appStoreIcon - ciProduct - betaTesters - betaGroups - appStoreVersions - appTags - preReleaseVersions - betaAppLocalizations - builds - betaLicenseAgreement - betaAppReviewDetail - appInfos - appClips - appPricePoints - endUserLicenseAgreement - appPriceSchedule - appAvailabilityV2 - inAppPurchases - subscriptionGroups - gameCenterEnabledVersions - perfPowerMetrics - appCustomProductPages - inAppPurchasesV2 - promotedPurchases - appEvents - reviewSubmissions - subscriptionGracePeriod - customerReviews - customerReviewSummarizations - gameCenterDetail - appStoreVersionExperimentsV2 - alternativeDistributionKey - analyticsReportRequests - marketplaceSearchDetail - buildUploads - backgroundAssets - betaFeedbackScreenshotSubmissions - betaFeedbackCrashSubmissions - searchKeywords - webhooks - androidToIosAppMappingDetails style: form explode: false - name: fields[appEncryptionDeclarations] in: query description: the fields to include for returned resources of type appEncryptionDeclarations schema: type: array items: type: string enum: - appDescription - createdDate - usesEncryption - exempt - containsProprietaryCryptography - containsThirdPartyCryptography - availableOnFrenchStore - platform - uploadedDate - documentUrl - documentName - documentType - appEncryptionDeclarationState - codeValue - app - builds - appEncryptionDeclarationDocument style: form explode: false - name: fields[buildIcons] in: query description: the fields to include for returned resources of type buildIcons schema: type: array items: type: string enum: - iconAsset - iconType - masked - name style: form explode: false - name: fields[ciProducts] in: query description: the fields to include for returned resources of type ciProducts schema: type: array items: type: string enum: - name - createdDate - productType - app - bundleId - workflows - primaryRepositories - additionalRepositories - buildRuns style: form explode: false - name: fields[betaGroups] in: query description: the fields to include for returned resources of type betaGroups schema: type: array items: type: string enum: - name - createdDate - isInternalGroup - hasAccessToAllBuilds - publicLinkEnabled - publicLinkId - publicLinkLimitEnabled - publicLinkLimit - publicLink - feedbackEnabled - iosBuildsAvailableForAppleSiliconMac - iosBuildsAvailableForAppleVision - app - builds - betaTesters - betaRecruitmentCriteria - betaRecruitmentCriterionCompatibleBuildCheck style: form explode: false - name: fields[appStoreVersions] in: query description: the fields to include for returned resources of type appStoreVersions schema: type: array items: type: string enum: - platform - versionString - appStoreState - appVersionState - copyright - reviewType - releaseType - earliestReleaseDate - usesIdfa - downloadable - createdDate - app - appStoreVersionLocalizations - build - appStoreVersionPhasedRelease - gameCenterAppVersion - routingAppCoverage - appStoreReviewDetail - appStoreVersionSubmission - appClipDefaultExperience - appStoreVersionExperiments - appStoreVersionExperimentsV2 - customerReviews - alternativeDistributionPackage style: form explode: false - name: fields[preReleaseVersions] in: query description: the fields to include for returned resources of type preReleaseVersions schema: type: array items: type: string enum: - version - platform - builds - app style: form explode: false - name: fields[betaAppLocalizations] in: query description: the fields to include for returned resources of type betaAppLocalizations schema: type: array items: type: string enum: - feedbackEmail - marketingUrl - privacyPolicyUrl - tvOsPrivacyPolicy - description - locale - app style: form explode: false - name: fields[builds] in: query description: the fields to include for returned resources of type builds schema: type: array items: type: string enum: - version - uploadedDate - expirationDate - expired - minOsVersion - lsMinimumSystemVersion - computedMinMacOsVersion - computedMinVisionOsVersion - iconAssetToken - processingState - buildAudienceType - usesNonExemptEncryption - preReleaseVersion - individualTesters - betaGroups - betaBuildLocalizations - appEncryptionDeclaration - betaAppReviewSubmission - app - buildBetaDetail - appStoreVersion - icons - buildBundles - buildUpload - perfPowerMetrics - diagnosticSignatures style: form explode: false - name: fields[betaLicenseAgreements] in: query description: the fields to include for returned resources of type betaLicenseAgreements schema: type: array items: type: string enum: - agreementText - app style: form explode: false - name: fields[betaAppReviewDetails] in: query description: the fields to include for returned resources of type betaAppReviewDetails schema: type: array items: type: string enum: - contactFirstName - contactLastName - contactPhone - contactEmail - demoAccountName - demoAccountPassword - demoAccountRequired - notes - app style: form explode: false - name: fields[appInfos] in: query description: the fields to include for returned resources of type appInfos schema: type: array items: type: string enum: - appStoreState - state - appStoreAgeRating - australiaAgeRating - brazilAgeRating - brazilAgeRatingV2 - franceAgeRating - koreaAgeRating - kidsAgeBand - app - ageRatingDeclaration - appInfoLocalizations - primaryCategory - primarySubcategoryOne - primarySubcategoryTwo - secondaryCategory - secondarySubcategoryOne - secondarySubcategoryTwo - territoryAgeRatings style: form explode: false - name: fields[appClips] in: query description: the fields to include for returned resources of type appClips schema: type: array items: type: string enum: - bundleId - app - appClipDefaultExperiences - appClipAdvancedExperiences style: form explode: false - name: fields[endUserLicenseAgreements] in: query description: the fields to include for returned resources of type endUserLicenseAgreements schema: type: array items: type: string enum: - agreementText - app - territories style: form explode: false - name: fields[inAppPurchases] in: query description: the fields to include for returned resources of type inAppPurchases schema: type: array items: type: string enum: - referenceName - productId - inAppPurchaseType - state - apps - name - reviewNote - familySharable - contentHosting - inAppPurchaseLocalizations - pricePoints - content - appStoreReviewScreenshot - promotedPurchase - iapPriceSchedule - inAppPurchaseAvailability - images - offerCodes style: form explode: false - name: fields[subscriptionGroups] in: query description: the fields to include for returned resources of type subscriptionGroups schema: type: array items: type: string enum: - referenceName - subscriptions - subscriptionGroupLocalizations style: form explode: false - name: fields[gameCenterEnabledVersions] in: query description: the fields to include for returned resources of type gameCenterEnabledVersions schema: type: array items: type: string enum: - platform - versionString - iconAsset - compatibleVersions - app style: form explode: false - name: fields[appCustomProductPages] in: query description: the fields to include for returned resources of type appCustomProductPages schema: type: array items: type: string enum: - name - url - visible - app - appCustomProductPageVersions style: form explode: false - name: fields[promotedPurchases] in: query description: the fields to include for returned resources of type promotedPurchases schema: type: array items: type: string enum: - visibleForAllUsers - enabled - state - inAppPurchaseV2 - subscription style: form explode: false - name: fields[appEvents] in: query description: the fields to include for returned resources of type appEvents schema: type: array items: type: string enum: - referenceName - badge - eventState - deepLink - purchaseRequirement - primaryLocale - priority - purpose - territorySchedules - archivedTerritorySchedules - localizations style: form explode: false - name: fields[reviewSubmissions] in: query description: the fields to include for returned resources of type reviewSubmissions schema: type: array items: type: string enum: - platform - submittedDate - state - app - items - appStoreVersionForReview - submittedByActor - lastUpdatedByActor style: form explode: false - name: fields[subscriptionGracePeriods] in: query description: the fields to include for returned resources of type subscriptionGracePeriods schema: type: array items: type: string enum: - optIn - sandboxOptIn - duration - renewalType style: form explode: false - name: fields[gameCenterDetails] in: query description: the fields to include for returned resources of type gameCenterDetails schema: type: array items: type: string enum: - arcadeEnabled - challengeEnabled - app - gameCenterAppVersions - gameCenterGroup - gameCenterLeaderboards - gameCenterLeaderboardsV2 - gameCenterLeaderboardSets - gameCenterLeaderboardSetsV2 - gameCenterAchievements - gameCenterAchievementsV2 - gameCenterActivities - gameCenterChallenges - defaultLeaderboard - defaultLeaderboardV2 - defaultGroupLeaderboard - defaultGroupLeaderboardV2 - achievementReleases - activityReleases - challengeReleases - leaderboardReleases - leaderboardSetReleases - challengesMinimumPlatformVersions style: form explode: false - name: fields[appStoreVersionExperiments] in: query description: the fields to include for returned resources of type appStoreVersionExperiments schema: type: array items: type: string enum: - name - platform - trafficProportion - state - reviewRequired - startDate - endDate - app - latestControlVersion - controlVersions - appStoreVersionExperimentTreatments style: form explode: false - name: fields[androidToIosAppMappingDetails] in: query description: the fields to include for returned resources of type androidToIosAppMappingDetails schema: type: array items: type: string enum: - packageName - appSigningKeyPublicCertificateSha256Fingerprints style: form explode: false - name: include in: query description: comma-separated list of relationships to include schema: type: array items: type: string enum: - appEncryptionDeclarations - appStoreIcon - ciProduct - betaGroups - appStoreVersions - preReleaseVersions - betaAppLocalizations - builds - betaLicenseAgreement - betaAppReviewDetail - appInfos - appClips - endUserLicenseAgreement - inAppPurchases - subscriptionGroups - gameCenterEnabledVersions - appCustomProductPages - inAppPurchasesV2 - promotedPurchases - appEvents - reviewSubmissions - subscriptionGracePeriod - gameCenterDetail - appStoreVersionExperimentsV2 - androidToIosAppMappingDetails style: form explode: false - name: limit[appEncryptionDeclarations] in: query description: maximum number of related appEncryptionDeclarations returned (when they are included) schema: type: integer maximum: 50 style: form - name: limit[betaGroups] in: query description: maximum number of related betaGroups returned (when they are included) schema: type: integer maximum: 50 style: form - name: limit[appStoreVersions] in: query description: maximum number of related appStoreVersions returned (when they are included) schema: type: integer maximum: 50 style: form - name: limit[preReleaseVersions] in: query description: maximum number of related preReleaseVersions returned (when they are included) schema: type: integer maximum: 50 style: form - name: limit[betaAppLocalizations] in: query description: maximum number of related betaAppLocalizations returned (when they are included) schema: type: integer maximum: 50 style: form - name: limit[builds] in: query description: maximum number of related builds returned (when they are included) schema: type: integer maximum: 50 style: form - name: limit[appInfos] in: query description: maximum number of related appInfos returned (when they are included) schema: type: integer maximum: 50 style: form - name: limit[appClips] in: query description: maximum number of related appClips returned (when they are included) schema: type: integer maximum: 50 style: form - name: limit[inAppPurchases] in: query description: maximum number of related inAppPurchases returned (when they are included) schema: type: integer maximum: 50 style: form deprecated: true - name: limit[subscriptionGroups] in: query description: maximum number of related subscriptionGroups returned (when they are included) schema: type: integer maximum: 50 style: form - name: limit[gameCenterEnabledVersions] in: query description: maximum number of related gameCenterEnabledVersions returned (when they are included) schema: type: integer maximum: 50 style: form deprecated: true - name: limit[appCustomProductPages] in: query description: maximum number of related appCustomProductPages returned (when they are included) schema: type: integer maximum: 50 style: form - name: limit[inAppPurchasesV2] in: query description: maximum number of related inAppPurchasesV2 returned (when they are included) schema: type: integer maximum: 50 style: form - name: limit[promotedPurchases] in: query description: maximum number of related promotedPurchases returned (when they are included) schema: type: integer maximum: 50 style: form - name: limit[appEvents] in: query description: maximum number of related appEvents returned (when they are included) schema: type: integer maximum: 50 style: form - name: limit[reviewSubmissions] in: query description: maximum number of related reviewSubmissions returned (when they are included) schema: type: integer maximum: 50 style: form - name: limit[appStoreVersionExperimentsV2] in: query description: maximum number of related appStoreVersionExperimentsV2 returned (when they are included) schema: type: integer maximum: 50 style: form - name: limit[androidToIosAppMappingDetails] in: query description: maximum number of related androidToIosAppMappingDetails returned (when they are included) schema: type: integer maximum: 50 style: form responses: '400': description: Parameter error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '401': description: Unauthorized error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '403': description: Forbidden error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '404': description: Not found error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '200': description: Single App content: application/json: schema: $ref: '#/components/schemas/AppResponse' '429': description: Rate limit exceeded error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' summary: Get Related Ci Products / App /v1/ciProducts/{id}/relationships/buildRuns: parameters: - name: id in: path description: the id of the requested resource schema: type: string style: simple required: true get: tags: - CiProducts operationId: ciProducts_buildRuns_getToManyRelationship parameters: - name: limit in: query description: maximum resources per page schema: type: integer maximum: 200 style: form responses: '400': description: Parameter error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '401': description: Unauthorized error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '403': description: Forbidden error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '404': description: Not found error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '200': description: List of related linkages content: application/json: schema: $ref: '#/components/schemas/CiProductBuildRunsLinkagesResponse' '429': description: Rate limit exceeded error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' summary: List Related Ci Products / Build Runs /v1/ciProducts/{id}/buildRuns: parameters: - name: id in: path description: the id of the requested resource schema: type: string style: simple required: true get: tags: - CiProducts operationId: ciProducts_buildRuns_getToManyRelated parameters: - name: filter[builds] in: query description: filter by id(s) of related 'builds' schema: type: array items: type: string style: form explode: false - name: sort in: query description: comma-separated list of sort expressions; resources will be sorted as specified schema: type: array items: type: string enum: - number - -number style: form explode: false - name: fields[ciBuildRuns] in: query description: the fields to include for returned resources of type ciBuildRuns schema: type: array items: type: string enum: - number - createdDate - startedDate - finishedDate - sourceCommit - destinationCommit - isPullRequestBuild - issueCounts - executionProgress - completionStatus - startReason - cancelReason - builds - workflow - product - sourceBranchOrTag - destinationBranch - actions - pullRequest style: form explode: false - name: fields[builds] in: query description: the fields to include for returned resources of type builds schema: type: array items: type: string enum: - version - uploadedDate - expirationDate - expired - minOsVersion - lsMinimumSystemVersion - computedMinMacOsVersion - computedMinVisionOsVersion - iconAssetToken - processingState - buildAudienceType - usesNonExemptEncryption - preReleaseVersion - individualTesters - betaGroups - betaBuildLocalizations - appEncryptionDeclaration - betaAppReviewSubmission - app - buildBetaDetail - appStoreVersion - icons - buildBundles - buildUpload - perfPowerMetrics - diagnosticSignatures style: form explode: false - name: fields[ciWorkflows] in: query description: the fields to include for returned resources of type ciWorkflows schema: type: array items: type: string enum: - name - description - branchStartCondition - tagStartCondition - pullRequestStartCondition - scheduledStartCondition - manualBranchStartCondition - manualTagStartCondition - manualPullRequestStartCondition - actions - isEnabled - isLockedForEditing - clean - containerFilePath - lastModifiedDate - product - repository - xcodeVersion - macOsVersion - buildRuns style: form explode: false - name: fields[ciProducts] in: query description: the fields to include for returned resources of type ciProducts schema: type: array items: type: string enum: - name - createdDate - productType - app - bundleId - workflows - primaryRepositories - additionalRepositories - buildRuns style: form explode: false - name: fields[scmGitReferences] in: query description: the fields to include for returned resources of type scmGitReferences schema: type: array items: type: string enum: - name - canonicalName - isDeleted - kind - repository style: form explode: false - name: fields[scmPullRequests] in: query description: the fields to include for returned resources of type scmPullRequests schema: type: array items: type: string enum: - title - number - webUrl - sourceRepositoryOwner - sourceRepositoryName - sourceBranchName - destinationRepositoryOwner - destinationRepositoryName - destinationBranchName - isClosed - isCrossRepository - repository style: form explode: false - name: limit in: query description: maximum resources per page schema: type: integer maximum: 200 style: form - name: include in: query description: comma-separated list of relationships to include schema: type: array items: type: string enum: - builds - workflow - product - sourceBranchOrTag - destinationBranch - pullRequest style: form explode: false - name: limit[builds] in: query description: maximum number of related builds returned (when they are included) schema: type: integer maximum: 50 style: form responses: '400': description: Parameter error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '401': description: Unauthorized error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '403': description: Forbidden error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '404': description: Not found error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '200': description: List of CiBuildRuns content: application/json: schema: $ref: '#/components/schemas/CiBuildRunsResponse' '429': description: Rate limit exceeded error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' summary: List Related Ci Products / Build Runs /v1/ciProducts/{id}/relationships/primaryRepositories: parameters: - name: id in: path description: the id of the requested resource schema: type: string style: simple required: true get: tags: - CiProducts operationId: ciProducts_primaryRepositories_getToManyRelationship parameters: - name: limit in: query description: maximum resources per page schema: type: integer maximum: 200 style: form responses: '400': description: Parameter error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '401': description: Unauthorized error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '403': description: Forbidden error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '404': description: Not found error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '200': description: List of related linkages content: application/json: schema: $ref: '#/components/schemas/CiProductPrimaryRepositoriesLinkagesResponse' '429': description: Rate limit exceeded error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' summary: List Related Ci Products / Primary Repositories /v1/ciProducts/{id}/primaryRepositories: parameters: - name: id in: path description: the id of the requested resource schema: type: string style: simple required: true get: tags: - CiProducts operationId: ciProducts_primaryRepositories_getToManyRelated parameters: - name: filter[id] in: query description: filter by id(s) schema: type: array items: type: string style: form explode: false - name: fields[scmRepositories] in: query description: the fields to include for returned resources of type scmRepositories schema: type: array items: type: string enum: - lastAccessedDate - httpCloneUrl - sshCloneUrl - ownerName - repositoryName - scmProvider - defaultBranch - gitReferences - pullRequests style: form explode: false - name: fields[scmProviders] in: query description: the fields to include for returned resources of type scmProviders schema: type: array items: type: string enum: - scmProviderType - url - repositories style: form explode: false - name: fields[scmGitReferences] in: query description: the fields to include for returned resources of type scmGitReferences schema: type: array items: type: string enum: - name - canonicalName - isDeleted - kind - repository style: form explode: false - name: limit in: query description: maximum resources per page schema: type: integer maximum: 200 style: form - name: include in: query description: comma-separated list of relationships to include schema: type: array items: type: string enum: - scmProvider - defaultBranch style: form explode: false responses: '400': description: Parameter error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '401': description: Unauthorized error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '403': description: Forbidden error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '404': description: Not found error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '200': description: List of ScmRepositories content: application/json: schema: $ref: '#/components/schemas/ScmRepositoriesResponse' '429': description: Rate limit exceeded error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' summary: List Related Ci Products / Primary Repositories /v1/ciProducts/{id}/relationships/workflows: parameters: - name: id in: path description: the id of the requested resource schema: type: string style: simple required: true get: tags: - CiProducts operationId: ciProducts_workflows_getToManyRelationship parameters: - name: limit in: query description: maximum resources per page schema: type: integer maximum: 200 style: form responses: '400': description: Parameter error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '401': description: Unauthorized error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '403': description: Forbidden error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '404': description: Not found error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '200': description: List of related linkages content: application/json: schema: $ref: '#/components/schemas/CiProductWorkflowsLinkagesResponse' '429': description: Rate limit exceeded error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' summary: List Related Ci Products / Workflows /v1/ciProducts/{id}/workflows: parameters: - name: id in: path description: the id of the requested resource schema: type: string style: simple required: true get: tags: - CiProducts operationId: ciProducts_workflows_getToManyRelated parameters: - name: fields[ciWorkflows] in: query description: the fields to include for returned resources of type ciWorkflows schema: type: array items: type: string enum: - name - description - branchStartCondition - tagStartCondition - pullRequestStartCondition - scheduledStartCondition - manualBranchStartCondition - manualTagStartCondition - manualPullRequestStartCondition - actions - isEnabled - isLockedForEditing - clean - containerFilePath - lastModifiedDate - product - repository - xcodeVersion - macOsVersion - buildRuns style: form explode: false - name: fields[ciProducts] in: query description: the fields to include for returned resources of type ciProducts schema: type: array items: type: string enum: - name - createdDate - productType - app - bundleId - workflows - primaryRepositories - additionalRepositories - buildRuns style: form explode: false - name: fields[scmRepositories] in: query description: the fields to include for returned resources of type scmRepositories schema: type: array items: type: string enum: - lastAccessedDate - httpCloneUrl - sshCloneUrl - ownerName - repositoryName - scmProvider - defaultBranch - gitReferences - pullRequests style: form explode: false - name: fields[ciXcodeVersions] in: query description: the fields to include for returned resources of type ciXcodeVersions schema: type: array items: type: string enum: - version - name - testDestinations - macOsVersions style: form explode: false - name: fields[ciMacOsVersions] in: query description: the fields to include for returned resources of type ciMacOsVersions schema: type: array items: type: string enum: - version - name - xcodeVersions style: form explode: false - name: limit in: query description: maximum resources per page schema: type: integer maximum: 200 style: form - name: include in: query description: comma-separated list of relationships to include schema: type: array items: type: string enum: - product - repository - xcodeVersion - macOsVersion style: form explode: false responses: '400': description: Parameter error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '401': description: Unauthorized error(s) content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '403': description: Forbidden error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '404': description: Not found error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '200': description: List of CiWorkflows content: application/json: schema: $ref: '#/components/schemas/CiWorkflowsResponse' '429': description: Rate limit exceeded error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' summary: List Related Ci Products / Workflows components: schemas: BrazilAgeRating: type: string enum: - L - TEN - TWELVE - FOURTEEN - SIXTEEN - EIGHTEEN AppClip: type: object title: AppClip properties: type: type: string enum: - appClips id: type: string attributes: type: object properties: bundleId: type: string relationships: type: object properties: app: type: object properties: data: type: object properties: type: type: string enum: - apps id: type: string required: - id - type appClipDefaultExperiences: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - appClipDefaultExperiences id: type: string required: - id - type appClipAdvancedExperiences: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' links: $ref: '#/components/schemas/ResourceLinks' required: - id - type ErrorSourceParameter: type: object title: Parameter properties: parameter: type: string required: - parameter CiProductsResponse: type: object title: CiProductsResponse properties: data: type: array items: $ref: '#/components/schemas/CiProduct' included: type: array items: oneOf: - $ref: '#/components/schemas/App' - $ref: '#/components/schemas/BundleId' - $ref: '#/components/schemas/ScmRepository' discriminator: propertyName: type mapping: scmRepositories: '#/components/schemas/ScmRepository' bundleIds: '#/components/schemas/BundleId' apps: '#/components/schemas/App' links: $ref: '#/components/schemas/PagedDocumentLinks' meta: $ref: '#/components/schemas/PagingInformation' required: - data - links CiXcodeVersion: type: object title: CiXcodeVersion properties: type: type: string enum: - ciXcodeVersions id: type: string attributes: type: object properties: version: type: string name: type: string testDestinations: type: array items: type: object properties: deviceTypeName: type: string deviceTypeIdentifier: type: string availableRuntimes: type: array items: type: object properties: runtimeName: type: string runtimeIdentifier: type: string kind: $ref: '#/components/schemas/CiTestDestinationKind' relationships: type: object properties: macOsVersions: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - ciMacOsVersions id: type: string required: - id - type links: $ref: '#/components/schemas/ResourceLinks' required: - id - type AppVersionState: type: string enum: - ACCEPTED - DEVELOPER_REJECTED - IN_REVIEW - INVALID_BINARY - METADATA_REJECTED - PENDING_APPLE_RELEASE - PENDING_DEVELOPER_RELEASE - PREPARE_FOR_SUBMISSION - PROCESSING_FOR_DISTRIBUTION - READY_FOR_DISTRIBUTION - READY_FOR_REVIEW - REJECTED - REPLACED_WITH_NEW_VERSION - WAITING_FOR_EXPORT_COMPLIANCE - WAITING_FOR_REVIEW CiWorkflowsResponse: type: object title: CiWorkflowsResponse properties: data: type: array items: $ref: '#/components/schemas/CiWorkflow' included: type: array items: oneOf: - $ref: '#/components/schemas/CiMacOsVersion' - $ref: '#/components/schemas/CiProduct' - $ref: '#/components/schemas/CiXcodeVersion' - $ref: '#/components/schemas/ScmRepository' discriminator: propertyName: type mapping: scmRepositories: '#/components/schemas/ScmRepository' ciMacOsVersions: '#/components/schemas/CiMacOsVersion' ciProducts: '#/components/schemas/CiProduct' ciXcodeVersions: '#/components/schemas/CiXcodeVersion' links: $ref: '#/components/schemas/PagedDocumentLinks' meta: $ref: '#/components/schemas/PagingInformation' required: - data - links DocumentLinks: type: object properties: self: type: string format: uri-reference required: - self BuildIcon: type: object title: BuildIcon properties: type: type: string enum: - buildIcons id: type: string attributes: type: object properties: iconAsset: $ref: '#/components/schemas/ImageAsset' iconType: $ref: '#/components/schemas/IconAssetType' masked: type: boolean name: type: string links: $ref: '#/components/schemas/ResourceLinks' required: - id - type CiManualPullRequestStartCondition: type: object properties: source: $ref: '#/components/schemas/CiBranchPatterns' destination: $ref: '#/components/schemas/CiBranchPatterns' PromotedPurchase: type: object title: PromotedPurchase properties: type: type: string enum: - promotedPurchases id: type: string attributes: type: object properties: visibleForAllUsers: type: boolean enabled: type: boolean state: type: string enum: - APPROVED - IN_REVIEW - PREPARE_FOR_SUBMISSION - REJECTED relationships: type: object properties: inAppPurchaseV2: type: object properties: data: type: object properties: type: type: string enum: - inAppPurchases id: type: string required: - id - type subscription: type: object properties: data: type: object properties: type: type: string enum: - subscriptions id: type: string required: - id - type links: $ref: '#/components/schemas/ResourceLinks' required: - id - type BundleId: type: object title: BundleId properties: type: type: string enum: - bundleIds id: type: string attributes: type: object properties: name: type: string platform: $ref: '#/components/schemas/BundleIdPlatform' identifier: type: string seedId: type: string relationships: type: object properties: profiles: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - profiles id: type: string required: - id - type bundleIdCapabilities: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - bundleIdCapabilities id: type: string required: - id - type app: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - apps id: type: string required: - id - type links: $ref: '#/components/schemas/ResourceLinks' required: - id - type AppCustomProductPage: type: object title: AppCustomProductPage properties: type: type: string enum: - appCustomProductPages id: type: string attributes: type: object properties: name: type: string url: type: string format: uri visible: type: boolean relationships: type: object properties: app: type: object properties: data: type: object properties: type: type: string enum: - apps id: type: string required: - id - type appCustomProductPageVersions: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - appCustomProductPageVersions id: type: string required: - id - type links: $ref: '#/components/schemas/ResourceLinks' required: - id - type BundleIdPlatform: type: string enum: - IOS - MAC_OS - UNIVERSAL CiPullRequestStartCondition: type: object properties: source: $ref: '#/components/schemas/CiBranchPatterns' destination: $ref: '#/components/schemas/CiBranchPatterns' filesAndFoldersRule: $ref: '#/components/schemas/CiFilesAndFoldersRule' autoCancel: type: boolean CiTagPatterns: type: object properties: isAllMatch: type: boolean patterns: type: array items: type: object properties: pattern: type: string isPrefix: type: boolean ScmRepositoriesResponse: type: object title: ScmRepositoriesResponse properties: data: type: array items: $ref: '#/components/schemas/ScmRepository' included: type: array items: oneOf: - $ref: '#/components/schemas/ScmGitReference' - $ref: '#/components/schemas/ScmProvider' discriminator: propertyName: type mapping: scmProviders: '#/components/schemas/ScmProvider' scmGitReferences: '#/components/schemas/ScmGitReference' links: $ref: '#/components/schemas/PagedDocumentLinks' meta: $ref: '#/components/schemas/PagingInformation' required: - data - links AppStoreAgeRating: type: string enum: - L - ALL - ONE_PLUS - TWO_PLUS - THREE_PLUS - FOUR_PLUS - FIVE_PLUS - SIX_PLUS - SEVEN_PLUS - EIGHT_PLUS - NINE_PLUS - TEN_PLUS - ELEVEN_PLUS - TWELVE_PLUS - THIRTEEN_PLUS - FOURTEEN_PLUS - FIFTEEN_PLUS - SIXTEEN_PLUS - SEVENTEEN_PLUS - EIGHTEEN_PLUS - NINETEEN_PLUS - TWENTY_PLUS - TWENTY_ONE_PLUS - UNRATED CiProductAdditionalRepositoriesLinkagesResponse: type: object properties: data: type: array items: type: object properties: type: type: string enum: - scmRepositories id: type: string required: - id - type links: $ref: '#/components/schemas/PagedDocumentLinks' meta: $ref: '#/components/schemas/PagingInformation' required: - data - links CiBranchStartCondition: type: object properties: source: $ref: '#/components/schemas/CiBranchPatterns' filesAndFoldersRule: $ref: '#/components/schemas/CiFilesAndFoldersRule' autoCancel: type: boolean ImageAsset: type: object properties: templateUrl: type: string width: type: integer height: type: integer PagedDocumentLinks: type: object properties: self: type: string format: uri-reference first: type: string format: uri-reference next: type: string format: uri-reference required: - self CiExecutionProgress: type: string enum: - PENDING - RUNNING - COMPLETE BetaLicenseAgreement: type: object title: BetaLicenseAgreement properties: type: type: string enum: - betaLicenseAgreements id: type: string attributes: type: object properties: agreementText: type: string relationships: type: object properties: app: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - apps id: type: string required: - id - type links: $ref: '#/components/schemas/ResourceLinks' required: - id - type SubscriptionGroup: type: object title: SubscriptionGroup properties: type: type: string enum: - subscriptionGroups id: type: string attributes: type: object properties: referenceName: type: string relationships: type: object properties: subscriptions: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - subscriptions id: type: string required: - id - type subscriptionGroupLocalizations: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - subscriptionGroupLocalizations id: type: string required: - id - type links: $ref: '#/components/schemas/ResourceLinks' required: - id - type CiTestDestinationKind: type: string enum: - SIMULATOR - MAC AppEncryptionDeclarationState: type: string enum: - CREATED - IN_REVIEW - APPROVED - REJECTED - INVALID - EXPIRED ErrorResponse: type: object properties: errors: type: array items: type: object properties: id: type: string status: type: string code: type: string title: type: string detail: type: string source: oneOf: - $ref: '#/components/schemas/ErrorSourcePointer' - $ref: '#/components/schemas/ErrorSourceParameter' links: $ref: '#/components/schemas/ErrorLinks' meta: type: object additionalProperties: {} required: - code - detail - status - title AndroidToIosAppMappingDetail: type: object title: AndroidToIosAppMappingDetail properties: type: type: string enum: - androidToIosAppMappingDetails id: type: string attributes: type: object properties: packageName: type: string appSigningKeyPublicCertificateSha256Fingerprints: type: array items: type: string links: $ref: '#/components/schemas/ResourceLinks' required: - id - type CiBuildRunsResponse: type: object title: CiBuildRunsResponse properties: data: type: array items: $ref: '#/components/schemas/CiBuildRun' included: type: array items: oneOf: - $ref: '#/components/schemas/Build' - $ref: '#/components/schemas/CiProduct' - $ref: '#/components/schemas/CiWorkflow' - $ref: '#/components/schemas/ScmGitReference' - $ref: '#/components/schemas/ScmPullRequest' discriminator: propertyName: type mapping: ciProducts: '#/components/schemas/CiProduct' builds: '#/components/schemas/Build' scmPullRequests: '#/components/schemas/ScmPullRequest' ciWorkflows: '#/components/schemas/CiWorkflow' scmGitReferences: '#/components/schemas/ScmGitReference' links: $ref: '#/components/schemas/PagedDocumentLinks' meta: $ref: '#/components/schemas/PagingInformation' required: - data - links CiProductBuildRunsLinkagesResponse: type: object properties: data: type: array items: type: object properties: type: type: string enum: - ciBuildRuns id: type: string required: - id - type links: $ref: '#/components/schemas/PagedDocumentLinks' meta: $ref: '#/components/schemas/PagingInformation' required: - data - links ErrorSourcePointer: type: object title: JsonPointer properties: pointer: type: string required: - pointer PagingInformation: type: object properties: paging: type: object properties: total: type: integer limit: type: integer nextCursor: type: string required: - limit required: - paging CiStartConditionFileMatcher: type: object properties: directory: type: string fileExtension: type: string fileName: type: string CiCompletionStatus: type: string enum: - SUCCEEDED - FAILED - ERRORED - CANCELED - SKIPPED BetaAppLocalization: type: object title: BetaAppLocalization properties: type: type: string enum: - betaAppLocalizations id: type: string attributes: type: object properties: feedbackEmail: type: string marketingUrl: type: string privacyPolicyUrl: type: string tvOsPrivacyPolicy: type: string description: type: string locale: type: string relationships: type: object properties: app: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - apps id: type: string required: - id - type links: $ref: '#/components/schemas/ResourceLinks' required: - id - type CiProductPrimaryRepositoriesLinkagesResponse: type: object properties: data: type: array items: type: object properties: type: type: string enum: - scmRepositories id: type: string required: - id - type links: $ref: '#/components/schemas/PagedDocumentLinks' meta: $ref: '#/components/schemas/PagingInformation' required: - data - links GameCenterDetail: type: object title: GameCenterDetail properties: type: type: string enum: - gameCenterDetails id: type: string attributes: type: object properties: arcadeEnabled: type: boolean challengeEnabled: type: boolean deprecated: true relationships: type: object properties: app: type: object properties: data: type: object properties: type: type: string enum: - apps id: type: string required: - id - type gameCenterAppVersions: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - gameCenterAppVersions id: type: string required: - id - type gameCenterGroup: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - gameCenterGroups id: type: string required: - id - type gameCenterLeaderboards: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - gameCenterLeaderboards id: type: string required: - id - type deprecated: true gameCenterLeaderboardsV2: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - gameCenterLeaderboards id: type: string required: - id - type gameCenterLeaderboardSets: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - gameCenterLeaderboardSets id: type: string required: - id - type deprecated: true gameCenterLeaderboardSetsV2: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - gameCenterLeaderboardSets id: type: string required: - id - type gameCenterAchievements: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - gameCenterAchievements id: type: string required: - id - type deprecated: true gameCenterAchievementsV2: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - gameCenterAchievements id: type: string required: - id - type gameCenterActivities: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - gameCenterActivities id: type: string required: - id - type gameCenterChallenges: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - gameCenterChallenges id: type: string required: - id - type defaultLeaderboard: type: object properties: data: type: object properties: type: type: string enum: - gameCenterLeaderboards id: type: string required: - id - type deprecated: true defaultLeaderboardV2: type: object properties: data: type: object properties: type: type: string enum: - gameCenterLeaderboards id: type: string required: - id - type defaultGroupLeaderboard: type: object properties: data: type: object properties: type: type: string enum: - gameCenterLeaderboards id: type: string required: - id - type deprecated: true defaultGroupLeaderboardV2: type: object properties: data: type: object properties: type: type: string enum: - gameCenterLeaderboards id: type: string required: - id - type achievementReleases: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - gameCenterAchievementReleases id: type: string required: - id - type deprecated: true activityReleases: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - gameCenterActivityVersionReleases id: type: string required: - id - type deprecated: true challengeReleases: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - gameCenterChallengeVersionReleases id: type: string required: - id - type deprecated: true leaderboardReleases: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - gameCenterLeaderboardReleases id: type: string required: - id - type deprecated: true leaderboardSetReleases: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - gameCenterLeaderboardSetReleases id: type: string required: - id - type deprecated: true challengesMinimumPlatformVersions: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - appStoreVersions id: type: string required: - id - type links: $ref: '#/components/schemas/ResourceLinks' required: - id - type CiGitRefKind: type: string enum: - BRANCH - TAG CiTagStartCondition: type: object properties: source: $ref: '#/components/schemas/CiTagPatterns' filesAndFoldersRule: $ref: '#/components/schemas/CiFilesAndFoldersRule' autoCancel: type: boolean ErrorLinks: type: object properties: about: type: string format: uri-reference associated: oneOf: - type: string format: uri-reference - type: object properties: href: type: string format: uri-reference meta: type: object properties: source: type: string AppInfo: type: object title: AppInfo properties: type: type: string enum: - appInfos id: type: string attributes: type: object properties: appStoreState: deprecated: true $ref: '#/components/schemas/AppStoreVersionState' state: type: string enum: - ACCEPTED - DEVELOPER_REJECTED - IN_REVIEW - PENDING_RELEASE - PREPARE_FOR_SUBMISSION - READY_FOR_DISTRIBUTION - READY_FOR_REVIEW - REJECTED - REPLACED_WITH_NEW_INFO - WAITING_FOR_REVIEW appStoreAgeRating: deprecated: true $ref: '#/components/schemas/AppStoreAgeRating' australiaAgeRating: type: string deprecated: true enum: - FIFTEEN - EIGHTEEN brazilAgeRating: deprecated: true $ref: '#/components/schemas/BrazilAgeRating' brazilAgeRatingV2: type: string deprecated: true enum: - SELF_RATED_L - SELF_RATED_TEN - SELF_RATED_TWELVE - SELF_RATED_FOURTEEN - SELF_RATED_SIXTEEN - SELF_RATED_EIGHTEEN - OFFICIAL_L - OFFICIAL_TEN - OFFICIAL_TWELVE - OFFICIAL_FOURTEEN - OFFICIAL_SIXTEEN - OFFICIAL_EIGHTEEN franceAgeRating: type: string deprecated: true enum: - EIGHTEEN koreaAgeRating: type: string deprecated: true enum: - ALL - TWELVE - FIFTEEN - NINETEEN - NOT_APPLICABLE kidsAgeBand: deprecated: true $ref: '#/components/schemas/KidsAgeBand' relationships: type: object properties: app: type: object properties: data: type: object properties: type: type: string enum: - apps id: type: string required: - id - type ageRatingDeclaration: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - ageRatingDeclarations id: type: string required: - id - type appInfoLocalizations: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - appInfoLocalizations id: type: string required: - id - type primaryCategory: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - appCategories id: type: string required: - id - type primarySubcategoryOne: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - appCategories id: type: string required: - id - type primarySubcategoryTwo: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - appCategories id: type: string required: - id - type secondaryCategory: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - appCategories id: type: string required: - id - type secondarySubcategoryOne: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - appCategories id: type: string required: - id - type secondarySubcategoryTwo: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - appCategories id: type: string required: - id - type territoryAgeRatings: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' links: $ref: '#/components/schemas/ResourceLinks' required: - id - type ScmPullRequest: type: object title: ScmPullRequest properties: type: type: string enum: - scmPullRequests id: type: string attributes: type: object properties: title: type: string number: type: integer webUrl: type: string format: uri sourceRepositoryOwner: type: string sourceRepositoryName: type: string sourceBranchName: type: string destinationRepositoryOwner: type: string destinationRepositoryName: type: string destinationBranchName: type: string isClosed: type: boolean isCrossRepository: type: boolean relationships: type: object properties: repository: type: object properties: data: type: object properties: type: type: string enum: - scmRepositories id: type: string required: - id - type links: $ref: '#/components/schemas/ResourceLinks' required: - id - type CiAction: type: object properties: name: type: string actionType: $ref: '#/components/schemas/CiActionType' destination: type: string enum: - ANY_IOS_DEVICE - ANY_IOS_SIMULATOR - ANY_TVOS_DEVICE - ANY_TVOS_SIMULATOR - ANY_WATCHOS_DEVICE - ANY_WATCHOS_SIMULATOR - ANY_MAC - ANY_MAC_CATALYST - ANY_VISIONOS_DEVICE - ANY_VISIONOS_SIMULATOR buildDistributionAudience: $ref: '#/components/schemas/BuildAudienceType' testConfiguration: type: object properties: kind: type: string enum: - USE_SCHEME_SETTINGS - SPECIFIC_TEST_PLANS testPlanName: type: string testDestinations: type: array items: $ref: '#/components/schemas/CiTestDestination' scheme: type: string platform: type: string enum: - MACOS - IOS - TVOS - WATCHOS - VISIONOS isRequiredToPass: type: boolean Platform: type: string enum: - IOS - MAC_OS - TV_OS - VISION_OS CiProduct: type: object title: CiProduct properties: type: type: string enum: - ciProducts id: type: string attributes: type: object properties: name: type: string createdDate: type: string format: date-time productType: type: string enum: - APP - FRAMEWORK relationships: type: object properties: app: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - apps id: type: string required: - id - type bundleId: type: object properties: data: type: object properties: type: type: string enum: - bundleIds id: type: string required: - id - type workflows: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' primaryRepositories: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - scmRepositories id: type: string required: - id - type additionalRepositories: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' buildRuns: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' links: $ref: '#/components/schemas/ResourceLinks' required: - id - type InAppPurchase: type: object title: InAppPurchase properties: type: type: string enum: - inAppPurchases id: type: string attributes: type: object properties: referenceName: type: string productId: type: string inAppPurchaseType: type: string enum: - AUTOMATICALLY_RENEWABLE_SUBSCRIPTION - NON_CONSUMABLE - CONSUMABLE - NON_RENEWING_SUBSCRIPTION - FREE_SUBSCRIPTION state: type: string enum: - CREATED - DEVELOPER_SIGNED_OFF - DEVELOPER_ACTION_NEEDED - DELETION_IN_PROGRESS - APPROVED - DELETED - REMOVED_FROM_SALE - DEVELOPER_REMOVED_FROM_SALE - WAITING_FOR_UPLOAD - PROCESSING_CONTENT - REPLACED - REJECTED - WAITING_FOR_SCREENSHOT - PREPARE_FOR_SUBMISSION - MISSING_METADATA - READY_TO_SUBMIT - WAITING_FOR_REVIEW - IN_REVIEW - PENDING_DEVELOPER_RELEASE relationships: type: object properties: apps: type: object properties: meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - apps id: type: string required: - id - type links: $ref: '#/components/schemas/ResourceLinks' required: - id - type deprecated: true CiProductAppLinkageResponse: type: object properties: data: type: object properties: type: type: string enum: - apps id: type: string required: - id - type links: $ref: '#/components/schemas/DocumentLinks' required: - data - links CiTestDestination: type: object properties: deviceTypeName: type: string deviceTypeIdentifier: type: string runtimeName: type: string runtimeIdentifier: type: string kind: $ref: '#/components/schemas/CiTestDestinationKind' CiMacOsVersion: type: object title: CiMacOsVersion properties: type: type: string enum: - ciMacOsVersions id: type: string attributes: type: object properties: version: type: string name: type: string relationships: type: object properties: xcodeVersions: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - ciXcodeVersions id: type: string required: - id - type links: $ref: '#/components/schemas/ResourceLinks' required: - id - type App: type: object title: App properties: type: type: string enum: - apps id: type: string attributes: type: object properties: accessibilityUrl: type: string format: uri name: type: string bundleId: type: string sku: type: string primaryLocale: type: string isOrEverWasMadeForKids: type: boolean subscriptionStatusUrl: type: string format: uri subscriptionStatusUrlVersion: $ref: '#/components/schemas/SubscriptionStatusUrlVersion' subscriptionStatusUrlForSandbox: type: string format: uri subscriptionStatusUrlVersionForSandbox: $ref: '#/components/schemas/SubscriptionStatusUrlVersion' contentRightsDeclaration: type: string enum: - DOES_NOT_USE_THIRD_PARTY_CONTENT - USES_THIRD_PARTY_CONTENT streamlinedPurchasingEnabled: type: boolean relationships: type: object properties: accessibilityDeclarations: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' appEncryptionDeclarations: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - appEncryptionDeclarations id: type: string required: - id - type appStoreIcon: type: object properties: data: type: object properties: type: type: string enum: - buildIcons id: type: string required: - id - type ciProduct: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - ciProducts id: type: string required: - id - type betaTesters: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' betaGroups: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - betaGroups id: type: string required: - id - type appStoreVersions: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - appStoreVersions id: type: string required: - id - type appTags: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' preReleaseVersions: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - preReleaseVersions id: type: string required: - id - type betaAppLocalizations: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - betaAppLocalizations id: type: string required: - id - type builds: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - builds id: type: string required: - id - type betaLicenseAgreement: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - betaLicenseAgreements id: type: string required: - id - type betaAppReviewDetail: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - betaAppReviewDetails id: type: string required: - id - type appInfos: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - appInfos id: type: string required: - id - type appClips: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - appClips id: type: string required: - id - type appPricePoints: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' endUserLicenseAgreement: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - endUserLicenseAgreements id: type: string required: - id - type appPriceSchedule: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' appAvailabilityV2: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' inAppPurchases: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - inAppPurchases id: type: string required: - id - type deprecated: true subscriptionGroups: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - subscriptionGroups id: type: string required: - id - type gameCenterEnabledVersions: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - gameCenterEnabledVersions id: type: string required: - id - type perfPowerMetrics: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' appCustomProductPages: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - appCustomProductPages id: type: string required: - id - type inAppPurchasesV2: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - inAppPurchases id: type: string required: - id - type promotedPurchases: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - promotedPurchases id: type: string required: - id - type appEvents: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - appEvents id: type: string required: - id - type reviewSubmissions: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - reviewSubmissions id: type: string required: - id - type subscriptionGracePeriod: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - subscriptionGracePeriods id: type: string required: - id - type customerReviews: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' customerReviewSummarizations: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' gameCenterDetail: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - gameCenterDetails id: type: string required: - id - type appStoreVersionExperimentsV2: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - appStoreVersionExperiments id: type: string required: - id - type alternativeDistributionKey: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' analyticsReportRequests: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' marketplaceSearchDetail: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' buildUploads: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' backgroundAssets: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' betaFeedbackScreenshotSubmissions: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' betaFeedbackCrashSubmissions: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' searchKeywords: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' webhooks: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' androidToIosAppMappingDetails: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - androidToIosAppMappingDetails id: type: string required: - id - type links: $ref: '#/components/schemas/ResourceLinks' required: - id - type ScmProvider: type: object title: ScmProvider properties: type: type: string enum: - scmProviders id: type: string attributes: type: object properties: scmProviderType: $ref: '#/components/schemas/ScmProviderType' url: type: string format: uri relationships: type: object properties: repositories: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' links: $ref: '#/components/schemas/ResourceLinks' required: - id - type RelationshipLinks: type: object properties: self: type: string format: uri-reference related: type: string format: uri-reference AppStoreVersionExperimentV2: type: object title: AppStoreVersionExperimentV2 properties: type: type: string enum: - appStoreVersionExperiments id: type: string attributes: type: object properties: name: type: string platform: $ref: '#/components/schemas/Platform' trafficProportion: type: integer state: type: string enum: - PREPARE_FOR_SUBMISSION - READY_FOR_REVIEW - WAITING_FOR_REVIEW - IN_REVIEW - ACCEPTED - APPROVED - REJECTED - COMPLETED - STOPPED reviewRequired: type: boolean startDate: type: string format: date-time endDate: type: string format: date-time relationships: type: object properties: app: type: object properties: data: type: object properties: type: type: string enum: - apps id: type: string required: - id - type latestControlVersion: type: object properties: data: type: object properties: type: type: string enum: - appStoreVersions id: type: string required: - id - type controlVersions: type: object properties: meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - appStoreVersions id: type: string required: - id - type appStoreVersionExperimentTreatments: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - appStoreVersionExperimentTreatments id: type: string required: - id - type links: $ref: '#/components/schemas/ResourceLinks' required: - id - type CiManualBranchStartCondition: type: object properties: source: $ref: '#/components/schemas/CiBranchPatterns' BetaAppReviewDetail: type: object title: BetaAppReviewDetail properties: type: type: string enum: - betaAppReviewDetails id: type: string attributes: type: object properties: contactFirstName: type: string contactLastName: type: string contactPhone: type: string contactEmail: type: string demoAccountName: type: string demoAccountPassword: type: string demoAccountRequired: type: boolean notes: type: string relationships: type: object properties: app: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - apps id: type: string required: - id - type links: $ref: '#/components/schemas/ResourceLinks' required: - id - type BuildAudienceType: type: string enum: - INTERNAL_ONLY - APP_STORE_ELIGIBLE ReviewSubmission: type: object title: ReviewSubmission properties: type: type: string enum: - reviewSubmissions id: type: string attributes: type: object properties: platform: $ref: '#/components/schemas/Platform' submittedDate: type: string format: date-time state: type: string enum: - READY_FOR_REVIEW - WAITING_FOR_REVIEW - IN_REVIEW - UNRESOLVED_ISSUES - CANCELING - COMPLETING - COMPLETE relationships: type: object properties: app: type: object properties: data: type: object properties: type: type: string enum: - apps id: type: string required: - id - type items: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - reviewSubmissionItems id: type: string required: - id - type appStoreVersionForReview: type: object properties: data: type: object properties: type: type: string enum: - appStoreVersions id: type: string required: - id - type submittedByActor: type: object properties: data: type: object properties: type: type: string enum: - actors id: type: string required: - id - type lastUpdatedByActor: type: object properties: data: type: object properties: type: type: string enum: - actors id: type: string required: - id - type links: $ref: '#/components/schemas/ResourceLinks' required: - id - type SubscriptionGracePeriod: type: object title: SubscriptionGracePeriod properties: type: type: string enum: - subscriptionGracePeriods id: type: string attributes: type: object properties: optIn: type: boolean sandboxOptIn: type: boolean duration: $ref: '#/components/schemas/SubscriptionGracePeriodDuration' renewalType: type: string enum: - ALL_RENEWALS - PAID_TO_PAID_ONLY links: $ref: '#/components/schemas/ResourceLinks' required: - id - type BetaGroup: type: object title: BetaGroup properties: type: type: string enum: - betaGroups id: type: string attributes: type: object properties: name: type: string createdDate: type: string format: date-time isInternalGroup: type: boolean hasAccessToAllBuilds: type: boolean publicLinkEnabled: type: boolean publicLinkId: type: string publicLinkLimitEnabled: type: boolean publicLinkLimit: type: integer publicLink: type: string feedbackEnabled: type: boolean iosBuildsAvailableForAppleSiliconMac: type: boolean iosBuildsAvailableForAppleVision: type: boolean relationships: type: object properties: app: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - apps id: type: string required: - id - type builds: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - builds id: type: string required: - id - type betaTesters: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - betaTesters id: type: string required: - id - type betaRecruitmentCriteria: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - betaRecruitmentCriteria id: type: string required: - id - type betaRecruitmentCriterionCompatibleBuildCheck: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' links: $ref: '#/components/schemas/ResourceLinks' required: - id - type CiScheduledStartCondition: type: object properties: source: $ref: '#/components/schemas/CiBranchPatterns' schedule: type: object properties: frequency: type: string enum: - WEEKLY - DAILY - HOURLY days: type: array items: type: string enum: - SUNDAY - MONDAY - TUESDAY - WEDNESDAY - THURSDAY - FRIDAY - SATURDAY hour: type: integer minute: type: integer timezone: type: string CiWorkflow: type: object title: CiWorkflow properties: type: type: string enum: - ciWorkflows id: type: string attributes: type: object properties: name: type: string description: type: string branchStartCondition: $ref: '#/components/schemas/CiBranchStartCondition' tagStartCondition: $ref: '#/components/schemas/CiTagStartCondition' pullRequestStartCondition: $ref: '#/components/schemas/CiPullRequestStartCondition' scheduledStartCondition: $ref: '#/components/schemas/CiScheduledStartCondition' manualBranchStartCondition: $ref: '#/components/schemas/CiManualBranchStartCondition' manualTagStartCondition: $ref: '#/components/schemas/CiManualTagStartCondition' manualPullRequestStartCondition: $ref: '#/components/schemas/CiManualPullRequestStartCondition' actions: type: array items: $ref: '#/components/schemas/CiAction' isEnabled: type: boolean isLockedForEditing: type: boolean clean: type: boolean containerFilePath: type: string lastModifiedDate: type: string format: date-time relationships: type: object properties: product: type: object properties: data: type: object properties: type: type: string enum: - ciProducts id: type: string required: - id - type repository: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - scmRepositories id: type: string required: - id - type xcodeVersion: type: object properties: data: type: object properties: type: type: string enum: - ciXcodeVersions id: type: string required: - id - type macOsVersion: type: object properties: data: type: object properties: type: type: string enum: - ciMacOsVersions id: type: string required: - id - type buildRuns: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' links: $ref: '#/components/schemas/ResourceLinks' required: - id - type ScmGitReference: type: object title: ScmGitReference properties: type: type: string enum: - scmGitReferences id: type: string attributes: type: object properties: name: type: string canonicalName: type: string isDeleted: type: boolean kind: $ref: '#/components/schemas/CiGitRefKind' relationships: type: object properties: repository: type: object properties: data: type: object properties: type: type: string enum: - scmRepositories id: type: string required: - id - type links: $ref: '#/components/schemas/ResourceLinks' required: - id - type CiFilesAndFoldersRule: type: object properties: mode: type: string enum: - START_IF_ANY_FILE_MATCHES - DO_NOT_START_IF_ALL_FILES_MATCH matchers: type: array items: $ref: '#/components/schemas/CiStartConditionFileMatcher' CiProductResponse: type: object title: CiProductResponse properties: data: $ref: '#/components/schemas/CiProduct' included: type: array items: oneOf: - $ref: '#/components/schemas/App' - $ref: '#/components/schemas/BundleId' - $ref: '#/components/schemas/ScmRepository' discriminator: propertyName: type mapping: scmRepositories: '#/components/schemas/ScmRepository' bundleIds: '#/components/schemas/BundleId' apps: '#/components/schemas/App' links: $ref: '#/components/schemas/DocumentLinks' required: - data - links CiManualTagStartCondition: type: object properties: source: $ref: '#/components/schemas/CiTagPatterns' CiProductWorkflowsLinkagesResponse: type: object properties: data: type: array items: type: object properties: type: type: string enum: - ciWorkflows id: type: string required: - id - type links: $ref: '#/components/schemas/PagedDocumentLinks' meta: $ref: '#/components/schemas/PagingInformation' required: - data - links CiActionType: type: string enum: - BUILD - ANALYZE - TEST - ARCHIVE ResourceLinks: type: object properties: self: type: string format: uri-reference GameCenterEnabledVersion: type: object title: GameCenterEnabledVersion properties: type: type: string enum: - gameCenterEnabledVersions id: type: string attributes: type: object properties: platform: $ref: '#/components/schemas/Platform' versionString: type: string iconAsset: $ref: '#/components/schemas/ImageAsset' relationships: type: object properties: compatibleVersions: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - gameCenterEnabledVersions id: type: string required: - id - type app: type: object properties: data: type: object properties: type: type: string enum: - apps id: type: string required: - id - type links: $ref: '#/components/schemas/ResourceLinks' required: - id - type deprecated: true AppEvent: type: object title: AppEvent properties: type: type: string enum: - appEvents id: type: string attributes: type: object properties: referenceName: type: string badge: type: string enum: - LIVE_EVENT - PREMIERE - CHALLENGE - COMPETITION - NEW_SEASON - MAJOR_UPDATE - SPECIAL_EVENT eventState: type: string enum: - DRAFT - READY_FOR_REVIEW - WAITING_FOR_REVIEW - IN_REVIEW - REJECTED - ACCEPTED - APPROVED - PUBLISHED - PAST - ARCHIVED deepLink: type: string format: uri purchaseRequirement: type: string primaryLocale: type: string priority: type: string enum: - HIGH - NORMAL purpose: type: string enum: - APPROPRIATE_FOR_ALL_USERS - ATTRACT_NEW_USERS - KEEP_ACTIVE_USERS_INFORMED - BRING_BACK_LAPSED_USERS territorySchedules: type: array items: type: object properties: territories: type: array items: type: string publishStart: type: string format: date-time eventStart: type: string format: date-time eventEnd: type: string format: date-time archivedTerritorySchedules: type: array items: type: object properties: territories: type: array items: type: string publishStart: type: string format: date-time eventStart: type: string format: date-time eventEnd: type: string format: date-time relationships: type: object properties: localizations: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - appEventLocalizations id: type: string required: - id - type links: $ref: '#/components/schemas/ResourceLinks' required: - id - type AppResponse: type: object title: AppResponse properties: data: $ref: '#/components/schemas/App' included: type: array items: oneOf: - $ref: '#/components/schemas/AndroidToIosAppMappingDetail' - $ref: '#/components/schemas/AppClip' - $ref: '#/components/schemas/AppCustomProductPage' - $ref: '#/components/schemas/AppEncryptionDeclaration' - $ref: '#/components/schemas/AppEvent' - $ref: '#/components/schemas/AppInfo' - $ref: '#/components/schemas/AppStoreVersionExperimentV2' - $ref: '#/components/schemas/AppStoreVersion' - $ref: '#/components/schemas/BetaAppLocalization' - $ref: '#/components/schemas/BetaAppReviewDetail' - $ref: '#/components/schemas/BetaGroup' - $ref: '#/components/schemas/BetaLicenseAgreement' - $ref: '#/components/schemas/BuildIcon' - $ref: '#/components/schemas/Build' - $ref: '#/components/schemas/CiProduct' - $ref: '#/components/schemas/EndUserLicenseAgreement' - $ref: '#/components/schemas/GameCenterDetail' - $ref: '#/components/schemas/GameCenterEnabledVersion' - $ref: '#/components/schemas/InAppPurchase' - $ref: '#/components/schemas/PrereleaseVersion' - $ref: '#/components/schemas/PromotedPurchase' - $ref: '#/components/schemas/ReviewSubmission' - $ref: '#/components/schemas/SubscriptionGracePeriod' - $ref: '#/components/schemas/SubscriptionGroup' discriminator: propertyName: type mapping: betaGroups: '#/components/schemas/BetaGroup' appEvents: '#/components/schemas/AppEvent' appEncryptionDeclarations: '#/components/schemas/AppEncryptionDeclaration' reviewSubmissions: '#/components/schemas/ReviewSubmission' subscriptionGracePeriods: '#/components/schemas/SubscriptionGracePeriod' appInfos: '#/components/schemas/AppInfo' preReleaseVersions: '#/components/schemas/PrereleaseVersion' appStoreVersionExperiments: '#/components/schemas/AppStoreVersionExperimentV2' appCustomProductPages: '#/components/schemas/AppCustomProductPage' inAppPurchases: '#/components/schemas/InAppPurchase' appClips: '#/components/schemas/AppClip' betaAppReviewDetails: '#/components/schemas/BetaAppReviewDetail' buildIcons: '#/components/schemas/BuildIcon' ciProducts: '#/components/schemas/CiProduct' gameCenterDetails: '#/components/schemas/GameCenterDetail' promotedPurchases: '#/components/schemas/PromotedPurchase' androidToIosAppMappingDetails: '#/components/schemas/AndroidToIosAppMappingDetail' gameCenterEnabledVersions: '#/components/schemas/GameCenterEnabledVersion' subscriptionGroups: '#/components/schemas/SubscriptionGroup' appStoreVersions: '#/components/schemas/AppStoreVersion' builds: '#/components/schemas/Build' betaAppLocalizations: '#/components/schemas/BetaAppLocalization' betaLicenseAgreements: '#/components/schemas/BetaLicenseAgreement' endUserLicenseAgreements: '#/components/schemas/EndUserLicenseAgreement' links: $ref: '#/components/schemas/DocumentLinks' required: - data - links CiIssueCounts: type: object properties: analyzerWarnings: type: integer errors: type: integer testFailures: type: integer warnings: type: integer PrereleaseVersion: type: object title: PrereleaseVersion properties: type: type: string enum: - preReleaseVersions id: type: string attributes: type: object properties: version: type: string platform: $ref: '#/components/schemas/Platform' relationships: type: object properties: builds: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - builds id: type: string required: - id - type app: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - apps id: type: string required: - id - type links: $ref: '#/components/schemas/ResourceLinks' required: - id - type KidsAgeBand: type: string enum: - FIVE_AND_UNDER - SIX_TO_EIGHT - NINE_TO_ELEVEN AppEncryptionDeclaration: type: object title: AppEncryptionDeclaration properties: type: type: string enum: - appEncryptionDeclarations id: type: string attributes: type: object properties: appDescription: type: string createdDate: type: string format: date-time usesEncryption: type: boolean deprecated: true exempt: type: boolean containsProprietaryCryptography: type: boolean containsThirdPartyCryptography: type: boolean availableOnFrenchStore: type: boolean platform: deprecated: true $ref: '#/components/schemas/Platform' uploadedDate: type: string format: date-time deprecated: true documentUrl: type: string deprecated: true documentName: type: string deprecated: true documentType: type: string deprecated: true appEncryptionDeclarationState: $ref: '#/components/schemas/AppEncryptionDeclarationState' codeValue: type: string relationships: type: object properties: app: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - apps id: type: string required: - id - type deprecated: true builds: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - builds id: type: string required: - id - type deprecated: true appEncryptionDeclarationDocument: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - appEncryptionDeclarationDocuments id: type: string required: - id - type links: $ref: '#/components/schemas/ResourceLinks' required: - id - type Build: type: object title: Build properties: type: type: string enum: - builds id: type: string attributes: type: object properties: version: type: string uploadedDate: type: string format: date-time expirationDate: type: string format: date-time expired: type: boolean minOsVersion: type: string lsMinimumSystemVersion: type: string computedMinMacOsVersion: type: string computedMinVisionOsVersion: type: string iconAssetToken: $ref: '#/components/schemas/ImageAsset' processingState: type: string enum: - PROCESSING - FAILED - INVALID - VALID buildAudienceType: $ref: '#/components/schemas/BuildAudienceType' usesNonExemptEncryption: type: boolean relationships: type: object properties: preReleaseVersion: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - preReleaseVersions id: type: string required: - id - type individualTesters: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - betaTesters id: type: string required: - id - type betaGroups: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - betaGroups id: type: string required: - id - type betaBuildLocalizations: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - betaBuildLocalizations id: type: string required: - id - type appEncryptionDeclaration: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - appEncryptionDeclarations id: type: string required: - id - type betaAppReviewSubmission: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - betaAppReviewSubmissions id: type: string required: - id - type app: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - apps id: type: string required: - id - type buildBetaDetail: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - buildBetaDetails id: type: string required: - id - type appStoreVersion: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - appStoreVersions id: type: string required: - id - type icons: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - buildIcons id: type: string required: - id - type buildBundles: type: object properties: meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - buildBundles id: type: string required: - id - type buildUpload: type: object properties: data: type: object properties: type: type: string enum: - buildUploads id: type: string required: - id - type perfPowerMetrics: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' diagnosticSignatures: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' links: $ref: '#/components/schemas/ResourceLinks' required: - id - type SubscriptionStatusUrlVersion: type: string enum: - V1 - V2 EndUserLicenseAgreement: type: object title: EndUserLicenseAgreement properties: type: type: string enum: - endUserLicenseAgreements id: type: string attributes: type: object properties: agreementText: type: string relationships: type: object properties: app: type: object properties: data: type: object properties: type: type: string enum: - apps id: type: string required: - id - type territories: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - territories id: type: string required: - id - type links: $ref: '#/components/schemas/ResourceLinks' required: - id - type ScmRepository: type: object title: ScmRepository properties: type: type: string enum: - scmRepositories id: type: string attributes: type: object properties: lastAccessedDate: type: string format: date-time httpCloneUrl: type: string format: uri sshCloneUrl: type: string format: uri ownerName: type: string repositoryName: type: string relationships: type: object properties: scmProvider: type: object properties: data: type: object properties: type: type: string enum: - scmProviders id: type: string required: - id - type defaultBranch: type: object properties: data: type: object properties: type: type: string enum: - scmGitReferences id: type: string required: - id - type gitReferences: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' pullRequests: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' links: $ref: '#/components/schemas/ResourceLinks' required: - id - type AppStoreVersion: type: object title: AppStoreVersion properties: type: type: string enum: - appStoreVersions id: type: string attributes: type: object properties: platform: $ref: '#/components/schemas/Platform' versionString: type: string appStoreState: deprecated: true $ref: '#/components/schemas/AppStoreVersionState' appVersionState: $ref: '#/components/schemas/AppVersionState' copyright: type: string reviewType: type: string enum: - APP_STORE - NOTARIZATION releaseType: type: string enum: - MANUAL - AFTER_APPROVAL - SCHEDULED earliestReleaseDate: type: string format: date-time usesIdfa: type: boolean deprecated: true downloadable: type: boolean createdDate: type: string format: date-time relationships: type: object properties: app: type: object properties: data: type: object properties: type: type: string enum: - apps id: type: string required: - id - type appStoreVersionLocalizations: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - appStoreVersionLocalizations id: type: string required: - id - type build: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - builds id: type: string required: - id - type appStoreVersionPhasedRelease: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - appStoreVersionPhasedReleases id: type: string required: - id - type gameCenterAppVersion: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - gameCenterAppVersions id: type: string required: - id - type routingAppCoverage: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - routingAppCoverages id: type: string required: - id - type appStoreReviewDetail: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - appStoreReviewDetails id: type: string required: - id - type appStoreVersionSubmission: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - appStoreVersionSubmissions id: type: string required: - id - type appClipDefaultExperience: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - appClipDefaultExperiences id: type: string required: - id - type appStoreVersionExperiments: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - appStoreVersionExperiments id: type: string required: - id - type appStoreVersionExperimentsV2: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - appStoreVersionExperiments id: type: string required: - id - type customerReviews: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' alternativeDistributionPackage: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' data: type: object properties: type: type: string enum: - alternativeDistributionPackages id: type: string required: - id - type links: $ref: '#/components/schemas/ResourceLinks' required: - id - type CiGitUser: type: object properties: displayName: type: string avatarUrl: type: string format: uri ScmProviderType: type: object properties: kind: type: string enum: - BITBUCKET_CLOUD - BITBUCKET_SERVER - GITHUB_CLOUD - GITHUB_ENTERPRISE - GITLAB_CLOUD - GITLAB_SELF_MANAGED displayName: type: string isOnPremise: type: boolean SubscriptionGracePeriodDuration: type: string enum: - THREE_DAYS - SIXTEEN_DAYS - TWENTY_EIGHT_DAYS IconAssetType: type: string enum: - APP_STORE - MESSAGES_APP_STORE - WATCH_APP_STORE - TV_OS_HOME_SCREEN - TV_OS_TOP_SHELF - ALTERNATE_EXPERIMENT CiBranchPatterns: type: object properties: isAllMatch: type: boolean patterns: type: array items: type: object properties: pattern: type: string isPrefix: type: boolean CiBuildRun: type: object title: CiBuildRun properties: type: type: string enum: - ciBuildRuns id: type: string attributes: type: object properties: number: type: integer createdDate: type: string format: date-time startedDate: type: string format: date-time finishedDate: type: string format: date-time sourceCommit: type: object properties: commitSha: type: string message: type: string author: $ref: '#/components/schemas/CiGitUser' committer: $ref: '#/components/schemas/CiGitUser' webUrl: type: string format: uri destinationCommit: type: object properties: commitSha: type: string message: type: string author: $ref: '#/components/schemas/CiGitUser' committer: $ref: '#/components/schemas/CiGitUser' webUrl: type: string format: uri isPullRequestBuild: type: boolean issueCounts: $ref: '#/components/schemas/CiIssueCounts' executionProgress: $ref: '#/components/schemas/CiExecutionProgress' completionStatus: $ref: '#/components/schemas/CiCompletionStatus' startReason: type: string enum: - GIT_REF_CHANGE - MANUAL - MANUAL_REBUILD - PULL_REQUEST_OPEN - PULL_REQUEST_UPDATE - SCHEDULE cancelReason: type: string enum: - AUTOMATICALLY_BY_NEWER_BUILD - MANUALLY_BY_USER relationships: type: object properties: builds: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' meta: $ref: '#/components/schemas/PagingInformation' data: type: array items: type: object properties: type: type: string enum: - builds id: type: string required: - id - type workflow: type: object properties: data: type: object properties: type: type: string enum: - ciWorkflows id: type: string required: - id - type product: type: object properties: data: type: object properties: type: type: string enum: - ciProducts id: type: string required: - id - type sourceBranchOrTag: type: object properties: data: type: object properties: type: type: string enum: - scmGitReferences id: type: string required: - id - type destinationBranch: type: object properties: data: type: object properties: type: type: string enum: - scmGitReferences id: type: string required: - id - type actions: type: object properties: links: $ref: '#/components/schemas/RelationshipLinks' pullRequest: type: object properties: data: type: object properties: type: type: string enum: - scmPullRequests id: type: string required: - id - type links: $ref: '#/components/schemas/ResourceLinks' required: - id - type AppStoreVersionState: type: string enum: - ACCEPTED - DEVELOPER_REMOVED_FROM_SALE - DEVELOPER_REJECTED - IN_REVIEW - INVALID_BINARY - METADATA_REJECTED - PENDING_APPLE_RELEASE - PENDING_CONTRACT - PENDING_DEVELOPER_RELEASE - PREPARE_FOR_SUBMISSION - PREORDER_READY_FOR_SALE - PROCESSING_FOR_APP_STORE - READY_FOR_REVIEW - READY_FOR_SALE - REJECTED - REMOVED_FROM_SALE - WAITING_FOR_EXPORT_COMPLIANCE - WAITING_FOR_REVIEW - REPLACED_WITH_NEW_VERSION - NOT_APPLICABLE securitySchemes: itc-bearer-token: type: http scheme: bearer bearerFormat: JWT