Browse Source
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>21.05.x
1 changed files with 24 additions and 0 deletions
@ -0,0 +1,24 @@ |
|||
{ |
|||
"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" |
|||
] |
|||
} |
Loading…
Reference in new issue