View | Details | Raw Unified | Return to bug 34324
Collapse All | Expand All

(-)a/api/v1/swagger/definitions/additional_field_value.yaml (+17 lines)
Line 0 Link Here
1
---
2
type: object
3
properties:
4
  id:
5
    description: id of the field
6
    type: string
7
    readOnly: true
8
  field_id:
9
    type: integer
10
    description: FK in corresponding to id in additional_fields table
11
  record_id:
12
    description: ID corresponding to the object ID this additional field relates to
13
    type: string
14
  value:
15
    description: value of the additional field
16
    type: string
17
additionalProperties: false
(-)a/api/v1/swagger/swagger.yaml (-1 / +2 lines)
Lines 6-11 definitions: Link Here
6
    $ref: ./definitions/account_line.yaml
6
    $ref: ./definitions/account_line.yaml
7
  additional_field:
7
  additional_field:
8
    $ref: ./definitions/additional_field.yaml
8
    $ref: ./definitions/additional_field.yaml
9
  additional_field_value:
10
    $ref: ./definitions/additional_field_value.yaml
9
  advancededitormacro:
11
  advancededitormacro:
10
    $ref: ./definitions/advancededitormacro.yaml
12
    $ref: ./definitions/advancededitormacro.yaml
11
  allows_renewal:
13
  allows_renewal:
12
- 

Return to bug 34324