{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ApplicationPackageListResponse", "title": "ApplicationPackageListResponse", "type": "object", "description": "Response containing a list of application packages.", "properties": { "value": { "type": "array", "description": "Array of application package resources.", "items": { "$ref": "#/components/schemas/ApplicationPackage" }, "example": [] }, "@odata.nextLink": { "type": [ "string", "null" ], "format": "uri", "description": "URL to retrieve the next page of results.", "example": "https://www.example.com" } } }