Hint Health · Schema

Public.PaymentBlueprint_one

Direct Primary CareDPCHealthcareMembership ManagementPatient EnrollmentMedical BillingEMRHealth Plans

Properties

Name Type Description
id string
error_message string
memo string
status string
date string
amount_in_cents integer
external boolean
external_type string
source object
View JSON Schema on GitHub

JSON Schema

public-paymentblueprint_one.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.hint.com/schemas/public-paymentblueprint_one",
  "title": "Public.PaymentBlueprint_one",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "error_message": {
      "type": "string"
    },
    "memo": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "date": {
      "type": "string",
      "format": "date-time"
    },
    "amount_in_cents": {
      "type": "integer",
      "format": "int32"
    },
    "external": {
      "type": "boolean"
    },
    "external_type": {
      "type": "string"
    },
    "source": {
      "$ref": "#/components/schemas/Public.SourceBlueprint_leaf"
    }
  }
}