Main Koha release repository
https://koha-community.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
600 B
26 lines
600 B
{
|
|
"type": "object",
|
|
"properties": {
|
|
"macro_id": {
|
|
"$ref": "../x-primitives.json#/advancededitormacro_id"
|
|
},
|
|
"name": {
|
|
"description": "macro name",
|
|
"type": "string"
|
|
},
|
|
"macro_text": {
|
|
"description": "macro text",
|
|
"type": ["string", "null"]
|
|
},
|
|
"patron_id": {
|
|
"description": "borrower number",
|
|
"type": ["integer", "null"]
|
|
},
|
|
"shared": {
|
|
"description": "is macro shared",
|
|
"type": ["boolean", "null"]
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"required": ["name", "macro_text", "patron_id", "shared"]
|
|
}
|
|
|