Koha/api/v1/swagger/definitions/extended_attribute.json
Tomas Cohen Arazi d77a1226df Bug 27855: Add extended_attribute OpenAPI spec
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2021-03-09 10:31:47 +01:00

24 lines
452 B
JSON

{
"type": "object",
"properties": {
"extended_attribute_id": {
"description": "Internal ID for the extended attribute",
"type": "integer"
},
"type": {
"description": "Extended attribute type",
"type": "string"
},
"value": {
"description": "Extended attribute value",
"type": [
"string"
]
}
},
"additionalProperties": false,
"required": [
"type",
"value"
]
}