action etsi_subscriptions_get { label: "used to retrieve the information of subscriptions to individual application package resource in MEO" description: "used to retrieve the information of subscriptions to individual application package resource in MEO package" provider: etsi method: GET path: "/subscriptions" encoding: json output: { type: "object" description: "'The data type represents a subscription link list of notification on application package management'" required: ["_links"] 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" } } } subscriptions: { type: "array" items: { type: "object" description: "'The data type represents the input parameters of \"subscription operation\" to notification of application package management for the onboarding, or operational state change of application package.'" required: ["href", "subsctiptionType"] properties: { href: { type: "string" format: "uri" description: "The URI referring to the subscription." } subsctiptionType: { type: "string" description: "'Subscribed notification type'" enum: ["AppPackageOnBoarding", "AppPacakgeOperationChange", "AppPackageDeletion"] } } } } } } } } }