View | Details | Raw Unified | Return to bug 27855
Collapse All | Expand All

(-)a/api/v1/swagger/definitions/extended_attribute.json (-1 / +24 lines)
Line 0 Link Here
0
- 
1
{
2
  "type": "object",
3
  "properties": {
4
    "extended_attribute_id": {
5
      "description": "Internal ID for the extended attribute",
6
      "type": "integer"
7
    },
8
    "type": {
9
      "description": "Extended attribute type",
10
      "type": "string"
11
    },
12
    "value": {
13
      "description": "Extended attribute value",
14
      "type": [
15
        "string"
16
      ]
17
    }
18
  },
19
  "additionalProperties": false,
20
  "required": [
21
    "type",
22
    "value"
23
  ]
24
}

Return to bug 27855