# ScheduleJobRequest Properties

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.durablejobs/orleans.durablejobs.schedulejobrequest/)

## DueTime {#duetime-e0073fbe}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.durablejobs/orleans.durablejobs.schedulejobrequest/properties/duetime-e0073fbe/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Orleans.DurableJobs/ScheduleJobRequest.cs)

```csharp
public DateTimeOffset DueTime
```

Gets the date and time when the job should be executed.

## JobName {#jobname-091d5174}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.durablejobs/orleans.durablejobs.schedulejobrequest/properties/jobname-091d5174/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Orleans.DurableJobs/ScheduleJobRequest.cs)

```csharp
public string JobName
```

Gets the name of the job for identification purposes.

## Metadata {#metadata-a8f70e00}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.durablejobs/orleans.durablejobs.schedulejobrequest/properties/metadata-a8f70e00/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Orleans.DurableJobs/ScheduleJobRequest.cs)

```csharp
public IReadOnlyDictionary<string, string>? Metadata
```

Gets optional metadata associated with the job.

## Target {#target-9b53dc02}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.durablejobs/orleans.durablejobs.schedulejobrequest/properties/target-9b53dc02/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Orleans.DurableJobs/ScheduleJobRequest.cs)

```csharp
public GrainId Target
```

Gets the grain identifier of the target grain that will receive the durable job.

## TraceParent {#traceparent-b860cff0}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.durablejobs/orleans.durablejobs.schedulejobrequest/properties/traceparent-b860cff0/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Orleans.DurableJobs/ScheduleJobRequest.cs)

```csharp
public string? TraceParent
```

Gets the W3C `traceparent` value to associate with the scheduled job, used to continue the distributed trace when the job is later executed. If `null`, the value of `System.Diagnostics.Activity.Current` at the time [ILocalDurableJobManager](/orleans/docs/api/csharp/microsoft.orleans.durablejobs/orleans.durablejobs.ilocaldurablejobmanager/) is invoked will be used.

## TraceState {#tracestate-6717f065}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.durablejobs/orleans.durablejobs.schedulejobrequest/properties/tracestate-6717f065/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Orleans.DurableJobs/ScheduleJobRequest.cs)

```csharp
public string? TraceState
```

Gets the W3C `tracestate` value to associate with the scheduled job, used to continue the distributed trace when the job is later executed. If `null`, the value of `System.Diagnostics.Activity.Current` at the time [ILocalDurableJobManager](/orleans/docs/api/csharp/microsoft.orleans.durablejobs/orleans.durablejobs.ilocaldurablejobmanager/) is invoked will be used.
