{
  "$id": "https://intentschema.org/intents/productivity/contacts/contact/delete/v1.json",
  "fqdn": "org.intentschema.productivity.contacts.contact.delete.v1",
  "title": "Delete contact",
  "description": "Delete a contact record. On most providers this is permanent and unrecoverable.",
  "payload": {
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "type": "object",
    "required": [
      "target"
    ],
    "properties": {
      "target": {
        "allOf": [
          {
            "$ref": "https://intentschema.org/common/target/v1.json"
          },
          {
            "required": [
              "external_id"
            ]
          }
        ]
      },
      "idempotency_key": {
        "type": "string"
      }
    }
  },
  "result": {
    "type": "object",
    "properties": {
      "external_id": {
        "type": "string"
      },
      "deleted_at": {
        "type": "string",
        "format": "date-time"
      }
    }
  },
  "examples": [
    {
      "name": "delete",
      "value": {
        "target": {
          "system": "google_contacts",
          "external_id": "contact_abc"
        }
      }
    }
  ]
}
