summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/agent_token_basic.json
blob: 90d9f35d0e17d034e7ddd7ee40e114117d1634d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "type": "object",
  "required": [
    "id",
    "name",
    "description",
    "agent_id",
    "status",
    "created_at",
    "created_by_user_id"
  ],
  "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" }
  },
  "additionalProperties": false
}