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 repository description."
removedInput schema / properties / name
Removed value: -{
- "title": "Name",
- "type": "string"
-}
addedInput schema / properties / owner
Added value: +{
+ "description": "GitHub repository owner or organization login.",
+ "maxLength": 39,
+ "minLength": 1,
+ "pattern": "^[A-Za-z0-9](?:[A-Za-z0-9-]{0,38})$",
+ "title": "Owner",
+ "type": "string"
+}
addedInput schema / properties / repo
Added value: +{
+ "description": "GitHub repository name without the owner prefix.",
+ "maxLength": 100,
+ "minLength": 1,
+ "pattern": "^[A-Za-z0-9_.-]{1,100}$",
+ "title": "Repo",
+ "type": "string"
+}
changedInput schema / required
Previous value: -[
- "name"
-]New value: +[
+ "owner",
+ "repo"
+]
changedOutput schema / description
Previous value: -"Result of creating a repository."New value: +"Authoritative outcome of one exact-target repository creation attempt."
addedOutput schema / properties / description
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Description"
+}
addedOutput schema / properties / initialized
Added value: +{
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Initialized"
+}
addedOutput schema / properties / is_private
Added value: +{
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Is Private"
+}
removedOutput schema / properties / message
Removed value: -{
- "title": "Message",
- "type": "string"
-}
removedOutput schema / properties / name
Removed value: -{
- "title": "Name",
- "type": "string"
-}
addedOutput schema / properties / name_with_owner
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Name With Owner"
+}
addedOutput schema / properties / owner
Added value: +{
+ "maxLength": 39,
+ "minLength": 1,
+ "title": "Owner",
+ "type": "string"
+}
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 / repo
Added value: +{
+ "maxLength": 100,
+ "minLength": 1,
+ "title": "Repo",
+ "type": "string"
+}
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 / url / anyOf
Added value: +[
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
addedOutput schema / properties / url / default
Added value: +null
removedOutput schema / properties / url / type
Removed value: -"string"
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",
+ "owner",
+ "repo"
+]
changedOutput schema / title
Previous value: -"RepoCreate"New value: +"RepositoryCreateResult"