A string indicating the type of package. While oneNote is the only currently defined value, you should expect other package types to be returned and handle them accordingly.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.package",
"title": "package",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "A string indicating the type of package. While oneNote is the only currently defined value, you should expect other package types to be returned and handle them accordingly.",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}