model-first
model-first copied to clipboard
Model-first tooling
Prepare the privacy doc and privacy statement
1. Add hasStream property for media entity in YAML, JSON and SWAGGER. 2. In C# client CodeGen, for media entity type, add HasStream attribute in class definition, for example: [global::Microsoft.OData.Client.HasStream()]...
Consider what permissions apply to a root-level collection vs type. Root level collection: - Read - ReadMany - ReadOne - Create - Update - Delete - Query - Order -...
Currently capabilities are specified as separate line items, e.g.: ``` yaml insertable: true searchable: true deletable: true ``` Simplify these into a single line if possible: ``` yaml allows: [create,...
The current assumptions state that if an operation returns something, it's a function. Actions can return something too, but they are not idempotent. Figure out the right YAML syntax to...