changedInput schema / properties / assignees / anyOf
Previous value: -[
- {
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "items": {
+ "maxLength": 39,
+ "minLength": 1,
+ "pattern": "^(?:@me|[A-Za-z0-9](?:[A-Za-z0-9-]{0,38}))$",
+ "type": "string"
+ },
+ "maxItems": 10,
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+]
addedInput schema / properties / assignees / description
Added value: +"Optional GitHub user logins or the @me selector to assign."
changedInput schema / properties / body / anyOf
Previous value: -[
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "maxLength": 65536,
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
addedInput schema / properties / body / description
Added value: +"Optional Markdown issue body."
changedInput schema / properties / labels / anyOf
Previous value: -[
- {
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "items": {
+ "maxLength": 100,
+ "minLength": 1,
+ "type": "string"
+ },
+ "maxItems": 100,
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+]
addedInput schema / properties / labels / description
Added value: +"Optional labels to apply."
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}$"
addedInput schema / properties / title / description
Added value: +"Issue title."
addedInput schema / properties / title / maxLength
Added value: +256
addedInput schema / properties / title / minLength
Added value: +1
changedOutput schema / description
Previous value: -"Result of creating an issue."New value: +"Authoritative outcome of one issue creation attempt."
addedOutput schema / properties / number / minimum
Added value: +0
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: -[
- "number",
- "title",
- "url",
- "message"
-]New value: +[
+ "precondition_checked",
+ "write_completed",
+ "readback_completed",
+ "state_matches_requested",
+ "number",
+ "title",
+ "url",
+ "message"
+]
changedOutput schema / title
Previous value: -"IssueCreate"New value: +"IssueCreateResult"