--- title: DiscountApplication - GraphQL Admin description: >- Discount applications capture the intentions of a discount source at the time of application on an order's line items or shipping lines. Discount applications don't represent the actual final amount discounted on a line (line item or shipping line). The actual amount discounted on a line is represented by the [DiscountAllocation](https://shopify.dev/api/admin-graphql/latest/objects/discountallocation) object. api_version: 2026-04 api_name: admin type: interface api_type: graphql source_url: html: >- https://shopify.dev/docs/api/admin-graphql/latest/interfaces/DiscountApplication md: >- https://shopify.dev/docs/api/admin-graphql/latest/interfaces/DiscountApplication.md --- # Discount​Application interface Discount applications capture the intentions of a discount source at the time of application on an order's line items or shipping lines. Discount applications don't represent the actual final amount discounted on a line (line item or shipping line). The actual amount discounted on a line is represented by the [DiscountAllocation](https://shopify.dev/api/admin-graphql/latest/objects/discountallocation) object. ## Fields * allocation​Method [Discount​Application​Allocation​Method!](https://shopify.dev/docs/api/admin-graphql/latest/enums/DiscountApplicationAllocationMethod) non-null The method by which the discount's value is applied to its entitled items. * index [Int!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/Int) non-null An ordered index that can be used to identify the discount application and indicate the precedence of the discount application for calculations. * target​Selection [Discount​Application​Target​Selection!](https://shopify.dev/docs/api/admin-graphql/latest/enums/DiscountApplicationTargetSelection) non-null How the discount amount is distributed on the discounted lines. * target​Type [Discount​Application​Target​Type!](https://shopify.dev/docs/api/admin-graphql/latest/enums/DiscountApplicationTargetType) non-null Whether the discount is applied on line items or shipping lines. * value [Pricing​Value!](https://shopify.dev/docs/api/admin-graphql/latest/unions/PricingValue) non-null The value of the discount application. *** ##### Variables ```json { "allocationMethod": "", "index": "", "targetSelection": "", "targetType": "", "value": "" } ``` ##### Schema ```graphql interface DiscountApplication { allocationMethod: DiscountApplicationAllocationMethod! index: Int! targetSelection: DiscountApplicationTargetSelection! targetType: DiscountApplicationTargetType! value: PricingValue! } ```