summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/agent_token_with_token.json
blob: 99d80817d0fca10383760f0994c89a402007948f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  "type": "object",
  "required": [
    "id",
    "name",
    "description",
    "agent_id",
    "status",
    "created_at",
    "created_by_user_id",
    "last_used_at",
    "token"
  ],
  "properties": {
    "id": { "type": "integer" },
    "name": { "type": "string" },
    "description": { "type": ["string", "null"] },
    "agent_id": { "type": "integer" },
    "status": { "type": "string" },
    "created_at": { "type": "string", "format": "date-time" },
    "created_by_user_id": { "type": "integer" },
    "last_used_at": { "type": ["string", "null"], "format": "date-time" },
    "token": { "type": "string" }
  },
  "additionalProperties": false
}