Nest Found Notification

Schemas

Body

{
  "type": "object",
  "properties": {
    "to": {
      "type": "string",
      "description": "Nido's Firebase ID"
    },
    "data": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string",
          "description": "nest_results always"
        },
        "job_id": {
          "type": "number",
          "multipleOf": 1,
          "description": "The ID of the job for wich the Dodo applied"
        },
        "count": {
          "type": "number",
          "multipleOf": 1,
          "description": "The number of candidates that applied for this job"
        }
      },
      "required": [
        "type",
        "title",
        "description",
        "price",
        "latitude",
        "longitude",
        "accuracy",
        "job_id",
        "epoch",
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "to",
    "data"
  ],
  "additionalProperties": false
}

Rules

  • Will notify the user about the number of candidates found for the posted job. Two minutes after creation.