blob: d498aa8d3371c2f4a6e3ed3bf8e361f42d675be9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
// Schema undocumented
type Schema struct {
// Entity is the base model of Schema
Entity
// BaseType undocumented
BaseType *string `json:"baseType,omitempty"`
// Properties undocumented
Properties []Property `json:"properties,omitempty"`
}
// SchemaExtension undocumented
type SchemaExtension struct {
// Entity is the base model of SchemaExtension
Entity
// Description undocumented
Description *string `json:"description,omitempty"`
// TargetTypes undocumented
TargetTypes []string `json:"targetTypes,omitempty"`
// Properties undocumented
Properties []ExtensionSchemaProperty `json:"properties,omitempty"`
// Status undocumented
Status *string `json:"status,omitempty"`
// Owner undocumented
Owner *string `json:"owner,omitempty"`
}
|