{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://modele-donnees-filiere-enquete.insee.fr/specs/2.3.0/CommandResponse.json",
  "title": "CommandResponse",
  "description": "The command status returned by the command consumer",
  "type": "object",
  "properties": {
    "correlationId": {
      "type": "string",
      "format": "uuid",
      "description": "Unique identifier for the CommandResponse corresponding to the CommandRequest"
    },
    "status": {
      "properties": {
        "code": {
          "type": "string",
          "description": "Return status code",
          "enum": [
            "201",
            "500"
          ]
        },
        "message": {
          "type": "string",
          "description": "Message corresponding to the status code"
        }
      }
    }
  },
  "required": [
    "correlationId",
    "status"
  ]
}