action etsi_individual_subscription_get { label: "Used to represent an individual subscription to notifications about application package changes." description: "Used to represent an individual subscription to notifications about application package changes." provider: etsi method: GET path: "/subscriptions/{subscriptionId}" encoding: json output: { type: "object" description: "'The data type represents a subscription to notification of application package management for the onboarding, or operational state change of application package'" required: ["_links", "callbackUri", "id", "subscriptionType"] properties: { _links: { type: "object" description: "Links to resources related to this resource." required: ["self"] properties: { self: { type: "object" required: ["href"] properties: { href: { type: "string" format: "uri" description: "URI referring to a resource" } } } } } callbackUri: { type: "string" format: "uri" description: "The URI of the endpoint for the notification to be sent to." } id: { type: "string" description: "''" } subscriptionType: { type: "string" description: "Subscribed notification type." enum: ["AppPackageOnBoarding", "AppPacakgeOperationChange", "AppPackageDeletion"] } } } }