23 lines
719 B
YAML
23 lines
719 B
YAML
components:
|
|
schemas:
|
|
PaymentMethod:
|
|
allOf:
|
|
- $ref: ../permission_bound.yaml#/components/schemas/PermissionBound
|
|
- $ref: ../common/describable.yaml#/components/schemas/Describable
|
|
- type: object
|
|
additionalProperties: false
|
|
required:
|
|
- recipientRef
|
|
- type
|
|
- isMain
|
|
properties:
|
|
recipientRef:
|
|
$ref: ../objectid.yaml#/components/schemas/ObjectId
|
|
type:
|
|
$ref: ../../external/payment_method_type.yaml#/components/schemas/PaymentMethodType
|
|
data:
|
|
type: object
|
|
additionalProperties: true
|
|
isMain:
|
|
type: boolean
|