# ExactDestination


[API catalog](/reference/api/) · [Docker Sandboxes overview](/reference/api/sandboxes/latest/) · [Product manual](https://docs.docker.com/ai/sandboxes-api/) · [OpenAPI specification](/reference/api/sandboxes/api.yaml)

API version: v1


> This API is experimental. Features, interfaces,
> and behavior may change.




Schema constraints and annotations:

```json
{
  "description": "ExactDestination uses destination.v1 canonical selector values, never legacy glob syntax.",
  "properties": {
    "kind": {
      "$ref": "#/components/schemas/ExactDestinationKind",
      "description": "kind selects a destination.v1 matching rule.",
      "not": {
        "enum": [
          "unspecified"
        ]
      }
    },
    "port": {
      "description": "An absent port matches all numeric ports; zero is invalid when present.",
      "maximum": 65535,
      "minimum": 1,
      "type": [
        "integer",
        "null"
      ]
    },
    "value": {
      "description": "value is canonical for its kind and contains no legacy selector syntax.",
      "minLength": 1,
      "type": "string"
    }
  },
  "required": [
    "kind",
    "value"
  ],
  "title": "ExactDestination",
  "type": "object"
}
```



