addedInput schema / properties / color / description
Added value: +"Six-character hexadecimal label color."
addedInput schema / properties / color / pattern
Added value: +"^[0-9A-Fa-f]{6}$"
changedInput schema / properties / description / anyOf
Previous value: -[
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "maxLength": 65536,
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
addedInput schema / properties / description / description
Added value: +"Optional label description."
removedInput schema / properties / force
Removed value: -{
- "default": false,
- "title": "Force",
- "type": "boolean"
-}
addedInput schema / properties / name / description
Added value: +"New label name."
addedInput schema / properties / name / maxLength
Added value: +100
addedInput schema / properties / name / minLength
Added value: +1
addedInput schema / properties / owner / description
Added value: +"GitHub repository owner or organization login."
addedInput schema / properties / owner / maxLength
Added value: +39
addedInput schema / properties / owner / minLength
Added value: +1
addedInput schema / properties / owner / pattern
Added value: +"^[A-Za-z0-9](?:[A-Za-z0-9-]{0,38})$"
addedInput schema / properties / repo / description
Added value: +"GitHub repository name without the owner prefix."
addedInput schema / properties / repo / maxLength
Added value: +100
addedInput schema / properties / repo / minLength
Added value: +1
addedInput schema / properties / repo / pattern
Added value: +"^[A-Za-z0-9_.-]{1,100}$"
changedOutput schema / description
Previous value: -"Result of creating a label."New value: +"Authoritative outcome of one label creation attempt."
addedOutput schema / properties / precondition_checked
Added value: +{
+ "title": "Precondition Checked",
+ "type": "boolean"
+}
addedOutput schema / properties / readback_completed
Added value: +{
+ "title": "Readback Completed",
+ "type": "boolean"
+}
addedOutput schema / properties / request_id
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Request Id"
+}
addedOutput schema / properties / state_matches_requested
Added value: +{
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "title": "State Matches Requested"
+}
addedOutput schema / properties / warning
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Warning"
+}
addedOutput schema / properties / write_completed
Added value: +{
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "title": "Write Completed"
+}
changedOutput schema / required
Previous value: -[
- "name",
- "url",
- "message"
-]New value: +[
+ "precondition_checked",
+ "write_completed",
+ "readback_completed",
+ "state_matches_requested",
+ "name",
+ "url",
+ "message"
+]
changedOutput schema / title
Previous value: -"LabelCreate"New value: +"LabelCreateResult"