$schema: https://json-schema.org/draft/2020-12/schema
$id: ProposalOpportunity.yaml
type: object
properties:
  id:
    $ref: uuid.yaml
    description: The opportunity's unique identifier.
  title:
    type: string
    description: The opportunity's name.
  customFields:
    $ref: '#/$defs/RecordCustomField'
    description: The opportunity's custom fields.
required:
  - id
unevaluatedProperties:
  not: {}
description: The opportunity to which this proposal is related
$defs:
  RecordCustomField:
    type: object
    properties: {}
    unevaluatedProperties:
      $ref: CustomField.yaml
