- improve OAS schemas [12/n] - Support ignoring properties in type if it has the `@ignore` jsdoc tag.
21 lines
411 B
TypeScript
21 lines
411 B
TypeScript
/**
|
|
* @schema AdminShippingOptionPriceRule
|
|
* type: object
|
|
* description: The details of a shipping option price's rule.
|
|
* x-schemaName: AdminShippingOptionPriceRule
|
|
* required:
|
|
* - id
|
|
* - value
|
|
* properties:
|
|
* id:
|
|
* type: string
|
|
* title: id
|
|
* description: The price rule's ID.
|
|
* value:
|
|
* type: string
|
|
* title: value
|
|
* description: The price rule's value.
|
|
*
|
|
*/
|
|
|