Apideck · Schema

Deduction

IntegrationsUnified API

Properties

Name Type Description
name string The name of the deduction.
amount number The amount deducted.
View JSON Schema on GitHub

JSON Schema

apideck-deduction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Deduction",
  "title": "Deduction",
  "type": "object",
  "x-apideck-schema-id": "Deduction",
  "x-apideck-weights": {
    "name": "critical",
    "amount": "critical"
  },
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the deduction.",
      "example": "Company Car",
      "nullable": true
    },
    "amount": {
      "type": "number",
      "description": "The amount deducted.",
      "example": 10.97,
      "nullable": true
    }
  }
}