summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/artifact.json
blob: 9df957b149846546c44ba5650fb4972cb2d7fa04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "type": "object",
  "required": [
    "file_type",
    "size",
    "filename",
    "file_format"
  ],
  "properties": {
    "file_type": { "type": "string"},
    "size": { "type": "integer"},
    "filename": { "type": "string"},
    "file_format": { "type": "string"}
  },
  "additionalProperties": false
}