diff --git a/cargo-typify/tests/outputs/attr.rs b/cargo-typify/tests/outputs/attr.rs
index f61ba2b3..6ddaa365 100644
--- a/cargo-typify/tests/outputs/attr.rs
+++ b/cargo-typify/tests/outputs/attr.rs
@@ -30,18 +30,6 @@ pub mod error {
}
}
#[doc = "`Fruit`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"additionalProperties\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[extra_attr]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(transparent)]
@@ -69,32 +57,6 @@ impl ::std::convert::From<::std::collections::HashMap<::std::string::String, ::s
}
}
#[doc = "`FruitOrVeg`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"title\": \"veg\","]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/defs/veggie\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"title\": \"fruit\","]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/defs/fruit\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[extra_attr]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
@@ -113,29 +75,6 @@ impl ::std::convert::From for FruitOrVeg {
}
}
#[doc = "`Veggie`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"veggieLike\","]
-#[doc = " \"veggieName\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"veggieLike\": {"]
-#[doc = " \"description\": \"Do I like this vegetable?\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"veggieName\": {"]
-#[doc = " \"description\": \"The name of the vegetable.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[extra_attr]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
pub struct Veggie {
@@ -147,32 +86,6 @@ pub struct Veggie {
pub veggie_name: ::std::string::String,
}
#[doc = "A representation of a person, company, organization, or place"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"$id\": \"https://example.com/arrays.schema.json\","]
-#[doc = " \"title\": \"veggies\","]
-#[doc = " \"description\": \"A representation of a person, company, organization, or place\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"fruits\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"vegetables\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/$defs/veggie\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[extra_attr]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
pub struct Veggies {
diff --git a/cargo-typify/tests/outputs/builder.rs b/cargo-typify/tests/outputs/builder.rs
index c6b8f541..cfacf1d7 100644
--- a/cargo-typify/tests/outputs/builder.rs
+++ b/cargo-typify/tests/outputs/builder.rs
@@ -30,18 +30,6 @@ pub mod error {
}
}
#[doc = "`Fruit`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"additionalProperties\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(transparent)]
pub struct Fruit(pub ::std::collections::HashMap<::std::string::String, ::std::string::String>);
@@ -68,32 +56,6 @@ impl ::std::convert::From<::std::collections::HashMap<::std::string::String, ::s
}
}
#[doc = "`FruitOrVeg`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"title\": \"veg\","]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/defs/veggie\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"title\": \"fruit\","]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/defs/fruit\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum FruitOrVeg {
@@ -111,29 +73,6 @@ impl ::std::convert::From for FruitOrVeg {
}
}
#[doc = "`Veggie`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"veggieLike\","]
-#[doc = " \"veggieName\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"veggieLike\": {"]
-#[doc = " \"description\": \"Do I like this vegetable?\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"veggieName\": {"]
-#[doc = " \"description\": \"The name of the vegetable.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
pub struct Veggie {
#[doc = "Do I like this vegetable?"]
@@ -149,32 +88,6 @@ impl Veggie {
}
}
#[doc = "A representation of a person, company, organization, or place"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"$id\": \"https://example.com/arrays.schema.json\","]
-#[doc = " \"title\": \"veggies\","]
-#[doc = " \"description\": \"A representation of a person, company, organization, or place\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"fruits\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"vegetables\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/$defs/veggie\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
pub struct Veggies {
#[serde(default, skip_serializing_if = "::std::vec::Vec::is_empty")]
diff --git a/cargo-typify/tests/outputs/custom_btree_map.rs b/cargo-typify/tests/outputs/custom_btree_map.rs
index efd1cdaf..56f36266 100644
--- a/cargo-typify/tests/outputs/custom_btree_map.rs
+++ b/cargo-typify/tests/outputs/custom_btree_map.rs
@@ -30,18 +30,6 @@ pub mod error {
}
}
#[doc = "`Fruit`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"additionalProperties\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(transparent)]
pub struct Fruit(pub ::std::collections::BTreeMap<::std::string::String, ::std::string::String>);
@@ -69,32 +57,6 @@ impl
}
}
#[doc = "`FruitOrVeg`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"title\": \"veg\","]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/defs/veggie\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"title\": \"fruit\","]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/defs/fruit\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum FruitOrVeg {
@@ -112,29 +74,6 @@ impl ::std::convert::From for FruitOrVeg {
}
}
#[doc = "`Veggie`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"veggieLike\","]
-#[doc = " \"veggieName\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"veggieLike\": {"]
-#[doc = " \"description\": \"Do I like this vegetable?\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"veggieName\": {"]
-#[doc = " \"description\": \"The name of the vegetable.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
pub struct Veggie {
#[doc = "Do I like this vegetable?"]
@@ -150,32 +89,6 @@ impl Veggie {
}
}
#[doc = "A representation of a person, company, organization, or place"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"$id\": \"https://example.com/arrays.schema.json\","]
-#[doc = " \"title\": \"veggies\","]
-#[doc = " \"description\": \"A representation of a person, company, organization, or place\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"fruits\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"vegetables\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/$defs/veggie\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
pub struct Veggies {
#[serde(default, skip_serializing_if = "::std::vec::Vec::is_empty")]
diff --git a/cargo-typify/tests/outputs/derive.rs b/cargo-typify/tests/outputs/derive.rs
index 5fb3b4f0..934f15f2 100644
--- a/cargo-typify/tests/outputs/derive.rs
+++ b/cargo-typify/tests/outputs/derive.rs
@@ -30,18 +30,6 @@ pub mod error {
}
}
#[doc = "`Fruit`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"additionalProperties\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, ExtraDerive)]
#[serde(transparent)]
pub struct Fruit(pub ::std::collections::HashMap<::std::string::String, ::std::string::String>);
@@ -68,32 +56,6 @@ impl ::std::convert::From<::std::collections::HashMap<::std::string::String, ::s
}
}
#[doc = "`FruitOrVeg`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"title\": \"veg\","]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/defs/veggie\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"title\": \"fruit\","]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/defs/fruit\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, ExtraDerive)]
#[serde(untagged)]
pub enum FruitOrVeg {
@@ -111,29 +73,6 @@ impl ::std::convert::From for FruitOrVeg {
}
}
#[doc = "`Veggie`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"veggieLike\","]
-#[doc = " \"veggieName\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"veggieLike\": {"]
-#[doc = " \"description\": \"Do I like this vegetable?\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"veggieName\": {"]
-#[doc = " \"description\": \"The name of the vegetable.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, ExtraDerive)]
pub struct Veggie {
#[doc = "Do I like this vegetable?"]
@@ -144,32 +83,6 @@ pub struct Veggie {
pub veggie_name: ::std::string::String,
}
#[doc = "A representation of a person, company, organization, or place"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"$id\": \"https://example.com/arrays.schema.json\","]
-#[doc = " \"title\": \"veggies\","]
-#[doc = " \"description\": \"A representation of a person, company, organization, or place\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"fruits\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"vegetables\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/$defs/veggie\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default, ExtraDerive)]
pub struct Veggies {
#[serde(default, skip_serializing_if = "::std::vec::Vec::is_empty")]
diff --git a/cargo-typify/tests/outputs/multi_derive.rs b/cargo-typify/tests/outputs/multi_derive.rs
index fae5f058..1dd379a8 100644
--- a/cargo-typify/tests/outputs/multi_derive.rs
+++ b/cargo-typify/tests/outputs/multi_derive.rs
@@ -30,18 +30,6 @@ pub mod error {
}
}
#[doc = "`Fruit`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"additionalProperties\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize, :: serde :: Serialize, AnotherDerive, Clone, Debug, ExtraDerive,
)]
@@ -70,32 +58,6 @@ impl ::std::convert::From<::std::collections::HashMap<::std::string::String, ::s
}
}
#[doc = "`FruitOrVeg`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"title\": \"veg\","]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/defs/veggie\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"title\": \"fruit\","]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/defs/fruit\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize, :: serde :: Serialize, AnotherDerive, Clone, Debug, ExtraDerive,
)]
@@ -115,29 +77,6 @@ impl ::std::convert::From for FruitOrVeg {
}
}
#[doc = "`Veggie`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"veggieLike\","]
-#[doc = " \"veggieName\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"veggieLike\": {"]
-#[doc = " \"description\": \"Do I like this vegetable?\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"veggieName\": {"]
-#[doc = " \"description\": \"The name of the vegetable.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize, :: serde :: Serialize, AnotherDerive, Clone, Debug, ExtraDerive,
)]
@@ -150,32 +89,6 @@ pub struct Veggie {
pub veggie_name: ::std::string::String,
}
#[doc = "A representation of a person, company, organization, or place"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"$id\": \"https://example.com/arrays.schema.json\","]
-#[doc = " \"title\": \"veggies\","]
-#[doc = " \"description\": \"A representation of a person, company, organization, or place\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"fruits\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"vegetables\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/$defs/veggie\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
diff --git a/cargo-typify/tests/outputs/no-builder.rs b/cargo-typify/tests/outputs/no-builder.rs
index 5facd8bc..c51dd093 100644
--- a/cargo-typify/tests/outputs/no-builder.rs
+++ b/cargo-typify/tests/outputs/no-builder.rs
@@ -30,18 +30,6 @@ pub mod error {
}
}
#[doc = "`Fruit`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"additionalProperties\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(transparent)]
pub struct Fruit(pub ::std::collections::HashMap<::std::string::String, ::std::string::String>);
@@ -68,32 +56,6 @@ impl ::std::convert::From<::std::collections::HashMap<::std::string::String, ::s
}
}
#[doc = "`FruitOrVeg`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"title\": \"veg\","]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/defs/veggie\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"title\": \"fruit\","]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/defs/fruit\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum FruitOrVeg {
@@ -111,29 +73,6 @@ impl ::std::convert::From for FruitOrVeg {
}
}
#[doc = "`Veggie`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"veggieLike\","]
-#[doc = " \"veggieName\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"veggieLike\": {"]
-#[doc = " \"description\": \"Do I like this vegetable?\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"veggieName\": {"]
-#[doc = " \"description\": \"The name of the vegetable.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
pub struct Veggie {
#[doc = "Do I like this vegetable?"]
@@ -144,32 +83,6 @@ pub struct Veggie {
pub veggie_name: ::std::string::String,
}
#[doc = "A representation of a person, company, organization, or place"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"$id\": \"https://example.com/arrays.schema.json\","]
-#[doc = " \"title\": \"veggies\","]
-#[doc = " \"description\": \"A representation of a person, company, organization, or place\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"fruits\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"vegetables\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/$defs/veggie\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
pub struct Veggies {
#[serde(default, skip_serializing_if = "::std::vec::Vec::is_empty")]
diff --git a/typify-impl/src/enums.rs b/typify-impl/src/enums.rs
index 4be20fda..43bbbc0f 100644
--- a/typify-impl/src/enums.rs
+++ b/typify-impl/src/enums.rs
@@ -1474,19 +1474,8 @@ mod tests {
let mut output = OutputSpace::default();
type_entry.output(&type_space, &mut output);
let actual = output.into_stream();
- let schema_json = serde_json::to_string_pretty(&original_schema).unwrap();
- let schema_lines = schema_json.lines();
let expected = quote! {
#[doc = "`ResultX`"]
- ///
- /// JSON schema
- ///
- /// ```json
- #(
- #[doc = #schema_lines]
- )*
- /// ```
- ///
#[derive(::serde::Deserialize, ::serde::Serialize, Clone, Debug)]
pub enum ResultX {
Ok(u32),
@@ -1526,13 +1515,6 @@ mod tests {
let actual = output.into_stream();
let expected = quote! {
#[doc = "`ResultX`"]
- ///
- /// JSON schema
- ///
- /// ```json
- #[doc = "true"]
- /// ```
- ///
#[derive(::serde::Deserialize, ::serde::Serialize, A, B, C, Clone, D, Debug)]
pub enum ResultX {
Ok(u32),
diff --git a/typify-impl/src/type_entry.rs b/typify-impl/src/type_entry.rs
index 4ad8ea1e..4be2ee18 100644
--- a/typify-impl/src/type_entry.rs
+++ b/typify-impl/src/type_entry.rs
@@ -779,10 +779,10 @@ impl TypeEntry {
variants,
deny_unknown_fields,
bespoke_impls,
- schema: SchemaWrapper(schema),
+ schema: _,
} = enum_details;
- let doc = make_doc(name, description.as_ref(), schema);
+ let doc = make_doc(name, description.as_ref());
// TODO this is a one-off for some useful traits; this should move into
// the creation of the enum type.
@@ -1108,9 +1108,9 @@ impl TypeEntry {
default,
properties,
deny_unknown_fields,
- schema: SchemaWrapper(schema),
+ schema: _,
} = struct_details;
- let doc = make_doc(name, description.as_ref(), schema);
+ let doc = make_doc(name, description.as_ref());
// Generate the serde directives as needed.
let mut serde_options = Vec::new();
@@ -1366,9 +1366,9 @@ impl TypeEntry {
default,
type_id,
constraints,
- schema: SchemaWrapper(schema),
+ schema: _,
} = newtype_details;
- let doc = make_doc(name, description.as_ref(), schema);
+ let doc = make_doc(name, description.as_ref());
let type_name = format_ident!("{}", name);
let inner_type = type_space.id_to_entry.get(type_id).unwrap();
@@ -2027,25 +2027,13 @@ impl TypeEntry {
}
}
-fn make_doc(name: &str, description: Option<&String>, schema: &Schema) -> TokenStream {
+fn make_doc(name: &str, description: Option<&String>) -> TokenStream {
let desc = match description {
Some(desc) => desc,
None => &format!("`{}`", name),
};
- let schema_json = serde_json::to_string_pretty(schema).unwrap();
- let schema_lines = schema_json.lines();
- quote! {
- #[doc = #desc]
- ///
- /// JSON schema
- ///
- /// ```json
- #(
- #[doc = #schema_lines]
- )*
- /// ```
- ///
- }
+
+ quote! { #[doc = #desc] }
}
fn strings_to_derives<'a>(
diff --git a/typify-impl/tests/generator.out b/typify-impl/tests/generator.out
index a80113dd..c4108ca1 100644
--- a/typify-impl/tests/generator.out
+++ b/typify-impl/tests/generator.out
@@ -26,24 +26,6 @@ mod types {
}
}
#[doc = "`AllTheTraits`"]
- #[doc = r""]
- #[doc = r" JSON schema
"]
- #[doc = r""]
- #[doc = r" ```json"]
- #[doc = "{"]
- #[doc = " \"title\": \"AllTheTraits\","]
- #[doc = " \"type\": \"object\","]
- #[doc = " \"required\": ["]
- #[doc = " \"ok\""]
- #[doc = " ],"]
- #[doc = " \"properties\": {"]
- #[doc = " \"ok\": {"]
- #[doc = " \"type\": \"string\""]
- #[doc = " }"]
- #[doc = " }"]
- #[doc = "}"]
- #[doc = r" ```"]
- #[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -65,30 +47,6 @@ mod types {
}
}
#[doc = "`CompoundType`"]
- #[doc = r""]
- #[doc = r" JSON schema
"]
- #[doc = r""]
- #[doc = r" ```json"]
- #[doc = "{"]
- #[doc = " \"title\": \"CompoundType\","]
- #[doc = " \"type\": \"object\","]
- #[doc = " \"required\": ["]
- #[doc = " \"value1\","]
- #[doc = " \"value2\""]
- #[doc = " ],"]
- #[doc = " \"properties\": {"]
- #[doc = " \"value1\": {"]
- #[doc = " \"type\": \"string\""]
- #[doc = " },"]
- #[doc = " \"value2\": {"]
- #[doc = " \"type\": \"integer\","]
- #[doc = " \"format\": \"uint64\","]
- #[doc = " \"minimum\": 0.0"]
- #[doc = " }"]
- #[doc = " }"]
- #[doc = "}"]
- #[doc = r" ```"]
- #[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, JsonSchema)]
pub struct CompoundType {
pub value1: ::std::string::String,
@@ -100,26 +58,6 @@ mod types {
}
}
#[doc = "`Pair`"]
- #[doc = r""]
- #[doc = r" JSON schema
"]
- #[doc = r""]
- #[doc = r" ```json"]
- #[doc = "{"]
- #[doc = " \"title\": \"Pair\","]
- #[doc = " \"type\": \"object\","]
- #[doc = " \"properties\": {"]
- #[doc = " \"a\": {"]
- #[doc = " \"default\": \"One\","]
- #[doc = " \"$ref\": \"#/definitions/StringEnum\""]
- #[doc = " },"]
- #[doc = " \"b\": {"]
- #[doc = " \"default\": \"Two\","]
- #[doc = " \"$ref\": \"#/definitions/StringEnum\""]
- #[doc = " }"]
- #[doc = " }"]
- #[doc = "}"]
- #[doc = r" ```"]
- #[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, JsonSchema)]
pub struct Pair {
#[serde(default = "defaults::pair_a")]
@@ -141,20 +79,6 @@ mod types {
}
}
#[doc = "`StringEnum`"]
- #[doc = r""]
- #[doc = r" JSON schema
"]
- #[doc = r""]
- #[doc = r" ```json"]
- #[doc = "{"]
- #[doc = " \"type\": \"string\","]
- #[doc = " \"enum\": ["]
- #[doc = " \"One\","]
- #[doc = " \"Two\","]
- #[doc = " \"BuckleMyShoe\""]
- #[doc = " ]"]
- #[doc = "}"]
- #[doc = r" ```"]
- #[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
diff --git a/typify-impl/tests/github.out b/typify-impl/tests/github.out
index e2647941..71460719 100644
--- a/typify-impl/tests/github.out
+++ b/typify-impl/tests/github.out
@@ -25,86 +25,6 @@ pub mod error {
}
}
#[doc = "`AlertInstance`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Alert Instance\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"analysis_key\","]
-#[doc = " \"environment\","]
-#[doc = " \"ref\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"analysis_key\": {"]
-#[doc = " \"description\": \"Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"classifications\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"commit_sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"environment\": {"]
-#[doc = " \"description\": \"Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"location\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"end_column\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"end_line\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"path\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"start_column\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"start_line\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"message\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"text\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"description\": \"The full Git reference, formatted as `refs/heads/`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of a code scanning alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"dismissed\","]
-#[doc = " \"fixed\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct AlertInstance {
@@ -127,33 +47,6 @@ pub struct AlertInstance {
pub state: AlertInstanceState,
}
#[doc = "`AlertInstanceLocation`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"end_column\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"end_line\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"path\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"start_column\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"start_line\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct AlertInstanceLocation {
@@ -169,21 +62,6 @@ pub struct AlertInstanceLocation {
pub start_line: ::std::option::Option,
}
#[doc = "`AlertInstanceMessage`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"text\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct AlertInstanceMessage {
@@ -191,21 +69,6 @@ pub struct AlertInstanceMessage {
pub text: ::std::option::Option<::std::string::String>,
}
#[doc = "State of a code scanning alert."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"State of a code scanning alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"dismissed\","]
-#[doc = " \"fixed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -261,370 +124,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AlertInstanceState {
}
}
#[doc = "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"App\","]
-#[doc = " \"description\": \"GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"external_url\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"owner\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"events\": {"]
-#[doc = " \"description\": \"The list of events for the GitHub app\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"check_run\","]
-#[doc = " \"check_suite\","]
-#[doc = " \"code_scanning_alert\","]
-#[doc = " \"commit_comment\","]
-#[doc = " \"content_reference\","]
-#[doc = " \"create\","]
-#[doc = " \"delete\","]
-#[doc = " \"deployment\","]
-#[doc = " \"deployment_review\","]
-#[doc = " \"deployment_status\","]
-#[doc = " \"deploy_key\","]
-#[doc = " \"discussion\","]
-#[doc = " \"discussion_comment\","]
-#[doc = " \"fork\","]
-#[doc = " \"gollum\","]
-#[doc = " \"issues\","]
-#[doc = " \"issue_comment\","]
-#[doc = " \"label\","]
-#[doc = " \"member\","]
-#[doc = " \"membership\","]
-#[doc = " \"milestone\","]
-#[doc = " \"organization\","]
-#[doc = " \"org_block\","]
-#[doc = " \"page_build\","]
-#[doc = " \"project\","]
-#[doc = " \"project_card\","]
-#[doc = " \"project_column\","]
-#[doc = " \"public\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"pull_request_review\","]
-#[doc = " \"pull_request_review_comment\","]
-#[doc = " \"push\","]
-#[doc = " \"registry_package\","]
-#[doc = " \"release\","]
-#[doc = " \"repository\","]
-#[doc = " \"repository_dispatch\","]
-#[doc = " \"secret_scanning_alert\","]
-#[doc = " \"star\","]
-#[doc = " \"status\","]
-#[doc = " \"team\","]
-#[doc = " \"team_add\","]
-#[doc = " \"watch\","]
-#[doc = " \"workflow_dispatch\","]
-#[doc = " \"workflow_run\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"external_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the GitHub app\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the GitHub app\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"owner\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"permissions\": {"]
-#[doc = " \"description\": \"The set of permissions for the GitHub app\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"actions\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"administration\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"checks\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"content_references\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"contents\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"deployments\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"discussions\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"emails\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"environments\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"issues\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"members\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"metadata\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_administration\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_hooks\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_packages\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_plan\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_projects\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_secrets\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_self_hosted_runners\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_user_blocking\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"packages\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"pages\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository_hooks\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository_projects\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"secret_scanning_alerts\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"secrets\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"security_events\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"security_scanning_alert\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"single_file\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"statuses\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"team_discussions\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"vulnerability_alerts\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"workflows\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"slug\": {"]
-#[doc = " \"description\": \"The slug name of the GitHub app\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct App {
@@ -649,61 +148,6 @@ pub struct App {
pub updated_at: ::chrono::DateTime<::chrono::offset::Utc>,
}
#[doc = "`AppEventsItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"check_run\","]
-#[doc = " \"check_suite\","]
-#[doc = " \"code_scanning_alert\","]
-#[doc = " \"commit_comment\","]
-#[doc = " \"content_reference\","]
-#[doc = " \"create\","]
-#[doc = " \"delete\","]
-#[doc = " \"deployment\","]
-#[doc = " \"deployment_review\","]
-#[doc = " \"deployment_status\","]
-#[doc = " \"deploy_key\","]
-#[doc = " \"discussion\","]
-#[doc = " \"discussion_comment\","]
-#[doc = " \"fork\","]
-#[doc = " \"gollum\","]
-#[doc = " \"issues\","]
-#[doc = " \"issue_comment\","]
-#[doc = " \"label\","]
-#[doc = " \"member\","]
-#[doc = " \"membership\","]
-#[doc = " \"milestone\","]
-#[doc = " \"organization\","]
-#[doc = " \"org_block\","]
-#[doc = " \"page_build\","]
-#[doc = " \"project\","]
-#[doc = " \"project_card\","]
-#[doc = " \"project_column\","]
-#[doc = " \"public\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"pull_request_review\","]
-#[doc = " \"pull_request_review_comment\","]
-#[doc = " \"push\","]
-#[doc = " \"registry_package\","]
-#[doc = " \"release\","]
-#[doc = " \"repository\","]
-#[doc = " \"repository_dispatch\","]
-#[doc = " \"secret_scanning_alert\","]
-#[doc = " \"star\","]
-#[doc = " \"status\","]
-#[doc = " \"team\","]
-#[doc = " \"team_add\","]
-#[doc = " \"watch\","]
-#[doc = " \"workflow_dispatch\","]
-#[doc = " \"workflow_run\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -923,257 +367,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppEventsItem {
}
}
#[doc = "The set of permissions for the GitHub app"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The set of permissions for the GitHub app\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"actions\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"administration\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"checks\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"content_references\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"contents\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"deployments\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"discussions\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"emails\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"environments\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"issues\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"members\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"metadata\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_administration\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_hooks\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_packages\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_plan\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_projects\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_secrets\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_self_hosted_runners\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_user_blocking\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"packages\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"pages\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository_hooks\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository_projects\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"secret_scanning_alerts\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"secrets\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"security_events\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"security_scanning_alert\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"single_file\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"statuses\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"team_discussions\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"vulnerability_alerts\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"workflows\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct AppPermissions {
@@ -1249,19 +442,6 @@ pub struct AppPermissions {
pub workflows: ::std::option::Option,
}
#[doc = "`AppPermissionsActions`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -1313,19 +493,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsActions {
}
}
#[doc = "`AppPermissionsAdministration`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -1377,19 +544,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsAdministra
}
}
#[doc = "`AppPermissionsChecks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -1441,19 +595,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsChecks {
}
}
#[doc = "`AppPermissionsContentReferences`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -1505,19 +646,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsContentRef
}
}
#[doc = "`AppPermissionsContents`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -1569,19 +697,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsContents {
}
}
#[doc = "`AppPermissionsDeployments`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -1633,19 +748,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsDeployment
}
}
#[doc = "`AppPermissionsDiscussions`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -1697,19 +799,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsDiscussion
}
}
#[doc = "`AppPermissionsEmails`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -1761,19 +850,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsEmails {
}
}
#[doc = "`AppPermissionsEnvironments`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -1825,19 +901,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsEnvironmen
}
}
#[doc = "`AppPermissionsIssues`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -1889,19 +952,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsIssues {
}
}
#[doc = "`AppPermissionsMembers`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -1953,19 +1003,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsMembers {
}
}
#[doc = "`AppPermissionsMetadata`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -2017,19 +1054,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsMetadata {
}
}
#[doc = "`AppPermissionsOrganizationAdministration`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -2081,19 +1105,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsOrganizati
}
}
#[doc = "`AppPermissionsOrganizationHooks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -2145,19 +1156,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsOrganizati
}
}
#[doc = "`AppPermissionsOrganizationPackages`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -2209,19 +1207,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsOrganizati
}
}
#[doc = "`AppPermissionsOrganizationPlan`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -2273,19 +1258,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsOrganizati
}
}
#[doc = "`AppPermissionsOrganizationProjects`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -2337,19 +1309,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsOrganizati
}
}
#[doc = "`AppPermissionsOrganizationSecrets`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -2401,19 +1360,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsOrganizati
}
}
#[doc = "`AppPermissionsOrganizationSelfHostedRunners`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -2467,19 +1413,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`AppPermissionsOrganizationUserBlocking`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -2531,19 +1464,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsOrganizati
}
}
#[doc = "`AppPermissionsPackages`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -2595,19 +1515,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsPackages {
}
}
#[doc = "`AppPermissionsPages`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -2659,19 +1566,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsPages {
}
}
#[doc = "`AppPermissionsPullRequests`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -2723,19 +1617,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsPullReques
}
}
#[doc = "`AppPermissionsRepositoryHooks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -2787,19 +1668,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsRepository
}
}
#[doc = "`AppPermissionsRepositoryProjects`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -2851,19 +1719,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsRepository
}
}
#[doc = "`AppPermissionsSecretScanningAlerts`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -2915,19 +1770,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsSecretScan
}
}
#[doc = "`AppPermissionsSecrets`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -2979,19 +1821,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsSecrets {
}
}
#[doc = "`AppPermissionsSecurityEvents`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -3043,19 +1872,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsSecurityEv
}
}
#[doc = "`AppPermissionsSecurityScanningAlert`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -3107,19 +1923,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsSecuritySc
}
}
#[doc = "`AppPermissionsSingleFile`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -3171,19 +1974,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsSingleFile
}
}
#[doc = "`AppPermissionsStatuses`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -3235,19 +2025,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsStatuses {
}
}
#[doc = "`AppPermissionsTeamDiscussions`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -3299,19 +2076,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsTeamDiscus
}
}
#[doc = "`AppPermissionsVulnerabilityAlerts`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -3363,19 +2127,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsVulnerabil
}
}
#[doc = "`AppPermissionsWorkflows`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -3427,28 +2178,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AppPermissionsWorkflows
}
}
#[doc = "How the author is associated with the repository."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"AuthorAssociation\","]
-#[doc = " \"description\": \"How the author is associated with the repository.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"COLLABORATOR\","]
-#[doc = " \"CONTRIBUTOR\","]
-#[doc = " \"FIRST_TIMER\","]
-#[doc = " \"FIRST_TIME_CONTRIBUTOR\","]
-#[doc = " \"MANNEQUIN\","]
-#[doc = " \"MEMBER\","]
-#[doc = " \"NONE\","]
-#[doc = " \"OWNER\""]
-#[doc = " ],"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -3524,172 +2253,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AuthorAssociation {
}
}
#[doc = "The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/en/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) applied to branches that match the name. Binary settings are boolean. Multi-level configurations are one of `off`, `non_admins`, or `everyone`. Actor and build lists are arrays of strings."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"branch protection rule\","]
-#[doc = " \"description\": \"The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/en/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) applied to branches that match the name. Binary settings are boolean. Multi-level configurations are one of `off`, `non_admins`, or `everyone`. Actor and build lists are arrays of strings.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"admin_enforced\","]
-#[doc = " \"allow_deletions_enforcement_level\","]
-#[doc = " \"allow_force_pushes_enforcement_level\","]
-#[doc = " \"authorized_actor_names\","]
-#[doc = " \"authorized_actors_only\","]
-#[doc = " \"authorized_dismissal_actors_only\","]
-#[doc = " \"created_at\","]
-#[doc = " \"dismiss_stale_reviews_on_push\","]
-#[doc = " \"id\","]
-#[doc = " \"ignore_approvals_from_contributors\","]
-#[doc = " \"linear_history_requirement_enforcement_level\","]
-#[doc = " \"merge_queue_enforcement_level\","]
-#[doc = " \"name\","]
-#[doc = " \"pull_request_reviews_enforcement_level\","]
-#[doc = " \"repository_id\","]
-#[doc = " \"require_code_owner_review\","]
-#[doc = " \"required_approving_review_count\","]
-#[doc = " \"required_conversation_resolution_level\","]
-#[doc = " \"required_deployments_enforcement_level\","]
-#[doc = " \"required_status_checks\","]
-#[doc = " \"required_status_checks_enforcement_level\","]
-#[doc = " \"signature_requirement_enforcement_level\","]
-#[doc = " \"strict_required_status_checks_policy\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"admin_enforced\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"allow_deletions_enforcement_level\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"off\","]
-#[doc = " \"non_admins\","]
-#[doc = " \"everyone\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"allow_force_pushes_enforcement_level\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"off\","]
-#[doc = " \"non_admins\","]
-#[doc = " \"everyone\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"authorized_actor_names\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"authorized_actors_only\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"authorized_dismissal_actors_only\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"dismiss_stale_reviews_on_push\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"ignore_approvals_from_contributors\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"linear_history_requirement_enforcement_level\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"off\","]
-#[doc = " \"non_admins\","]
-#[doc = " \"everyone\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"merge_queue_enforcement_level\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"off\","]
-#[doc = " \"non_admins\","]
-#[doc = " \"everyone\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_request_reviews_enforcement_level\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"off\","]
-#[doc = " \"non_admins\","]
-#[doc = " \"everyone\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"require_code_owner_review\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"required_approving_review_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"required_conversation_resolution_level\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"off\","]
-#[doc = " \"non_admins\","]
-#[doc = " \"everyone\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"required_deployments_enforcement_level\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"off\","]
-#[doc = " \"non_admins\","]
-#[doc = " \"everyone\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"required_status_checks\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"required_status_checks_enforcement_level\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"off\","]
-#[doc = " \"non_admins\","]
-#[doc = " \"everyone\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"signature_requirement_enforcement_level\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"off\","]
-#[doc = " \"non_admins\","]
-#[doc = " \"everyone\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"strict_required_status_checks_policy\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct BranchProtectionRule {
@@ -3725,20 +2288,6 @@ pub struct BranchProtectionRule {
pub updated_at: ::chrono::DateTime<::chrono::offset::Utc>,
}
#[doc = "`BranchProtectionRuleAllowDeletionsEnforcementLevel`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"off\","]
-#[doc = " \"non_admins\","]
-#[doc = " \"everyone\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -3796,20 +2345,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`BranchProtectionRuleAllowForcePushesEnforcementLevel`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"off\","]
-#[doc = " \"non_admins\","]
-#[doc = " \"everyone\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -3867,48 +2402,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "Activity related to a branch protection rule. For more information, see \"[About branch protection rules](https://docs.github.com/en/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-rules).\""]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"branch protection rule created event\","]
-#[doc = " \"description\": \"Activity related to a branch protection rule. For more information, see \\\"[About branch protection rules](https://docs.github.com/en/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-rules).\\\"\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"repository\","]
-#[doc = " \"rule\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"rule\": {"]
-#[doc = " \"$ref\": \"#/definitions/branch-protection-rule\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct BranchProtectionRuleCreated {
@@ -3922,18 +2415,6 @@ pub struct BranchProtectionRuleCreated {
pub sender: User,
}
#[doc = "`BranchProtectionRuleCreatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -3981,48 +2462,6 @@ impl ::std::convert::TryFrom<::std::string::String> for BranchProtectionRuleCrea
}
}
#[doc = "Activity related to a branch protection rule. For more information, see \"[About branch protection rules](https://docs.github.com/en/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-rules).\""]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"branch protection rule deleted event\","]
-#[doc = " \"description\": \"Activity related to a branch protection rule. For more information, see \\\"[About branch protection rules](https://docs.github.com/en/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-rules).\\\"\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"repository\","]
-#[doc = " \"rule\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"rule\": {"]
-#[doc = " \"$ref\": \"#/definitions/branch-protection-rule\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct BranchProtectionRuleDeleted {
@@ -4036,18 +2475,6 @@ pub struct BranchProtectionRuleDeleted {
pub sender: User,
}
#[doc = "`BranchProtectionRuleDeletedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -4095,83 +2522,6 @@ impl ::std::convert::TryFrom<::std::string::String> for BranchProtectionRuleDele
}
}
#[doc = "Activity related to a branch protection rule. For more information, see \"[About branch protection rules](https://docs.github.com/en/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-rules).\""]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"branch protection rule edited event\","]
-#[doc = " \"description\": \"Activity related to a branch protection rule. For more information, see \\\"[About branch protection rules](https://docs.github.com/en/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-rules).\\\"\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"repository\","]
-#[doc = " \"rule\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"description\": \"If the action was `edited`, the changes to the rule.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"authorized_actor_names\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"authorized_actors_only\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"rule\": {"]
-#[doc = " \"$ref\": \"#/definitions/branch-protection-rule\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct BranchProtectionRuleEdited {
@@ -4186,18 +2536,6 @@ pub struct BranchProtectionRuleEdited {
pub sender: User,
}
#[doc = "`BranchProtectionRuleEditedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -4245,46 +2583,6 @@ impl ::std::convert::TryFrom<::std::string::String> for BranchProtectionRuleEdit
}
}
#[doc = "If the action was `edited`, the changes to the rule."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"If the action was `edited`, the changes to the rule.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"authorized_actor_names\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"authorized_actors_only\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct BranchProtectionRuleEditedChanges {
@@ -4296,76 +2594,18 @@ pub struct BranchProtectionRuleEditedChanges {
::std::option::Option,
}
#[doc = "`BranchProtectionRuleEditedChangesAuthorizedActorNames`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct BranchProtectionRuleEditedChangesAuthorizedActorNames {
pub from: ::std::vec::Vec<::std::string::String>,
}
#[doc = "`BranchProtectionRuleEditedChangesAuthorizedActorsOnly`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct BranchProtectionRuleEditedChangesAuthorizedActorsOnly {
pub from: bool,
}
#[doc = "`BranchProtectionRuleEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/branch_protection_rule$created\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/branch_protection_rule$deleted\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/branch_protection_rule$edited\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BranchProtectionRuleEvent {
@@ -4389,20 +2629,6 @@ impl ::std::convert::From for BranchProtectionRuleEv
}
}
#[doc = "`BranchProtectionRuleLinearHistoryRequirementEnforcementLevel`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"off\","]
-#[doc = " \"non_admins\","]
-#[doc = " \"everyone\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -4462,20 +2688,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`BranchProtectionRuleMergeQueueEnforcementLevel`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"off\","]
-#[doc = " \"non_admins\","]
-#[doc = " \"everyone\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -4533,20 +2745,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`BranchProtectionRulePullRequestReviewsEnforcementLevel`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"off\","]
-#[doc = " \"non_admins\","]
-#[doc = " \"everyone\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -4604,20 +2802,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`BranchProtectionRuleRequiredConversationResolutionLevel`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"off\","]
-#[doc = " \"non_admins\","]
-#[doc = " \"everyone\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -4675,20 +2859,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`BranchProtectionRuleRequiredDeploymentsEnforcementLevel`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"off\","]
-#[doc = " \"non_admins\","]
-#[doc = " \"everyone\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -4746,20 +2916,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`BranchProtectionRuleRequiredStatusChecksEnforcementLevel`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"off\","]
-#[doc = " \"non_admins\","]
-#[doc = " \"everyone\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -4817,20 +2973,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`BranchProtectionRuleSignatureRequirementEnforcementLevel`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"off\","]
-#[doc = " \"non_admins\","]
-#[doc = " \"everyone\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -4888,288 +3030,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`CheckRunCompleted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"check_run completed event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"check_run\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"check_run\": {"]
-#[doc = " \"description\": \"The [check_run](https://docs.github.com/en/rest/reference/checks#get-a-check-run).\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"app\","]
-#[doc = " \"check_suite\","]
-#[doc = " \"completed_at\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"external_id\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"output\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"started_at\","]
-#[doc = " \"status\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"check_suite\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"after\","]
-#[doc = " \"app\","]
-#[doc = " \"before\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"created_at\","]
-#[doc = " \"head_branch\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"id\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"status\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"after\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"before\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"deployment\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-deployment\""]
-#[doc = " },"]
-#[doc = " \"head_branch\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the head commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The id of the check suite that this check run is part of.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"description\": \"An array of pull requests that match this check suite. A pull request matches a check suite if they have the same `head_sha` and `head_branch`. When the check suite's `head_branch` is in a forked repository it will be `null` and the `pull_requests` array will be empty.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\","]
-#[doc = " \"queued\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"completed_at\": {"]
-#[doc = " \"description\": \"The time the check completed. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"description\": \"The result of the completed check run. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has completed.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " \"skipped\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"details_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"external_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The id of the check.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the check run.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"output\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"annotations_count\","]
-#[doc = " \"annotations_url\","]
-#[doc = " \"summary\","]
-#[doc = " \"text\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"annotations_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"annotations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"text\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"started_at\": {"]
-#[doc = " \"description\": \"The time that the check run began. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"description\": \"The current status of the check run. Can be `queued`, `in_progress`, or `completed`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"requested_action\": {"]
-#[doc = " \"description\": \"The action requested by the user.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"object\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"identifier\": {"]
-#[doc = " \"description\": \"The integrator reference of the action requested by the user.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckRunCompleted {
@@ -5186,18 +3046,6 @@ pub struct CheckRunCompleted {
pub sender: User,
}
#[doc = "`CheckRunCompletedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -5245,242 +3093,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CheckRunCompletedAction
}
}
#[doc = "The [check_run](https://docs.github.com/en/rest/reference/checks#get-a-check-run)."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The [check_run](https://docs.github.com/en/rest/reference/checks#get-a-check-run).\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"app\","]
-#[doc = " \"check_suite\","]
-#[doc = " \"completed_at\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"external_id\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"output\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"started_at\","]
-#[doc = " \"status\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"check_suite\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"after\","]
-#[doc = " \"app\","]
-#[doc = " \"before\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"created_at\","]
-#[doc = " \"head_branch\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"id\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"status\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"after\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"before\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"deployment\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-deployment\""]
-#[doc = " },"]
-#[doc = " \"head_branch\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the head commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The id of the check suite that this check run is part of.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"description\": \"An array of pull requests that match this check suite. A pull request matches a check suite if they have the same `head_sha` and `head_branch`. When the check suite's `head_branch` is in a forked repository it will be `null` and the `pull_requests` array will be empty.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\","]
-#[doc = " \"queued\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"completed_at\": {"]
-#[doc = " \"description\": \"The time the check completed. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"description\": \"The result of the completed check run. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has completed.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " \"skipped\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"details_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"external_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The id of the check.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the check run.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"output\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"annotations_count\","]
-#[doc = " \"annotations_url\","]
-#[doc = " \"summary\","]
-#[doc = " \"text\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"annotations_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"annotations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"text\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"started_at\": {"]
-#[doc = " \"description\": \"The time that the check run began. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"description\": \"The current status of the check run. Can be `queued`, `in_progress`, or `completed`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckRunCompletedCheckRun {
@@ -5511,110 +3123,6 @@ pub struct CheckRunCompletedCheckRun {
pub url: ::std::string::String,
}
#[doc = "`CheckRunCompletedCheckRunCheckSuite`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"after\","]
-#[doc = " \"app\","]
-#[doc = " \"before\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"created_at\","]
-#[doc = " \"head_branch\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"id\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"status\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"after\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"before\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"deployment\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-deployment\""]
-#[doc = " },"]
-#[doc = " \"head_branch\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the head commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The id of the check suite that this check run is part of.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"description\": \"An array of pull requests that match this check suite. A pull request matches a check suite if they have the same `head_sha` and `head_branch`. When the check suite's `head_branch` is in a forked repository it will be `null` and the `pull_requests` array will be empty.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\","]
-#[doc = " \"queued\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckRunCompletedCheckRunCheckSuite {
@@ -5639,24 +3147,6 @@ pub struct CheckRunCompletedCheckRunCheckSuite {
pub url: ::std::string::String,
}
#[doc = "`CheckRunCompletedCheckRunCheckSuiteConclusion`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -5730,20 +3220,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`CheckRunCompletedCheckRunCheckSuiteStatus`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\","]
-#[doc = " \"queued\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -5799,26 +3275,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CheckRunCompletedCheckRu
}
}
#[doc = "The result of the completed check run. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has completed."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The result of the completed check run. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has completed.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " \"skipped\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -5894,49 +3350,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CheckRunCompletedCheckRu
}
}
#[doc = "`CheckRunCompletedCheckRunOutput`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"annotations_count\","]
-#[doc = " \"annotations_url\","]
-#[doc = " \"summary\","]
-#[doc = " \"text\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"annotations_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"annotations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"text\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckRunCompletedCheckRunOutput {
@@ -5948,19 +3361,6 @@ pub struct CheckRunCompletedCheckRunOutput {
pub title: ::std::option::Option<::std::string::String>,
}
#[doc = "The current status of the check run. Can be `queued`, `in_progress`, or `completed`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The current status of the check run. Can be `queued`, `in_progress`, or `completed`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -6008,23 +3408,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CheckRunCompletedCheckRu
}
}
#[doc = "The action requested by the user."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The action requested by the user.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"identifier\": {"]
-#[doc = " \"description\": \"The integrator reference of the action requested by the user.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct CheckRunCompletedRequestedAction {
@@ -6033,293 +3416,6 @@ pub struct CheckRunCompletedRequestedAction {
pub identifier: ::std::option::Option<::std::string::String>,
}
#[doc = "`CheckRunCreated`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"check_run created event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"check_run\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"check_run\": {"]
-#[doc = " \"description\": \"The [check_run](https://docs.github.com/en/rest/reference/checks#get-a-check-run).\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"app\","]
-#[doc = " \"check_suite\","]
-#[doc = " \"completed_at\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"external_id\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"output\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"started_at\","]
-#[doc = " \"status\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"check_suite\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"after\","]
-#[doc = " \"app\","]
-#[doc = " \"before\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"created_at\","]
-#[doc = " \"head_branch\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"id\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"status\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"after\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"before\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"deployment\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-deployment\""]
-#[doc = " },"]
-#[doc = " \"head_branch\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the head commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The id of the check suite that this check run is part of.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"description\": \"An array of pull requests that match this check suite. A pull request matches a check suite if they have the same `head_sha` and `head_branch`. When the check suite's `head_branch` is in a forked repository it will be `null` and the `pull_requests` array will be empty.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"queued\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"completed_at\": {"]
-#[doc = " \"description\": \"The time the check completed. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"description\": \"The result of the completed check run. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has completed.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " \"skipped\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"details_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"external_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The id of the check.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the check run.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"output\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"annotations_count\","]
-#[doc = " \"annotations_url\","]
-#[doc = " \"summary\","]
-#[doc = " \"text\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"annotations_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"annotations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"text\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"started_at\": {"]
-#[doc = " \"description\": \"The time that the check run began. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"description\": \"The current status of the check run. Can be `queued`, `in_progress`, or `completed`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"queued\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"requested_action\": {"]
-#[doc = " \"description\": \"The action requested by the user.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"object\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"identifier\": {"]
-#[doc = " \"description\": \"The integrator reference of the action requested by the user.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckRunCreated {
@@ -6336,18 +3432,6 @@ pub struct CheckRunCreated {
pub sender: User,
}
#[doc = "`CheckRunCreatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -6395,247 +3479,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CheckRunCreatedAction {
}
}
#[doc = "The [check_run](https://docs.github.com/en/rest/reference/checks#get-a-check-run)."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The [check_run](https://docs.github.com/en/rest/reference/checks#get-a-check-run).\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"app\","]
-#[doc = " \"check_suite\","]
-#[doc = " \"completed_at\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"external_id\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"output\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"started_at\","]
-#[doc = " \"status\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"check_suite\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"after\","]
-#[doc = " \"app\","]
-#[doc = " \"before\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"created_at\","]
-#[doc = " \"head_branch\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"id\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"status\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"after\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"before\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"deployment\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-deployment\""]
-#[doc = " },"]
-#[doc = " \"head_branch\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the head commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The id of the check suite that this check run is part of.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"description\": \"An array of pull requests that match this check suite. A pull request matches a check suite if they have the same `head_sha` and `head_branch`. When the check suite's `head_branch` is in a forked repository it will be `null` and the `pull_requests` array will be empty.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"queued\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"completed_at\": {"]
-#[doc = " \"description\": \"The time the check completed. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"description\": \"The result of the completed check run. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has completed.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " \"skipped\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"details_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"external_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The id of the check.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the check run.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"output\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"annotations_count\","]
-#[doc = " \"annotations_url\","]
-#[doc = " \"summary\","]
-#[doc = " \"text\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"annotations_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"annotations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"text\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"started_at\": {"]
-#[doc = " \"description\": \"The time that the check run began. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"description\": \"The current status of the check run. Can be `queued`, `in_progress`, or `completed`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"queued\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckRunCreatedCheckRun {
@@ -6666,110 +3509,6 @@ pub struct CheckRunCreatedCheckRun {
pub url: ::std::string::String,
}
#[doc = "`CheckRunCreatedCheckRunCheckSuite`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"after\","]
-#[doc = " \"app\","]
-#[doc = " \"before\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"created_at\","]
-#[doc = " \"head_branch\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"id\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"status\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"after\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"before\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"deployment\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-deployment\""]
-#[doc = " },"]
-#[doc = " \"head_branch\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the head commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The id of the check suite that this check run is part of.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"description\": \"An array of pull requests that match this check suite. A pull request matches a check suite if they have the same `head_sha` and `head_branch`. When the check suite's `head_branch` is in a forked repository it will be `null` and the `pull_requests` array will be empty.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"queued\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckRunCreatedCheckRunCheckSuite {
@@ -6794,24 +3533,6 @@ pub struct CheckRunCreatedCheckRunCheckSuite {
pub url: ::std::string::String,
}
#[doc = "`CheckRunCreatedCheckRunCheckSuiteConclusion`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -6885,20 +3606,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`CheckRunCreatedCheckRunCheckSuiteStatus`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"queued\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -6954,26 +3661,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CheckRunCreatedCheckRunC
}
}
#[doc = "The result of the completed check run. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has completed."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The result of the completed check run. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has completed.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " \"skipped\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -7049,49 +3736,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CheckRunCreatedCheckRunC
}
}
#[doc = "`CheckRunCreatedCheckRunOutput`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"annotations_count\","]
-#[doc = " \"annotations_url\","]
-#[doc = " \"summary\","]
-#[doc = " \"text\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"annotations_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"annotations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"text\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckRunCreatedCheckRunOutput {
@@ -7103,21 +3747,6 @@ pub struct CheckRunCreatedCheckRunOutput {
pub title: ::std::option::Option<::std::string::String>,
}
#[doc = "The current status of the check run. Can be `queued`, `in_progress`, or `completed`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The current status of the check run. Can be `queued`, `in_progress`, or `completed`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"queued\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -7173,23 +3802,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CheckRunCreatedCheckRunS
}
}
#[doc = "The action requested by the user."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The action requested by the user.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"identifier\": {"]
-#[doc = " \"description\": \"The integrator reference of the action requested by the user.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct CheckRunCreatedRequestedAction {
@@ -7198,75 +3810,6 @@ pub struct CheckRunCreatedRequestedAction {
pub identifier: ::std::option::Option<::std::string::String>,
}
#[doc = "A deployment to a repository environment. This will only be populated if the check run was created by a GitHub Actions workflow job that references an environment."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Check Run Deployment\","]
-#[doc = " \"description\": \"A deployment to a repository environment. This will only be populated if the check run was created by a GitHub Actions workflow job that references an environment.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"environment\","]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"original_environment\","]
-#[doc = " \"repository_url\","]
-#[doc = " \"statuses_url\","]
-#[doc = " \"task\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"environment\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"original_environment\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repository_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"statuses_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"task\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckRunDeployment {
@@ -7283,28 +3826,6 @@ pub struct CheckRunDeployment {
pub url: ::std::string::String,
}
#[doc = "`CheckRunEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/check_run$completed\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/check_run$created\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/check_run$requested_action\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/check_run$rerequested\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum CheckRunEvent {
@@ -7334,77 +3855,6 @@ impl ::std::convert::From for CheckRunEvent {
}
}
#[doc = "`CheckRunPullRequest`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Check Run Pull Request\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"base\","]
-#[doc = " \"head\","]
-#[doc = " \"id\","]
-#[doc = " \"number\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"base\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repo-ref\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"head\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repo-ref\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckRunPullRequest {
@@ -7415,32 +3865,6 @@ pub struct CheckRunPullRequest {
pub url: ::std::string::String,
}
#[doc = "`CheckRunPullRequestBase`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repo-ref\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckRunPullRequestBase {
@@ -7450,32 +3874,6 @@ pub struct CheckRunPullRequestBase {
pub sha: ::std::string::String,
}
#[doc = "`CheckRunPullRequestHead`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repo-ref\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckRunPullRequestHead {
@@ -7485,291 +3883,6 @@ pub struct CheckRunPullRequestHead {
pub sha: ::std::string::String,
}
#[doc = "`CheckRunRequestedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"check_run requested_action event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"check_run\","]
-#[doc = " \"repository\","]
-#[doc = " \"requested_action\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"requested_action\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"check_run\": {"]
-#[doc = " \"description\": \"The [check_run](https://docs.github.com/en/rest/reference/checks#get-a-check-run).\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"app\","]
-#[doc = " \"check_suite\","]
-#[doc = " \"completed_at\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"external_id\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"output\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"started_at\","]
-#[doc = " \"status\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"check_suite\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"after\","]
-#[doc = " \"app\","]
-#[doc = " \"before\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"created_at\","]
-#[doc = " \"head_branch\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"id\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"status\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"after\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"before\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"deployment\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-deployment\""]
-#[doc = " },"]
-#[doc = " \"head_branch\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the head commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The id of the check suite that this check run is part of.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"description\": \"An array of pull requests that match this check suite. A pull request matches a check suite if they have the same `head_sha` and `head_branch`. When the check suite's `head_branch` is in a forked repository it will be `null` and the `pull_requests` array will be empty.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"queued\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"completed_at\": {"]
-#[doc = " \"description\": \"The time the check completed. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"description\": \"The result of the completed check run. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has completed.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " \"skipped\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"details_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"external_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The id of the check.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the check run.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"output\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"annotations_count\","]
-#[doc = " \"annotations_url\","]
-#[doc = " \"summary\","]
-#[doc = " \"text\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"annotations_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"annotations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"text\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"started_at\": {"]
-#[doc = " \"description\": \"The time that the check run began. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"description\": \"The current status of the check run. Can be `queued`, `in_progress`, or `completed`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"queued\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"requested_action\": {"]
-#[doc = " \"description\": \"The action requested by the user.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"identifier\": {"]
-#[doc = " \"description\": \"The integrator reference of the action requested by the user.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckRunRequestedAction {
@@ -7784,18 +3897,6 @@ pub struct CheckRunRequestedAction {
pub sender: User,
}
#[doc = "`CheckRunRequestedActionAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"requested_action\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -7843,247 +3944,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CheckRunRequestedActionA
}
}
#[doc = "The [check_run](https://docs.github.com/en/rest/reference/checks#get-a-check-run)."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The [check_run](https://docs.github.com/en/rest/reference/checks#get-a-check-run).\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"app\","]
-#[doc = " \"check_suite\","]
-#[doc = " \"completed_at\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"external_id\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"output\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"started_at\","]
-#[doc = " \"status\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"check_suite\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"after\","]
-#[doc = " \"app\","]
-#[doc = " \"before\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"created_at\","]
-#[doc = " \"head_branch\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"id\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"status\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"after\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"before\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"deployment\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-deployment\""]
-#[doc = " },"]
-#[doc = " \"head_branch\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the head commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The id of the check suite that this check run is part of.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"description\": \"An array of pull requests that match this check suite. A pull request matches a check suite if they have the same `head_sha` and `head_branch`. When the check suite's `head_branch` is in a forked repository it will be `null` and the `pull_requests` array will be empty.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"queued\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"completed_at\": {"]
-#[doc = " \"description\": \"The time the check completed. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"description\": \"The result of the completed check run. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has completed.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " \"skipped\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"details_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"external_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The id of the check.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the check run.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"output\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"annotations_count\","]
-#[doc = " \"annotations_url\","]
-#[doc = " \"summary\","]
-#[doc = " \"text\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"annotations_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"annotations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"text\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"started_at\": {"]
-#[doc = " \"description\": \"The time that the check run began. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"description\": \"The current status of the check run. Can be `queued`, `in_progress`, or `completed`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"queued\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckRunRequestedActionCheckRun {
@@ -8114,110 +3974,6 @@ pub struct CheckRunRequestedActionCheckRun {
pub url: ::std::string::String,
}
#[doc = "`CheckRunRequestedActionCheckRunCheckSuite`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"after\","]
-#[doc = " \"app\","]
-#[doc = " \"before\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"created_at\","]
-#[doc = " \"head_branch\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"id\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"status\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"after\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"before\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"deployment\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-deployment\""]
-#[doc = " },"]
-#[doc = " \"head_branch\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the head commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The id of the check suite that this check run is part of.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"description\": \"An array of pull requests that match this check suite. A pull request matches a check suite if they have the same `head_sha` and `head_branch`. When the check suite's `head_branch` is in a forked repository it will be `null` and the `pull_requests` array will be empty.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"queued\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckRunRequestedActionCheckRunCheckSuite {
@@ -8242,24 +3998,6 @@ pub struct CheckRunRequestedActionCheckRunCheckSuite {
pub url: ::std::string::String,
}
#[doc = "`CheckRunRequestedActionCheckRunCheckSuiteConclusion`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -8333,20 +4071,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`CheckRunRequestedActionCheckRunCheckSuiteStatus`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"queued\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -8404,26 +4128,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "The result of the completed check run. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has completed."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The result of the completed check run. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has completed.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " \"skipped\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -8499,49 +4203,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CheckRunRequestedActionC
}
}
#[doc = "`CheckRunRequestedActionCheckRunOutput`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"annotations_count\","]
-#[doc = " \"annotations_url\","]
-#[doc = " \"summary\","]
-#[doc = " \"text\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"annotations_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"annotations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"text\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckRunRequestedActionCheckRunOutput {
@@ -8553,21 +4214,6 @@ pub struct CheckRunRequestedActionCheckRunOutput {
pub title: ::std::option::Option<::std::string::String>,
}
#[doc = "The current status of the check run. Can be `queued`, `in_progress`, or `completed`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The current status of the check run. Can be `queued`, `in_progress`, or `completed`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"queued\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -8623,23 +4269,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CheckRunRequestedActionC
}
}
#[doc = "The action requested by the user."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The action requested by the user.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"identifier\": {"]
-#[doc = " \"description\": \"The integrator reference of the action requested by the user.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct CheckRunRequestedActionRequestedAction {
@@ -8648,282 +4277,6 @@ pub struct CheckRunRequestedActionRequestedAction {
pub identifier: ::std::option::Option<::std::string::String>,
}
#[doc = "`CheckRunRerequested`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"check_run rerequested event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"check_run\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"rerequested\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"check_run\": {"]
-#[doc = " \"description\": \"The [check_run](https://docs.github.com/en/rest/reference/checks#get-a-check-run).\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"app\","]
-#[doc = " \"check_suite\","]
-#[doc = " \"completed_at\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"external_id\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"output\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"started_at\","]
-#[doc = " \"status\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"check_suite\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"after\","]
-#[doc = " \"app\","]
-#[doc = " \"before\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"created_at\","]
-#[doc = " \"head_branch\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"id\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"status\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"after\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"before\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"deployment\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-deployment\""]
-#[doc = " },"]
-#[doc = " \"head_branch\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the head commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The id of the check suite that this check run is part of.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"description\": \"An array of pull requests that match this check suite. A pull request matches a check suite if they have the same `head_sha` and `head_branch`. When the check suite's `head_branch` is in a forked repository it will be `null` and the `pull_requests` array will be empty.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"completed_at\": {"]
-#[doc = " \"description\": \"The time the check completed. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"description\": \"The result of the completed check run. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has `completed`.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " \"skipped\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"details_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"external_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The id of the check.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the check.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"output\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"annotations_count\","]
-#[doc = " \"annotations_url\","]
-#[doc = " \"summary\","]
-#[doc = " \"text\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"annotations_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"annotations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"text\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"started_at\": {"]
-#[doc = " \"description\": \"The time that the check run began. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"description\": \"The phase of the lifecycle that the check is currently in.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"requested_action\": {"]
-#[doc = " \"description\": \"The action requested by the user.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"object\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"identifier\": {"]
-#[doc = " \"description\": \"The integrator reference of the action requested by the user.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckRunRerequested {
@@ -8940,18 +4293,6 @@ pub struct CheckRunRerequested {
pub sender: User,
}
#[doc = "`CheckRunRerequestedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"rerequested\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -8999,236 +4340,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CheckRunRerequestedActio
}
}
#[doc = "The [check_run](https://docs.github.com/en/rest/reference/checks#get-a-check-run)."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The [check_run](https://docs.github.com/en/rest/reference/checks#get-a-check-run).\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"app\","]
-#[doc = " \"check_suite\","]
-#[doc = " \"completed_at\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"external_id\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"output\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"started_at\","]
-#[doc = " \"status\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"check_suite\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"after\","]
-#[doc = " \"app\","]
-#[doc = " \"before\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"created_at\","]
-#[doc = " \"head_branch\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"id\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"status\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"after\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"before\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"deployment\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-deployment\""]
-#[doc = " },"]
-#[doc = " \"head_branch\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the head commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The id of the check suite that this check run is part of.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"description\": \"An array of pull requests that match this check suite. A pull request matches a check suite if they have the same `head_sha` and `head_branch`. When the check suite's `head_branch` is in a forked repository it will be `null` and the `pull_requests` array will be empty.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"completed_at\": {"]
-#[doc = " \"description\": \"The time the check completed. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"description\": \"The result of the completed check run. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has `completed`.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " \"skipped\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"details_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"external_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The id of the check.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the check.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"output\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"annotations_count\","]
-#[doc = " \"annotations_url\","]
-#[doc = " \"summary\","]
-#[doc = " \"text\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"annotations_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"annotations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"text\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"started_at\": {"]
-#[doc = " \"description\": \"The time that the check run began. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"description\": \"The phase of the lifecycle that the check is currently in.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckRunRerequestedCheckRun {
@@ -9259,104 +4370,6 @@ pub struct CheckRunRerequestedCheckRun {
pub url: ::std::string::String,
}
#[doc = "`CheckRunRerequestedCheckRunCheckSuite`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"after\","]
-#[doc = " \"app\","]
-#[doc = " \"before\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"created_at\","]
-#[doc = " \"head_branch\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"id\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"status\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"after\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"before\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"deployment\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-deployment\""]
-#[doc = " },"]
-#[doc = " \"head_branch\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the head commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The id of the check suite that this check run is part of.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"description\": \"An array of pull requests that match this check suite. A pull request matches a check suite if they have the same `head_sha` and `head_branch`. When the check suite's `head_branch` is in a forked repository it will be `null` and the `pull_requests` array will be empty.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckRunRerequestedCheckRunCheckSuite {
@@ -9381,24 +4394,6 @@ pub struct CheckRunRerequestedCheckRunCheckSuite {
pub url: ::std::string::String,
}
#[doc = "`CheckRunRerequestedCheckRunCheckSuiteConclusion`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -9472,18 +4467,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`CheckRunRerequestedCheckRunCheckSuiteStatus`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -9533,26 +4516,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "The result of the completed check run. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has `completed`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The result of the completed check run. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has `completed`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " \"skipped\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -9628,49 +4591,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CheckRunRerequestedCheck
}
}
#[doc = "`CheckRunRerequestedCheckRunOutput`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"annotations_count\","]
-#[doc = " \"annotations_url\","]
-#[doc = " \"summary\","]
-#[doc = " \"text\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"annotations_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"annotations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"text\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckRunRerequestedCheckRunOutput {
@@ -9682,19 +4602,6 @@ pub struct CheckRunRerequestedCheckRunOutput {
pub title: ::std::option::Option<::std::string::String>,
}
#[doc = "The phase of the lifecycle that the check is currently in."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The phase of the lifecycle that the check is currently in.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -9742,23 +4649,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CheckRunRerequestedCheck
}
}
#[doc = "The action requested by the user."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The action requested by the user.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"identifier\": {"]
-#[doc = " \"description\": \"The integrator reference of the action requested by the user.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct CheckRunRerequestedRequestedAction {
@@ -9767,159 +4657,6 @@ pub struct CheckRunRerequestedRequestedAction {
pub identifier: ::std::option::Option<::std::string::String>,
}
#[doc = "`CheckSuiteCompleted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"check_suite completed event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"check_suite\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"check_suite\": {"]
-#[doc = " \"description\": \"The [check_suite](https://docs.github.com/en/rest/reference/checks#suites).\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"after\","]
-#[doc = " \"app\","]
-#[doc = " \"before\","]
-#[doc = " \"check_runs_url\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"created_at\","]
-#[doc = " \"head_branch\","]
-#[doc = " \"head_commit\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"id\","]
-#[doc = " \"latest_check_runs_count\","]
-#[doc = " \"node_id\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"status\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"after\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"before\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"check_runs_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"description\": \"The summary conclusion for all check runs that are part of the check suite. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has `completed`.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"head_branch\": {"]
-#[doc = " \"description\": \"The head branch name the changes are on.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"head_commit\": {"]
-#[doc = " \"$ref\": \"#/definitions/commit-simple\""]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the head commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"latest_check_runs_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"description\": \"An array of pull requests that match this check suite. A pull request matches a check suite if they have the same `head_sha` and `head_branch`. When the check suite's `head_branch` is in a forked repository it will be `null` and the `pull_requests` array will be empty.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"description\": \"The summary status for all check runs that are part of the check suite. Can be `requested`, `in_progress`, or `completed`.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"requested\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\","]
-#[doc = " \"queued\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"description\": \"URL that points to the check suite API resource.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckSuiteCompleted {
@@ -9933,18 +4670,6 @@ pub struct CheckSuiteCompleted {
pub sender: User,
}
#[doc = "`CheckSuiteCompletedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -9992,127 +4717,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CheckSuiteCompletedActio
}
}
#[doc = "The [check_suite](https://docs.github.com/en/rest/reference/checks#suites)."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The [check_suite](https://docs.github.com/en/rest/reference/checks#suites).\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"after\","]
-#[doc = " \"app\","]
-#[doc = " \"before\","]
-#[doc = " \"check_runs_url\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"created_at\","]
-#[doc = " \"head_branch\","]
-#[doc = " \"head_commit\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"id\","]
-#[doc = " \"latest_check_runs_count\","]
-#[doc = " \"node_id\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"status\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"after\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"before\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"check_runs_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"description\": \"The summary conclusion for all check runs that are part of the check suite. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has `completed`.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"head_branch\": {"]
-#[doc = " \"description\": \"The head branch name the changes are on.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"head_commit\": {"]
-#[doc = " \"$ref\": \"#/definitions/commit-simple\""]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the head commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"latest_check_runs_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"description\": \"An array of pull requests that match this check suite. A pull request matches a check suite if they have the same `head_sha` and `head_branch`. When the check suite's `head_branch` is in a forked repository it will be `null` and the `pull_requests` array will be empty.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"description\": \"The summary status for all check runs that are part of the check suite. Can be `requested`, `in_progress`, or `completed`.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"requested\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\","]
-#[doc = " \"queued\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"description\": \"URL that points to the check suite API resource.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckSuiteCompletedCheckSuite {
@@ -10140,25 +4744,6 @@ pub struct CheckSuiteCompletedCheckSuite {
pub url: ::std::string::String,
}
#[doc = "The summary conclusion for all check runs that are part of the check suite. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has `completed`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The summary conclusion for all check runs that are part of the check suite. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has `completed`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -10230,22 +4815,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CheckSuiteCompletedCheck
}
}
#[doc = "The summary status for all check runs that are part of the check suite. Can be `requested`, `in_progress`, or `completed`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The summary status for all check runs that are part of the check suite. Can be `requested`, `in_progress`, or `completed`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"requested\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\","]
-#[doc = " \"queued\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -10305,25 +4874,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CheckSuiteCompletedCheck
}
}
#[doc = "`CheckSuiteEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/check_suite$completed\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/check_suite$requested\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/check_suite$rerequested\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum CheckSuiteEvent {
@@ -10347,159 +4897,6 @@ impl ::std::convert::From for CheckSuiteEvent {
}
}
#[doc = "`CheckSuiteRequested`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"check_suite requested event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"check_suite\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"requested\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"check_suite\": {"]
-#[doc = " \"description\": \"The [check_suite](https://docs.github.com/en/rest/reference/checks#suites).\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"after\","]
-#[doc = " \"app\","]
-#[doc = " \"before\","]
-#[doc = " \"check_runs_url\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"created_at\","]
-#[doc = " \"head_branch\","]
-#[doc = " \"head_commit\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"id\","]
-#[doc = " \"latest_check_runs_count\","]
-#[doc = " \"node_id\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"status\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"after\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"before\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"check_runs_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"description\": \"The summary conclusion for all check runs that are part of the check suite. Can be one of `success`, `failure`,` neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has completed.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"head_branch\": {"]
-#[doc = " \"description\": \"The head branch name the changes are on.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"head_commit\": {"]
-#[doc = " \"$ref\": \"#/definitions/commit-simple\""]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the head commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"latest_check_runs_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"description\": \"An array of pull requests that match this check suite. A pull request matches a check suite if they have the same `head_sha` and `head_branch`. When the check suite's `head_branch` is in a forked repository it will be `null` and the `pull_requests` array will be empty.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"description\": \"The summary status for all check runs that are part of the check suite. Can be `requested`, `in_progress`, or `completed`.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"requested\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\","]
-#[doc = " \"queued\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"description\": \"URL that points to the check suite API resource.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckSuiteRequested {
@@ -10513,18 +4910,6 @@ pub struct CheckSuiteRequested {
pub sender: User,
}
#[doc = "`CheckSuiteRequestedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"requested\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -10572,127 +4957,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CheckSuiteRequestedActio
}
}
#[doc = "The [check_suite](https://docs.github.com/en/rest/reference/checks#suites)."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The [check_suite](https://docs.github.com/en/rest/reference/checks#suites).\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"after\","]
-#[doc = " \"app\","]
-#[doc = " \"before\","]
-#[doc = " \"check_runs_url\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"created_at\","]
-#[doc = " \"head_branch\","]
-#[doc = " \"head_commit\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"id\","]
-#[doc = " \"latest_check_runs_count\","]
-#[doc = " \"node_id\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"status\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"after\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"before\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"check_runs_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"description\": \"The summary conclusion for all check runs that are part of the check suite. Can be one of `success`, `failure`,` neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has completed.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"head_branch\": {"]
-#[doc = " \"description\": \"The head branch name the changes are on.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"head_commit\": {"]
-#[doc = " \"$ref\": \"#/definitions/commit-simple\""]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the head commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"latest_check_runs_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"description\": \"An array of pull requests that match this check suite. A pull request matches a check suite if they have the same `head_sha` and `head_branch`. When the check suite's `head_branch` is in a forked repository it will be `null` and the `pull_requests` array will be empty.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"description\": \"The summary status for all check runs that are part of the check suite. Can be `requested`, `in_progress`, or `completed`.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"requested\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\","]
-#[doc = " \"queued\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"description\": \"URL that points to the check suite API resource.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckSuiteRequestedCheckSuite {
@@ -10720,25 +4984,6 @@ pub struct CheckSuiteRequestedCheckSuite {
pub url: ::std::string::String,
}
#[doc = "The summary conclusion for all check runs that are part of the check suite. Can be one of `success`, `failure`,` neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has completed."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The summary conclusion for all check runs that are part of the check suite. Can be one of `success`, `failure`,` neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has completed.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -10810,22 +5055,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CheckSuiteRequestedCheck
}
}
#[doc = "The summary status for all check runs that are part of the check suite. Can be `requested`, `in_progress`, or `completed`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The summary status for all check runs that are part of the check suite. Can be `requested`, `in_progress`, or `completed`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"requested\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\","]
-#[doc = " \"queued\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -10885,159 +5114,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CheckSuiteRequestedCheck
}
}
#[doc = "`CheckSuiteRerequested`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"check_suite rerequested event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"check_suite\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"rerequested\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"check_suite\": {"]
-#[doc = " \"description\": \"The [check_suite](https://docs.github.com/en/rest/reference/checks#suites).\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"after\","]
-#[doc = " \"app\","]
-#[doc = " \"before\","]
-#[doc = " \"check_runs_url\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"created_at\","]
-#[doc = " \"head_branch\","]
-#[doc = " \"head_commit\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"id\","]
-#[doc = " \"latest_check_runs_count\","]
-#[doc = " \"node_id\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"status\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"after\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"before\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"check_runs_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"description\": \"The summary conclusion for all check runs that are part of the check suite. Can be one of `success`, `failure`,` neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has completed.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"head_branch\": {"]
-#[doc = " \"description\": \"The head branch name the changes are on.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"head_commit\": {"]
-#[doc = " \"$ref\": \"#/definitions/commit-simple\""]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the head commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"latest_check_runs_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"description\": \"An array of pull requests that match this check suite. A pull request matches a check suite if they have the same `head_sha` and `head_branch`. When the check suite's `head_branch` is in a forked repository it will be `null` and the `pull_requests` array will be empty.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"description\": \"The summary status for all check runs that are part of the check suite. Can be `requested`, `in_progress`, or `completed`.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"requested\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\","]
-#[doc = " \"queued\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"description\": \"URL that points to the check suite API resource.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckSuiteRerequested {
@@ -11051,18 +5127,6 @@ pub struct CheckSuiteRerequested {
pub sender: User,
}
#[doc = "`CheckSuiteRerequestedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"rerequested\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -11110,127 +5174,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CheckSuiteRerequestedAct
}
}
#[doc = "The [check_suite](https://docs.github.com/en/rest/reference/checks#suites)."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The [check_suite](https://docs.github.com/en/rest/reference/checks#suites).\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"after\","]
-#[doc = " \"app\","]
-#[doc = " \"before\","]
-#[doc = " \"check_runs_url\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"created_at\","]
-#[doc = " \"head_branch\","]
-#[doc = " \"head_commit\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"id\","]
-#[doc = " \"latest_check_runs_count\","]
-#[doc = " \"node_id\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"status\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"after\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"app\": {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " \"before\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"check_runs_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"description\": \"The summary conclusion for all check runs that are part of the check suite. Can be one of `success`, `failure`,` neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has completed.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"head_branch\": {"]
-#[doc = " \"description\": \"The head branch name the changes are on.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"head_commit\": {"]
-#[doc = " \"$ref\": \"#/definitions/commit-simple\""]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"description\": \"The SHA of the head commit that is being checked.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"latest_check_runs_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"description\": \"An array of pull requests that match this check suite. A pull request matches a check suite if they have the same `head_sha` and `head_branch`. When the check suite's `head_branch` is in a forked repository it will be `null` and the `pull_requests` array will be empty.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/check-run-pull-request\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"description\": \"The summary status for all check runs that are part of the check suite. Can be `requested`, `in_progress`, or `completed`.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"requested\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\","]
-#[doc = " \"queued\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"description\": \"URL that points to the check suite API resource.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CheckSuiteRerequestedCheckSuite {
@@ -11258,25 +5201,6 @@ pub struct CheckSuiteRerequestedCheckSuite {
pub url: ::std::string::String,
}
#[doc = "The summary conclusion for all check runs that are part of the check suite. Can be one of `success`, `failure`,` neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has completed."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The summary conclusion for all check runs that are part of the check suite. Can be one of `success`, `failure`,` neutral`, `cancelled`, `timed_out`, `action_required` or `stale`. This value will be `null` until the check run has completed.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -11348,22 +5272,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CheckSuiteRerequestedChe
}
}
#[doc = "The summary status for all check runs that are part of the check suite. Can be `requested`, `in_progress`, or `completed`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The summary status for all check runs that are part of the check suite. Can be `requested`, `in_progress`, or `completed`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"requested\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\","]
-#[doc = " \"queued\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -11423,195 +5331,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CheckSuiteRerequestedChe
}
}
#[doc = "`CodeScanningAlertAppearedInBranch`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"code_scanning_alert appeared_in_branch event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"alert\","]
-#[doc = " \"commit_oid\","]
-#[doc = " \"ref\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"appeared_in_branch\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"alert\": {"]
-#[doc = " \"description\": \"The code scanning alert involved in the event.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"dismissed_at\","]
-#[doc = " \"dismissed_by\","]
-#[doc = " \"dismissed_reason\","]
-#[doc = " \"html_url\","]
-#[doc = " \"instances\","]
-#[doc = " \"number\","]
-#[doc = " \"rule\","]
-#[doc = " \"state\","]
-#[doc = " \"tool\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"description\": \"The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ.`\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"dismissed_at\": {"]
-#[doc = " \"description\": \"The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"dismissed_by\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"dismissed_reason\": {"]
-#[doc = " \"description\": \"The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"false positive\","]
-#[doc = " \"won't fix\","]
-#[doc = " \"used in tests\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"description\": \"The GitHub URL of the alert resource.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"instances\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"most_recent_instance\": {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The code scanning alert number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"rule\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"description\","]
-#[doc = " \"id\","]
-#[doc = " \"severity\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"A short description of the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"A unique identifier for the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"description\": \"The severity of the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"none\","]
-#[doc = " \"note\","]
-#[doc = " \"warning\","]
-#[doc = " \"error\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of a code scanning alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"dismissed\","]
-#[doc = " \"fixed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tool\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"name\","]
-#[doc = " \"version\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the tool used to generate the code scanning analysis alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"version\": {"]
-#[doc = " \"description\": \"The version of the tool used to detect the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"commit_oid\": {"]
-#[doc = " \"description\": \"The commit SHA of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"description\": \"The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/github-org\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertAppearedInBranch {
@@ -11630,18 +5349,6 @@ pub struct CodeScanningAlertAppearedInBranch {
pub sender: GithubOrg,
}
#[doc = "`CodeScanningAlertAppearedInBranchAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"appeared_in_branch\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -11689,153 +5396,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CodeScanningAlertAppeare
}
}
#[doc = "The code scanning alert involved in the event."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The code scanning alert involved in the event.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"dismissed_at\","]
-#[doc = " \"dismissed_by\","]
-#[doc = " \"dismissed_reason\","]
-#[doc = " \"html_url\","]
-#[doc = " \"instances\","]
-#[doc = " \"number\","]
-#[doc = " \"rule\","]
-#[doc = " \"state\","]
-#[doc = " \"tool\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"description\": \"The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ.`\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"dismissed_at\": {"]
-#[doc = " \"description\": \"The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"dismissed_by\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"dismissed_reason\": {"]
-#[doc = " \"description\": \"The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"false positive\","]
-#[doc = " \"won't fix\","]
-#[doc = " \"used in tests\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"description\": \"The GitHub URL of the alert resource.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"instances\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"most_recent_instance\": {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The code scanning alert number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"rule\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"description\","]
-#[doc = " \"id\","]
-#[doc = " \"severity\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"A short description of the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"A unique identifier for the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"description\": \"The severity of the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"none\","]
-#[doc = " \"note\","]
-#[doc = " \"warning\","]
-#[doc = " \"error\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of a code scanning alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"dismissed\","]
-#[doc = " \"fixed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tool\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"name\","]
-#[doc = " \"version\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the tool used to generate the code scanning analysis alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"version\": {"]
-#[doc = " \"description\": \"The version of the tool used to detect the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertAppearedInBranchAlert {
@@ -11861,21 +5421,6 @@ pub struct CodeScanningAlertAppearedInBranchAlert {
pub url: ::std::string::String,
}
#[doc = "The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"false positive\","]
-#[doc = " \"won't fix\","]
-#[doc = " \"used in tests\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -11933,45 +5478,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`CodeScanningAlertAppearedInBranchAlertRule`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"description\","]
-#[doc = " \"id\","]
-#[doc = " \"severity\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"A short description of the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"A unique identifier for the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"description\": \"The severity of the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"none\","]
-#[doc = " \"note\","]
-#[doc = " \"warning\","]
-#[doc = " \"error\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertAppearedInBranchAlertRule {
@@ -11983,22 +5489,6 @@ pub struct CodeScanningAlertAppearedInBranchAlertRule {
pub severity: ::std::option::Option,
}
#[doc = "The severity of the alert."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The severity of the alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"none\","]
-#[doc = " \"note\","]
-#[doc = " \"warning\","]
-#[doc = " \"error\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -12060,21 +5550,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "State of a code scanning alert."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"State of a code scanning alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"dismissed\","]
-#[doc = " \"fixed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -12132,33 +5607,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`CodeScanningAlertAppearedInBranchAlertTool`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"name\","]
-#[doc = " \"version\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the tool used to generate the code scanning analysis alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"version\": {"]
-#[doc = " \"description\": \"The version of the tool used to detect the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertAppearedInBranchAlertTool {
@@ -12168,217 +5616,6 @@ pub struct CodeScanningAlertAppearedInBranchAlertTool {
pub version: ::std::option::Option<::std::string::String>,
}
#[doc = "`CodeScanningAlertClosedByUser`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"code_scanning_alert closed_by_user event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"alert\","]
-#[doc = " \"commit_oid\","]
-#[doc = " \"ref\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"closed_by_user\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"alert\": {"]
-#[doc = " \"description\": \"The code scanning alert involved in the event.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"dismissed_at\","]
-#[doc = " \"dismissed_by\","]
-#[doc = " \"dismissed_reason\","]
-#[doc = " \"html_url\","]
-#[doc = " \"instances\","]
-#[doc = " \"number\","]
-#[doc = " \"rule\","]
-#[doc = " \"state\","]
-#[doc = " \"tool\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"description\": \"The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ.`\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"dismissed_at\": {"]
-#[doc = " \"description\": \"The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"dismissed_by\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"dismissed_reason\": {"]
-#[doc = " \"description\": \"The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"false positive\","]
-#[doc = " \"won't fix\","]
-#[doc = " \"used in tests\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"description\": \"The GitHub URL of the alert resource.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"instances\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"dismissed\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"most_recent_instance\": {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The code scanning alert number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"rule\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"description\","]
-#[doc = " \"id\","]
-#[doc = " \"severity\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"A short description of the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"full_description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"help\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"A unique identifier for the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"description\": \"The severity of the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"none\","]
-#[doc = " \"note\","]
-#[doc = " \"warning\","]
-#[doc = " \"error\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tags\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of a code scanning alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"dismissed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tool\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"name\","]
-#[doc = " \"version\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"guid\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the tool used to generate the code scanning analysis alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"version\": {"]
-#[doc = " \"description\": \"The version of the tool used to detect the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"commit_oid\": {"]
-#[doc = " \"description\": \"The commit SHA of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"description\": \"The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertClosedByUser {
@@ -12397,18 +5634,6 @@ pub struct CodeScanningAlertClosedByUser {
pub sender: User,
}
#[doc = "`CodeScanningAlertClosedByUserAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"closed_by_user\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -12456,175 +5681,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CodeScanningAlertClosedB
}
}
#[doc = "The code scanning alert involved in the event."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The code scanning alert involved in the event.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"dismissed_at\","]
-#[doc = " \"dismissed_by\","]
-#[doc = " \"dismissed_reason\","]
-#[doc = " \"html_url\","]
-#[doc = " \"instances\","]
-#[doc = " \"number\","]
-#[doc = " \"rule\","]
-#[doc = " \"state\","]
-#[doc = " \"tool\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"description\": \"The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ.`\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"dismissed_at\": {"]
-#[doc = " \"description\": \"The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"dismissed_by\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"dismissed_reason\": {"]
-#[doc = " \"description\": \"The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"false positive\","]
-#[doc = " \"won't fix\","]
-#[doc = " \"used in tests\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"description\": \"The GitHub URL of the alert resource.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"instances\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"dismissed\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"most_recent_instance\": {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The code scanning alert number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"rule\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"description\","]
-#[doc = " \"id\","]
-#[doc = " \"severity\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"A short description of the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"full_description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"help\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"A unique identifier for the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"description\": \"The severity of the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"none\","]
-#[doc = " \"note\","]
-#[doc = " \"warning\","]
-#[doc = " \"error\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tags\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of a code scanning alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"dismissed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tool\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"name\","]
-#[doc = " \"version\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"guid\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the tool used to generate the code scanning analysis alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"version\": {"]
-#[doc = " \"description\": \"The version of the tool used to detect the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertClosedByUserAlert {
@@ -12649,22 +5705,6 @@ pub struct CodeScanningAlertClosedByUserAlert {
pub url: ::std::string::String,
}
#[doc = "The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"false positive\","]
-#[doc = " \"won't fix\","]
-#[doc = " \"used in tests\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -12722,34 +5762,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`CodeScanningAlertClosedByUserAlertInstancesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"dismissed\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertClosedByUserAlertInstancesItem {
@@ -12771,33 +5783,6 @@ pub struct CodeScanningAlertClosedByUserAlertInstancesItem {
pub state: CodeScanningAlertClosedByUserAlertInstancesItemState,
}
#[doc = "`CodeScanningAlertClosedByUserAlertInstancesItemLocation`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"end_column\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"end_line\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"path\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"start_column\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"start_line\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertClosedByUserAlertInstancesItemLocation {
@@ -12813,21 +5798,6 @@ pub struct CodeScanningAlertClosedByUserAlertInstancesItemLocation {
pub start_line: ::std::option::Option,
}
#[doc = "`CodeScanningAlertClosedByUserAlertInstancesItemMessage`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"text\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertClosedByUserAlertInstancesItemMessage {
@@ -12835,18 +5805,6 @@ pub struct CodeScanningAlertClosedByUserAlertInstancesItemMessage {
pub text: ::std::option::Option<::std::string::String>,
}
#[doc = "`CodeScanningAlertClosedByUserAlertInstancesItemState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"dismissed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -12896,57 +5854,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`CodeScanningAlertClosedByUserAlertRule`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"description\","]
-#[doc = " \"id\","]
-#[doc = " \"severity\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"A short description of the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"full_description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"help\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"A unique identifier for the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"description\": \"The severity of the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"none\","]
-#[doc = " \"note\","]
-#[doc = " \"warning\","]
-#[doc = " \"error\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tags\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertClosedByUserAlertRule {
@@ -12966,22 +5873,6 @@ pub struct CodeScanningAlertClosedByUserAlertRule {
pub tags: (),
}
#[doc = "The severity of the alert."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The severity of the alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"none\","]
-#[doc = " \"note\","]
-#[doc = " \"warning\","]
-#[doc = " \"error\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -13043,19 +5934,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "State of a code scanning alert."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"State of a code scanning alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"dismissed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -13103,39 +5981,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CodeScanningAlertClosedB
}
}
#[doc = "`CodeScanningAlertClosedByUserAlertTool`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"name\","]
-#[doc = " \"version\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"guid\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the tool used to generate the code scanning analysis alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"version\": {"]
-#[doc = " \"description\": \"The version of the tool used to detect the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertClosedByUserAlertTool {
@@ -13147,212 +5992,6 @@ pub struct CodeScanningAlertClosedByUserAlertTool {
pub version: ::std::option::Option<::std::string::String>,
}
#[doc = "`CodeScanningAlertCreated`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"code_scanning_alert created event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"alert\","]
-#[doc = " \"commit_oid\","]
-#[doc = " \"ref\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"alert\": {"]
-#[doc = " \"description\": \"The code scanning alert involved in the event.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"dismissed_at\","]
-#[doc = " \"dismissed_by\","]
-#[doc = " \"dismissed_reason\","]
-#[doc = " \"html_url\","]
-#[doc = " \"instances\","]
-#[doc = " \"number\","]
-#[doc = " \"rule\","]
-#[doc = " \"state\","]
-#[doc = " \"tool\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"description\": \"The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ.`\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"dismissed_at\": {"]
-#[doc = " \"description\": \"The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"dismissed_by\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"dismissed_reason\": {"]
-#[doc = " \"description\": \"The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`.\","]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"description\": \"The GitHub URL of the alert resource.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"instances\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"dismissed\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"most_recent_instance\": {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The code scanning alert number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"rule\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"description\","]
-#[doc = " \"id\","]
-#[doc = " \"severity\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"A short description of the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"full_description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"help\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"A unique identifier for the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"description\": \"The severity of the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"none\","]
-#[doc = " \"note\","]
-#[doc = " \"warning\","]
-#[doc = " \"error\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tags\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of a code scanning alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"dismissed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tool\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"name\","]
-#[doc = " \"version\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"guid\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the tool used to generate the code scanning analysis alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"version\": {"]
-#[doc = " \"description\": \"The version of the tool used to detect the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"commit_oid\": {"]
-#[doc = " \"description\": \"The commit SHA of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"description\": \"The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/github-org\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertCreated {
@@ -13371,18 +6010,6 @@ pub struct CodeScanningAlertCreated {
pub sender: GithubOrg,
}
#[doc = "`CodeScanningAlertCreatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -13430,170 +6057,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CodeScanningAlertCreated
}
}
#[doc = "The code scanning alert involved in the event."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The code scanning alert involved in the event.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"dismissed_at\","]
-#[doc = " \"dismissed_by\","]
-#[doc = " \"dismissed_reason\","]
-#[doc = " \"html_url\","]
-#[doc = " \"instances\","]
-#[doc = " \"number\","]
-#[doc = " \"rule\","]
-#[doc = " \"state\","]
-#[doc = " \"tool\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"description\": \"The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ.`\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"dismissed_at\": {"]
-#[doc = " \"description\": \"The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"dismissed_by\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"dismissed_reason\": {"]
-#[doc = " \"description\": \"The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`.\","]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"description\": \"The GitHub URL of the alert resource.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"instances\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"dismissed\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"most_recent_instance\": {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The code scanning alert number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"rule\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"description\","]
-#[doc = " \"id\","]
-#[doc = " \"severity\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"A short description of the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"full_description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"help\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"A unique identifier for the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"description\": \"The severity of the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"none\","]
-#[doc = " \"note\","]
-#[doc = " \"warning\","]
-#[doc = " \"error\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tags\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of a code scanning alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"dismissed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tool\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"name\","]
-#[doc = " \"version\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"guid\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the tool used to generate the code scanning analysis alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"version\": {"]
-#[doc = " \"description\": \"The version of the tool used to detect the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertCreatedAlert {
@@ -13618,35 +6081,6 @@ pub struct CodeScanningAlertCreatedAlert {
pub url: ::std::string::String,
}
#[doc = "`CodeScanningAlertCreatedAlertInstancesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"dismissed\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertCreatedAlertInstancesItem {
@@ -13668,33 +6102,6 @@ pub struct CodeScanningAlertCreatedAlertInstancesItem {
pub state: CodeScanningAlertCreatedAlertInstancesItemState,
}
#[doc = "`CodeScanningAlertCreatedAlertInstancesItemLocation`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"end_column\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"end_line\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"path\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"start_column\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"start_line\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertCreatedAlertInstancesItemLocation {
@@ -13710,21 +6117,6 @@ pub struct CodeScanningAlertCreatedAlertInstancesItemLocation {
pub start_line: ::std::option::Option,
}
#[doc = "`CodeScanningAlertCreatedAlertInstancesItemMessage`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"text\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertCreatedAlertInstancesItemMessage {
@@ -13732,19 +6124,6 @@ pub struct CodeScanningAlertCreatedAlertInstancesItemMessage {
pub text: ::std::option::Option<::std::string::String>,
}
#[doc = "`CodeScanningAlertCreatedAlertInstancesItemState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"dismissed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -13798,57 +6177,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`CodeScanningAlertCreatedAlertRule`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"description\","]
-#[doc = " \"id\","]
-#[doc = " \"severity\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"A short description of the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"full_description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"help\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"A unique identifier for the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"description\": \"The severity of the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"none\","]
-#[doc = " \"note\","]
-#[doc = " \"warning\","]
-#[doc = " \"error\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tags\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertCreatedAlertRule {
@@ -13868,22 +6196,6 @@ pub struct CodeScanningAlertCreatedAlertRule {
pub tags: (),
}
#[doc = "The severity of the alert."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The severity of the alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"none\","]
-#[doc = " \"note\","]
-#[doc = " \"warning\","]
-#[doc = " \"error\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -13943,20 +6255,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CodeScanningAlertCreated
}
}
#[doc = "State of a code scanning alert."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"State of a code scanning alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"dismissed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -14008,39 +6306,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CodeScanningAlertCreated
}
}
#[doc = "`CodeScanningAlertCreatedAlertTool`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"name\","]
-#[doc = " \"version\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"guid\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the tool used to generate the code scanning analysis alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"version\": {"]
-#[doc = " \"description\": \"The version of the tool used to detect the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertCreatedAlertTool {
@@ -14052,34 +6317,6 @@ pub struct CodeScanningAlertCreatedAlertTool {
pub version: ::std::option::Option<::std::string::String>,
}
#[doc = "`CodeScanningAlertEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/code_scanning_alert$appeared_in_branch\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/code_scanning_alert$closed_by_user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/code_scanning_alert$created\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/code_scanning_alert$fixed\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/code_scanning_alert$reopened\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/code_scanning_alert$reopened_by_user\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum CodeScanningAlertEvent {
@@ -14121,234 +6358,6 @@ impl ::std::convert::From for CodeScanningAlert
}
}
#[doc = "`CodeScanningAlertFixed`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"code_scanning_alert fixed event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"alert\","]
-#[doc = " \"commit_oid\","]
-#[doc = " \"ref\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"fixed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"alert\": {"]
-#[doc = " \"description\": \"The code scanning alert involved in the event.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"dismissed_at\","]
-#[doc = " \"dismissed_by\","]
-#[doc = " \"dismissed_reason\","]
-#[doc = " \"html_url\","]
-#[doc = " \"instances\","]
-#[doc = " \"number\","]
-#[doc = " \"rule\","]
-#[doc = " \"state\","]
-#[doc = " \"tool\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"description\": \"The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ.`\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"dismissed_at\": {"]
-#[doc = " \"description\": \"The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"dismissed_by\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"dismissed_reason\": {"]
-#[doc = " \"description\": \"The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"false positive\","]
-#[doc = " \"won't fix\","]
-#[doc = " \"used in tests\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"description\": \"The GitHub URL of the alert resource.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"instances\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"fixed\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"instances_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"most_recent_instance\": {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The code scanning alert number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"rule\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"description\","]
-#[doc = " \"id\","]
-#[doc = " \"severity\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"A short description of the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"full_description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"help\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"A unique identifier for the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"description\": \"The severity of the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"none\","]
-#[doc = " \"note\","]
-#[doc = " \"warning\","]
-#[doc = " \"error\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tags\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of a code scanning alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"fixed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tool\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"name\","]
-#[doc = " \"version\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"guid\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the tool used to generate the code scanning analysis alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"version\": {"]
-#[doc = " \"description\": \"The version of the tool used to detect the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"commit_oid\": {"]
-#[doc = " \"description\": \"The commit SHA of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"description\": \"The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/github-org\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertFixed {
@@ -14367,18 +6376,6 @@ pub struct CodeScanningAlertFixed {
pub sender: GithubOrg,
}
#[doc = "`CodeScanningAlertFixedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"fixed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -14426,192 +6423,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CodeScanningAlertFixedAc
}
}
#[doc = "The code scanning alert involved in the event."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The code scanning alert involved in the event.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"dismissed_at\","]
-#[doc = " \"dismissed_by\","]
-#[doc = " \"dismissed_reason\","]
-#[doc = " \"html_url\","]
-#[doc = " \"instances\","]
-#[doc = " \"number\","]
-#[doc = " \"rule\","]
-#[doc = " \"state\","]
-#[doc = " \"tool\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"description\": \"The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ.`\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"dismissed_at\": {"]
-#[doc = " \"description\": \"The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"dismissed_by\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"dismissed_reason\": {"]
-#[doc = " \"description\": \"The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"false positive\","]
-#[doc = " \"won't fix\","]
-#[doc = " \"used in tests\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"description\": \"The GitHub URL of the alert resource.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"instances\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"fixed\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"instances_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"most_recent_instance\": {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The code scanning alert number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"rule\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"description\","]
-#[doc = " \"id\","]
-#[doc = " \"severity\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"A short description of the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"full_description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"help\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"A unique identifier for the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"description\": \"The severity of the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"none\","]
-#[doc = " \"note\","]
-#[doc = " \"warning\","]
-#[doc = " \"error\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tags\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of a code scanning alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"fixed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tool\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"name\","]
-#[doc = " \"version\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"guid\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the tool used to generate the code scanning analysis alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"version\": {"]
-#[doc = " \"description\": \"The version of the tool used to detect the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertFixedAlert {
@@ -14638,21 +6449,6 @@ pub struct CodeScanningAlertFixedAlert {
pub url: ::std::string::String,
}
#[doc = "The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"false positive\","]
-#[doc = " \"won't fix\","]
-#[doc = " \"used in tests\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -14708,34 +6504,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CodeScanningAlertFixedAl
}
}
#[doc = "`CodeScanningAlertFixedAlertInstancesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"fixed\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertFixedAlertInstancesItem {
@@ -14757,33 +6525,6 @@ pub struct CodeScanningAlertFixedAlertInstancesItem {
pub state: CodeScanningAlertFixedAlertInstancesItemState,
}
#[doc = "`CodeScanningAlertFixedAlertInstancesItemLocation`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"end_column\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"end_line\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"path\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"start_column\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"start_line\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertFixedAlertInstancesItemLocation {
@@ -14799,21 +6540,6 @@ pub struct CodeScanningAlertFixedAlertInstancesItemLocation {
pub start_line: ::std::option::Option,
}
#[doc = "`CodeScanningAlertFixedAlertInstancesItemMessage`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"text\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertFixedAlertInstancesItemMessage {
@@ -14821,18 +6547,6 @@ pub struct CodeScanningAlertFixedAlertInstancesItemMessage {
pub text: ::std::option::Option<::std::string::String>,
}
#[doc = "`CodeScanningAlertFixedAlertInstancesItemState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"fixed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -14882,57 +6596,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`CodeScanningAlertFixedAlertRule`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"description\","]
-#[doc = " \"id\","]
-#[doc = " \"severity\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"A short description of the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"full_description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"help\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"A unique identifier for the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"description\": \"The severity of the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"none\","]
-#[doc = " \"note\","]
-#[doc = " \"warning\","]
-#[doc = " \"error\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tags\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertFixedAlertRule {
@@ -14952,22 +6615,6 @@ pub struct CodeScanningAlertFixedAlertRule {
pub tags: (),
}
#[doc = "The severity of the alert."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The severity of the alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"none\","]
-#[doc = " \"note\","]
-#[doc = " \"warning\","]
-#[doc = " \"error\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -15027,19 +6674,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CodeScanningAlertFixedAl
}
}
#[doc = "State of a code scanning alert."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"State of a code scanning alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"fixed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -15087,39 +6721,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CodeScanningAlertFixedAl
}
}
#[doc = "`CodeScanningAlertFixedAlertTool`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"name\","]
-#[doc = " \"version\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"guid\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the tool used to generate the code scanning analysis alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"version\": {"]
-#[doc = " \"description\": \"The version of the tool used to detect the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertFixedAlertTool {
@@ -15131,212 +6732,6 @@ pub struct CodeScanningAlertFixedAlertTool {
pub version: ::std::option::Option<::std::string::String>,
}
#[doc = "`CodeScanningAlertReopened`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"code_scanning_alert reopened event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"alert\","]
-#[doc = " \"commit_oid\","]
-#[doc = " \"ref\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"reopened\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"alert\": {"]
-#[doc = " \"description\": \"The code scanning alert involved in the event.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"dismissed_at\","]
-#[doc = " \"dismissed_by\","]
-#[doc = " \"dismissed_reason\","]
-#[doc = " \"html_url\","]
-#[doc = " \"instances\","]
-#[doc = " \"number\","]
-#[doc = " \"rule\","]
-#[doc = " \"state\","]
-#[doc = " \"tool\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"description\": \"The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ.`\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"dismissed_at\": {"]
-#[doc = " \"description\": \"The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"dismissed_by\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"dismissed_reason\": {"]
-#[doc = " \"description\": \"The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`.\","]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"description\": \"The GitHub URL of the alert resource.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"instances\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"most_recent_instance\": {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The code scanning alert number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"rule\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"description\","]
-#[doc = " \"id\","]
-#[doc = " \"severity\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"A short description of the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"full_description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"help\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"A unique identifier for the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"description\": \"The severity of the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"none\","]
-#[doc = " \"note\","]
-#[doc = " \"warning\","]
-#[doc = " \"error\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tags\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of a code scanning alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"dismissed\","]
-#[doc = " \"fixed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tool\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"name\","]
-#[doc = " \"version\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"guid\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the tool used to generate the code scanning analysis alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"version\": {"]
-#[doc = " \"description\": \"The version of the tool used to detect the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"commit_oid\": {"]
-#[doc = " \"description\": \"The commit SHA of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"description\": \"The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/github-org\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertReopened {
@@ -15355,18 +6750,6 @@ pub struct CodeScanningAlertReopened {
pub sender: GithubOrg,
}
#[doc = "`CodeScanningAlertReopenedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"reopened\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -15414,170 +6797,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CodeScanningAlertReopene
}
}
#[doc = "The code scanning alert involved in the event."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The code scanning alert involved in the event.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"dismissed_at\","]
-#[doc = " \"dismissed_by\","]
-#[doc = " \"dismissed_reason\","]
-#[doc = " \"html_url\","]
-#[doc = " \"instances\","]
-#[doc = " \"number\","]
-#[doc = " \"rule\","]
-#[doc = " \"state\","]
-#[doc = " \"tool\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"description\": \"The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ.`\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"dismissed_at\": {"]
-#[doc = " \"description\": \"The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"dismissed_by\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"dismissed_reason\": {"]
-#[doc = " \"description\": \"The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`.\","]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"description\": \"The GitHub URL of the alert resource.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"instances\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"most_recent_instance\": {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The code scanning alert number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"rule\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"description\","]
-#[doc = " \"id\","]
-#[doc = " \"severity\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"A short description of the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"full_description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"help\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"A unique identifier for the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"description\": \"The severity of the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"none\","]
-#[doc = " \"note\","]
-#[doc = " \"warning\","]
-#[doc = " \"error\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tags\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of a code scanning alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"dismissed\","]
-#[doc = " \"fixed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tool\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"name\","]
-#[doc = " \"version\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"guid\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the tool used to generate the code scanning analysis alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"version\": {"]
-#[doc = " \"description\": \"The version of the tool used to detect the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertReopenedAlert {
@@ -15602,34 +6821,6 @@ pub struct CodeScanningAlertReopenedAlert {
pub url: ::std::string::String,
}
#[doc = "`CodeScanningAlertReopenedAlertInstancesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertReopenedAlertInstancesItem {
@@ -15651,33 +6842,6 @@ pub struct CodeScanningAlertReopenedAlertInstancesItem {
pub state: CodeScanningAlertReopenedAlertInstancesItemState,
}
#[doc = "`CodeScanningAlertReopenedAlertInstancesItemLocation`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"end_column\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"end_line\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"path\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"start_column\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"start_line\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertReopenedAlertInstancesItemLocation {
@@ -15693,21 +6857,6 @@ pub struct CodeScanningAlertReopenedAlertInstancesItemLocation {
pub start_line: ::std::option::Option,
}
#[doc = "`CodeScanningAlertReopenedAlertInstancesItemMessage`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"text\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertReopenedAlertInstancesItemMessage {
@@ -15715,18 +6864,6 @@ pub struct CodeScanningAlertReopenedAlertInstancesItemMessage {
pub text: ::std::option::Option<::std::string::String>,
}
#[doc = "`CodeScanningAlertReopenedAlertInstancesItemState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -15776,57 +6913,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`CodeScanningAlertReopenedAlertRule`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"description\","]
-#[doc = " \"id\","]
-#[doc = " \"severity\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"A short description of the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"full_description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"help\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"A unique identifier for the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"description\": \"The severity of the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"none\","]
-#[doc = " \"note\","]
-#[doc = " \"warning\","]
-#[doc = " \"error\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tags\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertReopenedAlertRule {
@@ -15846,22 +6932,6 @@ pub struct CodeScanningAlertReopenedAlertRule {
pub tags: (),
}
#[doc = "The severity of the alert."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The severity of the alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"none\","]
-#[doc = " \"note\","]
-#[doc = " \"warning\","]
-#[doc = " \"error\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -15921,21 +6991,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CodeScanningAlertReopene
}
}
#[doc = "State of a code scanning alert."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"State of a code scanning alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"dismissed\","]
-#[doc = " \"fixed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -15991,39 +7046,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CodeScanningAlertReopene
}
}
#[doc = "`CodeScanningAlertReopenedAlertTool`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"name\","]
-#[doc = " \"version\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"guid\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the tool used to generate the code scanning analysis alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"version\": {"]
-#[doc = " \"description\": \"The version of the tool used to detect the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertReopenedAlertTool {
@@ -16035,192 +7057,6 @@ pub struct CodeScanningAlertReopenedAlertTool {
pub version: ::std::option::Option<::std::string::String>,
}
#[doc = "`CodeScanningAlertReopenedByUser`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"code_scanning_alert reopened_by_user event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"alert\","]
-#[doc = " \"commit_oid\","]
-#[doc = " \"ref\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"reopened_by_user\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"alert\": {"]
-#[doc = " \"description\": \"The code scanning alert involved in the event.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"dismissed_at\","]
-#[doc = " \"dismissed_by\","]
-#[doc = " \"dismissed_reason\","]
-#[doc = " \"html_url\","]
-#[doc = " \"instances\","]
-#[doc = " \"number\","]
-#[doc = " \"rule\","]
-#[doc = " \"state\","]
-#[doc = " \"tool\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"description\": \"The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ.`\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"dismissed_at\": {"]
-#[doc = " \"description\": \"The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"dismissed_by\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"dismissed_reason\": {"]
-#[doc = " \"description\": \"The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`.\","]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"description\": \"The GitHub URL of the alert resource.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"instances\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"most_recent_instance\": {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The code scanning alert number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"rule\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"description\","]
-#[doc = " \"id\","]
-#[doc = " \"severity\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"A short description of the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"A unique identifier for the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"description\": \"The severity of the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"none\","]
-#[doc = " \"note\","]
-#[doc = " \"warning\","]
-#[doc = " \"error\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of a code scanning alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tool\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"name\","]
-#[doc = " \"version\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the tool used to generate the code scanning analysis alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"version\": {"]
-#[doc = " \"description\": \"The version of the tool used to detect the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"commit_oid\": {"]
-#[doc = " \"description\": \"The commit SHA of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"description\": \"The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertReopenedByUser {
@@ -16239,18 +7075,6 @@ pub struct CodeScanningAlertReopenedByUser {
pub sender: User,
}
#[doc = "`CodeScanningAlertReopenedByUserAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"reopened_by_user\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -16298,150 +7122,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CodeScanningAlertReopene
}
}
#[doc = "The code scanning alert involved in the event."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The code scanning alert involved in the event.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"dismissed_at\","]
-#[doc = " \"dismissed_by\","]
-#[doc = " \"dismissed_reason\","]
-#[doc = " \"html_url\","]
-#[doc = " \"instances\","]
-#[doc = " \"number\","]
-#[doc = " \"rule\","]
-#[doc = " \"state\","]
-#[doc = " \"tool\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"description\": \"The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ.`\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"dismissed_at\": {"]
-#[doc = " \"description\": \"The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.\","]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"dismissed_by\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"dismissed_reason\": {"]
-#[doc = " \"description\": \"The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`.\","]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"description\": \"The GitHub URL of the alert resource.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"instances\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"most_recent_instance\": {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The code scanning alert number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"rule\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"description\","]
-#[doc = " \"id\","]
-#[doc = " \"severity\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"A short description of the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"A unique identifier for the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"description\": \"The severity of the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"none\","]
-#[doc = " \"note\","]
-#[doc = " \"warning\","]
-#[doc = " \"error\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of a code scanning alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tool\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"name\","]
-#[doc = " \"version\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the tool used to generate the code scanning analysis alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"version\": {"]
-#[doc = " \"description\": \"The version of the tool used to detect the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertReopenedByUserAlert {
@@ -16466,34 +7146,6 @@ pub struct CodeScanningAlertReopenedByUserAlert {
pub url: ::std::string::String,
}
#[doc = "`CodeScanningAlertReopenedByUserAlertInstancesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/alert-instance\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertReopenedByUserAlertInstancesItem {
@@ -16515,33 +7167,6 @@ pub struct CodeScanningAlertReopenedByUserAlertInstancesItem {
pub state: CodeScanningAlertReopenedByUserAlertInstancesItemState,
}
#[doc = "`CodeScanningAlertReopenedByUserAlertInstancesItemLocation`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"end_column\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"end_line\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"path\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"start_column\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"start_line\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertReopenedByUserAlertInstancesItemLocation {
@@ -16557,21 +7182,6 @@ pub struct CodeScanningAlertReopenedByUserAlertInstancesItemLocation {
pub start_line: ::std::option::Option,
}
#[doc = "`CodeScanningAlertReopenedByUserAlertInstancesItemMessage`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"text\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertReopenedByUserAlertInstancesItemMessage {
@@ -16579,18 +7189,6 @@ pub struct CodeScanningAlertReopenedByUserAlertInstancesItemMessage {
pub text: ::std::option::Option<::std::string::String>,
}
#[doc = "`CodeScanningAlertReopenedByUserAlertInstancesItemState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -16640,45 +7238,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`CodeScanningAlertReopenedByUserAlertRule`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"description\","]
-#[doc = " \"id\","]
-#[doc = " \"severity\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"A short description of the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"A unique identifier for the rule used to detect the alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"description\": \"The severity of the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"none\","]
-#[doc = " \"note\","]
-#[doc = " \"warning\","]
-#[doc = " \"error\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertReopenedByUserAlertRule {
@@ -16690,22 +7249,6 @@ pub struct CodeScanningAlertReopenedByUserAlertRule {
pub severity: ::std::option::Option,
}
#[doc = "The severity of the alert."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The severity of the alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"none\","]
-#[doc = " \"note\","]
-#[doc = " \"warning\","]
-#[doc = " \"error\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -16767,19 +7310,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "State of a code scanning alert."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"State of a code scanning alert.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -16827,33 +7357,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CodeScanningAlertReopene
}
}
#[doc = "`CodeScanningAlertReopenedByUserAlertTool`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"name\","]
-#[doc = " \"version\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the tool used to generate the code scanning analysis alert.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"version\": {"]
-#[doc = " \"description\": \"The version of the tool used to detect the alert.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CodeScanningAlertReopenedByUserAlertTool {
@@ -16863,83 +7366,6 @@ pub struct CodeScanningAlertReopenedByUserAlertTool {
pub version: ::std::option::Option<::std::string::String>,
}
#[doc = "`Commit`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Commit\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"added\","]
-#[doc = " \"author\","]
-#[doc = " \"committer\","]
-#[doc = " \"distinct\","]
-#[doc = " \"id\","]
-#[doc = " \"message\","]
-#[doc = " \"modified\","]
-#[doc = " \"removed\","]
-#[doc = " \"timestamp\","]
-#[doc = " \"tree_id\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"added\": {"]
-#[doc = " \"description\": \"An array of files added in the commit.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"author\": {"]
-#[doc = " \"$ref\": \"#/definitions/committer\""]
-#[doc = " },"]
-#[doc = " \"committer\": {"]
-#[doc = " \"$ref\": \"#/definitions/committer\""]
-#[doc = " },"]
-#[doc = " \"distinct\": {"]
-#[doc = " \"description\": \"Whether this commit is distinct from any that have been pushed before.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"message\": {"]
-#[doc = " \"description\": \"The commit message.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"modified\": {"]
-#[doc = " \"description\": \"An array of files modified by the commit.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"removed\": {"]
-#[doc = " \"description\": \"An array of files removed in the commit.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"timestamp\": {"]
-#[doc = " \"description\": \"The ISO 8601 timestamp of the commit.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"tree_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"description\": \"URL that points to the commit API resource.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct Commit {
@@ -16963,125 +7389,6 @@ pub struct Commit {
pub url: ::std::string::String,
}
#[doc = "A commit comment is created. The type of activity is specified in the `action` property. "]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"commit_comment created event\","]
-#[doc = " \"description\": \"A commit comment is created. The type of activity is specified in the `action` property. \","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"comment\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"description\": \"The action performed. Can be `created`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"comment\": {"]
-#[doc = " \"description\": \"The [commit comment](https://docs.github.com/en/rest/reference/repos#get-a-commit-comment) resource.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author_association\","]
-#[doc = " \"body\","]
-#[doc = " \"commit_id\","]
-#[doc = " \"created_at\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"line\","]
-#[doc = " \"node_id\","]
-#[doc = " \"path\","]
-#[doc = " \"position\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"description\": \"The text of the comment.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"commit_id\": {"]
-#[doc = " \"description\": \"The SHA of the commit to which the comment applies.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The ID of the commit comment.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"line\": {"]
-#[doc = " \"description\": \"The line of the blob to which the comment applies. The last line of the range for a multi-line comment\","]
-#[doc = " \"type\": ["]
-#[doc = " \"integer\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"description\": \"The node ID of the commit comment.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"path\": {"]
-#[doc = " \"description\": \"The relative path of the file to which the comment applies.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"position\": {"]
-#[doc = " \"description\": \"The line index in the diff to which the comment applies.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"integer\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CommitCommentCreated {
@@ -17096,19 +7403,6 @@ pub struct CommitCommentCreated {
pub sender: User,
}
#[doc = "The action performed. Can be `created`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The action performed. Can be `created`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -17156,91 +7450,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CommitCommentCreatedActi
}
}
#[doc = "The [commit comment](https://docs.github.com/en/rest/reference/repos#get-a-commit-comment) resource."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The [commit comment](https://docs.github.com/en/rest/reference/repos#get-a-commit-comment) resource.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author_association\","]
-#[doc = " \"body\","]
-#[doc = " \"commit_id\","]
-#[doc = " \"created_at\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"line\","]
-#[doc = " \"node_id\","]
-#[doc = " \"path\","]
-#[doc = " \"position\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"description\": \"The text of the comment.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"commit_id\": {"]
-#[doc = " \"description\": \"The SHA of the commit to which the comment applies.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The ID of the commit comment.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"line\": {"]
-#[doc = " \"description\": \"The line of the blob to which the comment applies. The last line of the range for a multi-line comment\","]
-#[doc = " \"type\": ["]
-#[doc = " \"integer\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"description\": \"The node ID of the commit comment.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"path\": {"]
-#[doc = " \"description\": \"The relative path of the file to which the comment applies.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"position\": {"]
-#[doc = " \"description\": \"The line index in the diff to which the comment applies.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"integer\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CommitCommentCreatedComment {
@@ -17266,19 +7475,6 @@ pub struct CommitCommentCreatedComment {
pub user: User,
}
#[doc = "`CommitCommentEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/commit_comment$created\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(transparent)]
pub struct CommitCommentEvent(pub CommitCommentCreated);
@@ -17299,46 +7495,6 @@ impl ::std::convert::From for CommitCommentEvent {
}
}
#[doc = "`CommitSimple`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"SimpleCommit\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author\","]
-#[doc = " \"committer\","]
-#[doc = " \"id\","]
-#[doc = " \"message\","]
-#[doc = " \"timestamp\","]
-#[doc = " \"tree_id\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author\": {"]
-#[doc = " \"$ref\": \"#/definitions/committer\""]
-#[doc = " },"]
-#[doc = " \"committer\": {"]
-#[doc = " \"$ref\": \"#/definitions/committer\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"message\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"timestamp\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"tree_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CommitSimple {
@@ -17350,48 +7506,6 @@ pub struct CommitSimple {
pub tree_id: ::std::string::String,
}
#[doc = "Metaproperties for Git author/committer information."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Committer\","]
-#[doc = " \"description\": \"Metaproperties for Git author/committer information.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"email\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"date\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"email\": {"]
-#[doc = " \"description\": \"The git author's email address.\","]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"email\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The git author's name.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"username\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct Committer {
@@ -17405,66 +7519,6 @@ pub struct Committer {
pub username: ::std::option::Option<::std::string::String>,
}
#[doc = "`ContentReferenceCreated`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"content_reference created event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"content_reference\","]
-#[doc = " \"installation\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"content_reference\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"reference\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"reference\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ContentReferenceCreated {
@@ -17477,18 +7531,6 @@ pub struct ContentReferenceCreated {
pub sender: User,
}
#[doc = "`ContentReferenceCreatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -17536,33 +7578,6 @@ impl ::std::convert::TryFrom<::std::string::String> for ContentReferenceCreatedA
}
}
#[doc = "`ContentReferenceCreatedContentReference`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"reference\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"reference\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ContentReferenceCreatedContentReference {
@@ -17571,19 +7586,6 @@ pub struct ContentReferenceCreatedContentReference {
pub reference: ::std::string::String,
}
#[doc = "`ContentReferenceEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/content_reference$created\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(transparent)]
pub struct ContentReferenceEvent(pub ContentReferenceCreated);
@@ -17604,69 +7606,6 @@ impl ::std::convert::From for ContentReferenceEvent {
}
}
#[doc = "A Git branch or tag is created."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"create event\","]
-#[doc = " \"description\": \"A Git branch or tag is created.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"description\","]
-#[doc = " \"master_branch\","]
-#[doc = " \"pusher_type\","]
-#[doc = " \"ref\","]
-#[doc = " \"ref_type\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"The repository's current description.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"master_branch\": {"]
-#[doc = " \"description\": \"The name of the repository's default branch (usually `main`).\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pusher_type\": {"]
-#[doc = " \"description\": \"The pusher type for the event. Can be either `user` or a deploy key.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"description\": \"The [`git ref`](https://docs.github.com/en/rest/reference/git#get-a-reference) resource.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref_type\": {"]
-#[doc = " \"description\": \"The type of Git ref object created in the repository. Can be either `branch` or `tag`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"tag\","]
-#[doc = " \"branch\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct CreateEvent {
@@ -17689,20 +7628,6 @@ pub struct CreateEvent {
pub sender: User,
}
#[doc = "The type of Git ref object created in the repository. Can be either `branch` or `tag`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The type of Git ref object created in the repository. Can be either `branch` or `tag`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"tag\","]
-#[doc = " \"branch\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -17754,56 +7679,6 @@ impl ::std::convert::TryFrom<::std::string::String> for CreateEventRefType {
}
}
#[doc = "A Git branch or tag is deleted."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"delete event\","]
-#[doc = " \"description\": \"A Git branch or tag is deleted.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"pusher_type\","]
-#[doc = " \"ref\","]
-#[doc = " \"ref_type\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pusher_type\": {"]
-#[doc = " \"description\": \"The pusher type for the event. Can be either `user` or a deploy key.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"description\": \"The [`git ref`](https://docs.github.com/en/rest/reference/git#get-a-reference) resource.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref_type\": {"]
-#[doc = " \"description\": \"The type of Git ref object deleted in the repository. Can be either `branch` or `tag`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"tag\","]
-#[doc = " \"branch\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DeleteEvent {
@@ -17822,20 +7697,6 @@ pub struct DeleteEvent {
pub sender: User,
}
#[doc = "The type of Git ref object deleted in the repository. Can be either `branch` or `tag`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The type of Git ref object deleted in the repository. Can be either `branch` or `tag`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"tag\","]
-#[doc = " \"branch\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -17887,82 +7748,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DeleteEventRefType {
}
}
#[doc = "`DeployKeyCreated`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"deploy_key created event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"key\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"key\": {"]
-#[doc = " \"description\": \"The [`deploy key`](https://docs.github.com/en/rest/reference/repos#get-a-deploy-key) resource.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"id\","]
-#[doc = " \"key\","]
-#[doc = " \"read_only\","]
-#[doc = " \"title\","]
-#[doc = " \"url\","]
-#[doc = " \"verified\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"key\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"read_only\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"verified\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DeployKeyCreated {
@@ -17976,18 +7761,6 @@ pub struct DeployKeyCreated {
pub sender: User,
}
#[doc = "`DeployKeyCreatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -18035,50 +7808,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DeployKeyCreatedAction {
}
}
#[doc = "The [`deploy key`](https://docs.github.com/en/rest/reference/repos#get-a-deploy-key) resource."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The [`deploy key`](https://docs.github.com/en/rest/reference/repos#get-a-deploy-key) resource.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"id\","]
-#[doc = " \"key\","]
-#[doc = " \"read_only\","]
-#[doc = " \"title\","]
-#[doc = " \"url\","]
-#[doc = " \"verified\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"key\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"read_only\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"verified\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DeployKeyCreatedKey {
@@ -18091,82 +7820,6 @@ pub struct DeployKeyCreatedKey {
pub verified: bool,
}
#[doc = "`DeployKeyDeleted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"deploy_key deleted event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"key\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"key\": {"]
-#[doc = " \"description\": \"The [`deploy key`](https://docs.github.com/en/rest/reference/repos#get-a-deploy-key) resource.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"id\","]
-#[doc = " \"key\","]
-#[doc = " \"read_only\","]
-#[doc = " \"title\","]
-#[doc = " \"url\","]
-#[doc = " \"verified\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"key\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"read_only\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"verified\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DeployKeyDeleted {
@@ -18180,18 +7833,6 @@ pub struct DeployKeyDeleted {
pub sender: User,
}
#[doc = "`DeployKeyDeletedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -18239,50 +7880,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DeployKeyDeletedAction {
}
}
#[doc = "The [`deploy key`](https://docs.github.com/en/rest/reference/repos#get-a-deploy-key) resource."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The [`deploy key`](https://docs.github.com/en/rest/reference/repos#get-a-deploy-key) resource.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"id\","]
-#[doc = " \"key\","]
-#[doc = " \"read_only\","]
-#[doc = " \"title\","]
-#[doc = " \"url\","]
-#[doc = " \"verified\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"key\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"read_only\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"verified\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DeployKeyDeletedKey {
@@ -18295,22 +7892,6 @@ pub struct DeployKeyDeletedKey {
pub verified: bool,
}
#[doc = "`DeployKeyEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/deploy_key$created\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/deploy_key$deleted\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum DeployKeyEvent {
@@ -18328,135 +7909,6 @@ impl ::std::convert::From for DeployKeyEvent {
}
}
#[doc = "`DeploymentCreated`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"deployment created event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"deployment\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\","]
-#[doc = " \"workflow\","]
-#[doc = " \"workflow_run\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"deployment\": {"]
-#[doc = " \"description\": \"The [deployment](https://docs.github.com/en/rest/reference/repos#list-deployments).\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"creator\","]
-#[doc = " \"description\","]
-#[doc = " \"environment\","]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"original_environment\","]
-#[doc = " \"payload\","]
-#[doc = " \"ref\","]
-#[doc = " \"repository_url\","]
-#[doc = " \"sha\","]
-#[doc = " \"statuses_url\","]
-#[doc = " \"task\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"creator\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"environment\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"original_environment\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"payload\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"performed_via_github_app\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repository_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"statuses_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"task\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"workflow\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"workflow_run\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DeploymentCreated {
@@ -18472,18 +7924,6 @@ pub struct DeploymentCreated {
pub workflow_run: (),
}
#[doc = "`DeploymentCreatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -18531,95 +7971,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DeploymentCreatedAction
}
}
#[doc = "The [deployment](https://docs.github.com/en/rest/reference/repos#list-deployments)."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The [deployment](https://docs.github.com/en/rest/reference/repos#list-deployments).\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"creator\","]
-#[doc = " \"description\","]
-#[doc = " \"environment\","]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"original_environment\","]
-#[doc = " \"payload\","]
-#[doc = " \"ref\","]
-#[doc = " \"repository_url\","]
-#[doc = " \"sha\","]
-#[doc = " \"statuses_url\","]
-#[doc = " \"task\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"creator\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"environment\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"original_environment\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"payload\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"performed_via_github_app\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repository_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"statuses_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"task\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DeploymentCreatedDeployment {
@@ -18643,33 +7994,10 @@ pub struct DeploymentCreatedDeployment {
pub url: ::std::string::String,
}
#[doc = "`DeploymentCreatedDeploymentPayload`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct DeploymentCreatedDeploymentPayload {}
#[doc = "`DeploymentEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/deployment$created\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(transparent)]
pub struct DeploymentEvent(pub DeploymentCreated);
@@ -18690,202 +8018,6 @@ impl ::std::convert::From for DeploymentEvent {
}
}
#[doc = "`DeploymentStatusCreated`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"deployment_status created event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"deployment\","]
-#[doc = " \"deployment_status\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"deployment\": {"]
-#[doc = " \"description\": \"The [deployment](https://docs.github.com/en/rest/reference/repos#list-deployments) that this status is associated with.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"creator\","]
-#[doc = " \"description\","]
-#[doc = " \"environment\","]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"original_environment\","]
-#[doc = " \"payload\","]
-#[doc = " \"performed_via_github_app\","]
-#[doc = " \"ref\","]
-#[doc = " \"repository_url\","]
-#[doc = " \"sha\","]
-#[doc = " \"statuses_url\","]
-#[doc = " \"task\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"creator\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"environment\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"original_environment\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"payload\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"performed_via_github_app\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repository_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"statuses_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"task\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"deployment_status\": {"]
-#[doc = " \"description\": \"The [deployment status](https://docs.github.com/en/rest/reference/repos#list-deployment-statuses).\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"creator\","]
-#[doc = " \"deployment_url\","]
-#[doc = " \"description\","]
-#[doc = " \"environment\","]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"repository_url\","]
-#[doc = " \"state\","]
-#[doc = " \"target_url\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"creator\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"deployment_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"The optional human-readable description added to the status.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"environment\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"performed_via_github_app\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"The new state. Can be `pending`, `success`, `failure`, or `error`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"target_url\": {"]
-#[doc = " \"description\": \"The optional link added to the status.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DeploymentStatusCreated {
@@ -18900,18 +8032,6 @@ pub struct DeploymentStatusCreated {
pub sender: User,
}
#[doc = "`DeploymentStatusCreatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -18959,96 +8079,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DeploymentStatusCreatedA
}
}
#[doc = "The [deployment](https://docs.github.com/en/rest/reference/repos#list-deployments) that this status is associated with."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The [deployment](https://docs.github.com/en/rest/reference/repos#list-deployments) that this status is associated with.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"creator\","]
-#[doc = " \"description\","]
-#[doc = " \"environment\","]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"original_environment\","]
-#[doc = " \"payload\","]
-#[doc = " \"performed_via_github_app\","]
-#[doc = " \"ref\","]
-#[doc = " \"repository_url\","]
-#[doc = " \"sha\","]
-#[doc = " \"statuses_url\","]
-#[doc = " \"task\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"creator\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"environment\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"original_environment\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"payload\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"performed_via_github_app\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repository_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"statuses_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"task\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DeploymentStatusCreatedDeployment {
@@ -19071,99 +8101,10 @@ pub struct DeploymentStatusCreatedDeployment {
pub url: ::std::string::String,
}
#[doc = "`DeploymentStatusCreatedDeploymentPayload`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct DeploymentStatusCreatedDeploymentPayload {}
#[doc = "The [deployment status](https://docs.github.com/en/rest/reference/repos#list-deployment-statuses)."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The [deployment status](https://docs.github.com/en/rest/reference/repos#list-deployment-statuses).\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"creator\","]
-#[doc = " \"deployment_url\","]
-#[doc = " \"description\","]
-#[doc = " \"environment\","]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"repository_url\","]
-#[doc = " \"state\","]
-#[doc = " \"target_url\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"creator\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"deployment_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"The optional human-readable description added to the status.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"environment\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"performed_via_github_app\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"The new state. Can be `pending`, `success`, `failure`, or `error`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"target_url\": {"]
-#[doc = " \"description\": \"The optional link added to the status.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DeploymentStatusCreatedDeploymentStatus {
@@ -19186,19 +8127,6 @@ pub struct DeploymentStatusCreatedDeploymentStatus {
pub url: ::std::string::String,
}
#[doc = "`DeploymentStatusEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/deployment_status$created\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(transparent)]
pub struct DeploymentStatusEvent(pub DeploymentStatusCreated);
@@ -19219,163 +8147,6 @@ impl ::std::convert::From for DeploymentStatusEvent {
}
}
#[doc = "`Discussion`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Discussion\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"active_lock_reason\","]
-#[doc = " \"answer_chosen_at\","]
-#[doc = " \"answer_chosen_by\","]
-#[doc = " \"answer_html_url\","]
-#[doc = " \"author_association\","]
-#[doc = " \"body\","]
-#[doc = " \"category\","]
-#[doc = " \"comments\","]
-#[doc = " \"created_at\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"locked\","]
-#[doc = " \"node_id\","]
-#[doc = " \"number\","]
-#[doc = " \"repository_url\","]
-#[doc = " \"state\","]
-#[doc = " \"title\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"active_lock_reason\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"answer_chosen_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"answer_chosen_by\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"answer_html_url\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"category\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"emoji\","]
-#[doc = " \"id\","]
-#[doc = " \"is_answerable\","]
-#[doc = " \"name\","]
-#[doc = " \"repository_id\","]
-#[doc = " \"slug\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"emoji\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"is_answerable\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repository_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"slug\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"comments\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"repository_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"locked\","]
-#[doc = " \"converting\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct Discussion {
@@ -19400,148 +8171,6 @@ pub struct Discussion {
pub user: User,
}
#[doc = "`DiscussionAnswered`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"discussion answered event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"answer\","]
-#[doc = " \"discussion\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"answered\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"answer\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author_association\","]
-#[doc = " \"body\","]
-#[doc = " \"child_comment_count\","]
-#[doc = " \"created_at\","]
-#[doc = " \"discussion_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"parent_id\","]
-#[doc = " \"repository_url\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"child_comment_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"discussion_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"parent_id\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"repository_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"discussion\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"answer_chosen_at\","]
-#[doc = " \"answer_chosen_by\","]
-#[doc = " \"answer_html_url\","]
-#[doc = " \"category\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"answer_chosen_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"answer_chosen_by\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"answer_html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"category\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"is_answerable\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"is_answerable\": {"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " true"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionAnswered {
@@ -19556,18 +8185,6 @@ pub struct DiscussionAnswered {
pub sender: User,
}
#[doc = "`DiscussionAnsweredAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"answered\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -19615,70 +8232,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DiscussionAnsweredAction
}
}
#[doc = "`DiscussionAnsweredAnswer`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author_association\","]
-#[doc = " \"body\","]
-#[doc = " \"child_comment_count\","]
-#[doc = " \"created_at\","]
-#[doc = " \"discussion_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"parent_id\","]
-#[doc = " \"repository_url\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"child_comment_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"discussion_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"parent_id\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"repository_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionAnsweredAnswer {
@@ -19696,57 +8249,6 @@ pub struct DiscussionAnsweredAnswer {
pub user: User,
}
#[doc = "`DiscussionAnsweredDiscussion`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"answer_chosen_at\","]
-#[doc = " \"answer_chosen_by\","]
-#[doc = " \"answer_html_url\","]
-#[doc = " \"category\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"answer_chosen_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"answer_chosen_by\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"answer_html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"category\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"is_answerable\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"is_answerable\": {"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " true"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionAnsweredDiscussion {
@@ -19771,130 +8273,6 @@ pub struct DiscussionAnsweredDiscussion {
pub user: User,
}
#[doc = "`DiscussionAnsweredDiscussionAnswerChosenBy`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"avatar_url\","]
-#[doc = " \"events_url\","]
-#[doc = " \"followers_url\","]
-#[doc = " \"following_url\","]
-#[doc = " \"gists_url\","]
-#[doc = " \"gravatar_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"login\","]
-#[doc = " \"node_id\","]
-#[doc = " \"organizations_url\","]
-#[doc = " \"received_events_url\","]
-#[doc = " \"repos_url\","]
-#[doc = " \"site_admin\","]
-#[doc = " \"starred_url\","]
-#[doc = " \"subscriptions_url\","]
-#[doc = " \"type\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"avatar_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"email\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"followers_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"following_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gists_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gravatar_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"login\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"organizations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"received_events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"repos_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"site_admin\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"starred_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"subscriptions_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"Bot\","]
-#[doc = " \"User\","]
-#[doc = " \"Organization\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionAnsweredDiscussionAnswerChosenBy {
@@ -19923,20 +8301,6 @@ pub struct DiscussionAnsweredDiscussionAnswerChosenBy {
pub url: ::std::string::String,
}
#[doc = "`DiscussionAnsweredDiscussionAnswerChosenByType`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"Bot\","]
-#[doc = " \"User\","]
-#[doc = " \"Organization\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -19991,60 +8355,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`DiscussionAnsweredDiscussionCategory`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"emoji\","]
-#[doc = " \"id\","]
-#[doc = " \"is_answerable\","]
-#[doc = " \"name\","]
-#[doc = " \"repository_id\","]
-#[doc = " \"slug\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"emoji\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"is_answerable\": {"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " true"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repository_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"slug\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionAnsweredDiscussionCategory {
@@ -20059,20 +8369,6 @@ pub struct DiscussionAnsweredDiscussionCategory {
pub updated_at: ::std::string::String,
}
#[doc = "`DiscussionAnsweredDiscussionState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"locked\","]
-#[doc = " \"converting\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -20128,57 +8424,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DiscussionAnsweredDiscus
}
}
#[doc = "`DiscussionCategory`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"emoji\","]
-#[doc = " \"id\","]
-#[doc = " \"is_answerable\","]
-#[doc = " \"name\","]
-#[doc = " \"repository_id\","]
-#[doc = " \"slug\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"emoji\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"is_answerable\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repository_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"slug\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionCategory {
@@ -20193,111 +8438,6 @@ pub struct DiscussionCategory {
pub updated_at: ::std::string::String,
}
#[doc = "`DiscussionCategoryChanged`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"discussion category changed event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"discussion\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"category_changed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"category\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"category\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"emoji\","]
-#[doc = " \"id\","]
-#[doc = " \"is_answerable\","]
-#[doc = " \"name\","]
-#[doc = " \"repository_id\","]
-#[doc = " \"slug\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"emoji\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"is_answerable\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repository_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"slug\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"discussion\": {"]
-#[doc = " \"$ref\": \"#/definitions/discussion\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionCategoryChanged {
@@ -20312,18 +8452,6 @@ pub struct DiscussionCategoryChanged {
pub sender: User,
}
#[doc = "`DiscussionCategoryChangedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"category_changed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -20371,198 +8499,18 @@ impl ::std::convert::TryFrom<::std::string::String> for DiscussionCategoryChange
}
}
#[doc = "`DiscussionCategoryChangedChanges`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"category\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"category\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"emoji\","]
-#[doc = " \"id\","]
-#[doc = " \"is_answerable\","]
-#[doc = " \"name\","]
-#[doc = " \"repository_id\","]
-#[doc = " \"slug\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"emoji\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"is_answerable\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repository_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"slug\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionCategoryChangedChanges {
pub category: DiscussionCategoryChangedChangesCategory,
}
#[doc = "`DiscussionCategoryChangedChangesCategory`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"emoji\","]
-#[doc = " \"id\","]
-#[doc = " \"is_answerable\","]
-#[doc = " \"name\","]
-#[doc = " \"repository_id\","]
-#[doc = " \"slug\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"emoji\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"is_answerable\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repository_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"slug\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionCategoryChangedChangesCategory {
pub from: DiscussionCategoryChangedChangesCategoryFrom,
}
#[doc = "`DiscussionCategoryChangedChangesCategoryFrom`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"emoji\","]
-#[doc = " \"id\","]
-#[doc = " \"is_answerable\","]
-#[doc = " \"name\","]
-#[doc = " \"repository_id\","]
-#[doc = " \"slug\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"emoji\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"is_answerable\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repository_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"slug\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionCategoryChangedChangesCategoryFrom {
@@ -20577,108 +8525,6 @@ pub struct DiscussionCategoryChangedChangesCategoryFrom {
pub updated_at: ::std::string::String,
}
#[doc = "`DiscussionCommentCreated`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"discussion_comment created event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"comment\","]
-#[doc = " \"discussion\","]
-#[doc = " \"installation\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"comment\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author_association\","]
-#[doc = " \"body\","]
-#[doc = " \"child_comment_count\","]
-#[doc = " \"created_at\","]
-#[doc = " \"discussion_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"parent_id\","]
-#[doc = " \"repository_url\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"child_comment_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"discussion_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"parent_id\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"integer\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"discussion\": {"]
-#[doc = " \"$ref\": \"#/definitions/discussion\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionCommentCreated {
@@ -20692,18 +8538,6 @@ pub struct DiscussionCommentCreated {
pub sender: User,
}
#[doc = "`DiscussionCommentCreatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -20751,71 +8585,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DiscussionCommentCreated
}
}
#[doc = "`DiscussionCommentCreatedComment`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author_association\","]
-#[doc = " \"body\","]
-#[doc = " \"child_comment_count\","]
-#[doc = " \"created_at\","]
-#[doc = " \"discussion_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"parent_id\","]
-#[doc = " \"repository_url\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"child_comment_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"discussion_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"parent_id\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"integer\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionCommentCreatedComment {
@@ -20833,108 +8602,6 @@ pub struct DiscussionCommentCreatedComment {
pub user: User,
}
#[doc = "`DiscussionCommentDeleted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"discussion_comment deleted event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"comment\","]
-#[doc = " \"discussion\","]
-#[doc = " \"installation\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"comment\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author_association\","]
-#[doc = " \"body\","]
-#[doc = " \"child_comment_count\","]
-#[doc = " \"created_at\","]
-#[doc = " \"discussion_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"parent_id\","]
-#[doc = " \"repository_url\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"child_comment_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"discussion_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"parent_id\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"integer\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"discussion\": {"]
-#[doc = " \"$ref\": \"#/definitions/discussion\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionCommentDeleted {
@@ -20948,18 +8615,6 @@ pub struct DiscussionCommentDeleted {
pub sender: User,
}
#[doc = "`DiscussionCommentDeletedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -21007,71 +8662,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DiscussionCommentDeleted
}
}
#[doc = "`DiscussionCommentDeletedComment`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author_association\","]
-#[doc = " \"body\","]
-#[doc = " \"child_comment_count\","]
-#[doc = " \"created_at\","]
-#[doc = " \"discussion_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"parent_id\","]
-#[doc = " \"repository_url\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"child_comment_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"discussion_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"parent_id\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"integer\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionCommentDeletedComment {
@@ -21089,130 +8679,6 @@ pub struct DiscussionCommentDeletedComment {
pub user: User,
}
#[doc = "`DiscussionCommentEdited`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"discussion_comment edited event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"comment\","]
-#[doc = " \"discussion\","]
-#[doc = " \"installation\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"body\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"comment\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author_association\","]
-#[doc = " \"body\","]
-#[doc = " \"child_comment_count\","]
-#[doc = " \"created_at\","]
-#[doc = " \"discussion_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"parent_id\","]
-#[doc = " \"repository_url\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"child_comment_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"discussion_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"parent_id\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"integer\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"discussion\": {"]
-#[doc = " \"$ref\": \"#/definitions/discussion\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionCommentEdited {
@@ -21227,18 +8693,6 @@ pub struct DiscussionCommentEdited {
pub sender: User,
}
#[doc = "`DiscussionCommentEditedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -21286,128 +8740,18 @@ impl ::std::convert::TryFrom<::std::string::String> for DiscussionCommentEditedA
}
}
#[doc = "`DiscussionCommentEditedChanges`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"body\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionCommentEditedChanges {
pub body: DiscussionCommentEditedChangesBody,
}
#[doc = "`DiscussionCommentEditedChangesBody`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionCommentEditedChangesBody {
pub from: ::std::string::String,
}
#[doc = "`DiscussionCommentEditedComment`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author_association\","]
-#[doc = " \"body\","]
-#[doc = " \"child_comment_count\","]
-#[doc = " \"created_at\","]
-#[doc = " \"discussion_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"parent_id\","]
-#[doc = " \"repository_url\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"child_comment_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"discussion_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"parent_id\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"integer\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionCommentEditedComment {
@@ -21425,25 +8769,6 @@ pub struct DiscussionCommentEditedComment {
pub user: User,
}
#[doc = "`DiscussionCommentEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion_comment$created\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion_comment$deleted\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion_comment$edited\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum DiscussionCommentEvent {
@@ -21467,86 +8792,6 @@ impl ::std::convert::From for DiscussionCommentEvent {
}
}
#[doc = "`DiscussionCreated`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"discussion created event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"discussion\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"discussion\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"answer_chosen_at\","]
-#[doc = " \"answer_chosen_by\","]
-#[doc = " \"answer_html_url\","]
-#[doc = " \"locked\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"answer_chosen_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"answer_chosen_by\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"answer_html_url\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " false"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"converting\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionCreated {
@@ -21560,18 +8805,6 @@ pub struct DiscussionCreated {
pub sender: User,
}
#[doc = "`DiscussionCreatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -21619,54 +8852,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DiscussionCreatedAction
}
}
#[doc = "`DiscussionCreatedDiscussion`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"answer_chosen_at\","]
-#[doc = " \"answer_chosen_by\","]
-#[doc = " \"answer_html_url\","]
-#[doc = " \"locked\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"answer_chosen_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"answer_chosen_by\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"answer_html_url\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " false"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"converting\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionCreatedDiscussion {
@@ -21691,57 +8876,6 @@ pub struct DiscussionCreatedDiscussion {
pub user: User,
}
#[doc = "`DiscussionCreatedDiscussionCategory`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"emoji\","]
-#[doc = " \"id\","]
-#[doc = " \"is_answerable\","]
-#[doc = " \"name\","]
-#[doc = " \"repository_id\","]
-#[doc = " \"slug\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"emoji\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"is_answerable\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repository_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"slug\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionCreatedDiscussionCategory {
@@ -21756,19 +8890,6 @@ pub struct DiscussionCreatedDiscussionCategory {
pub updated_at: ::std::string::String,
}
#[doc = "`DiscussionCreatedDiscussionState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"converting\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -21820,47 +8941,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DiscussionCreatedDiscuss
}
}
#[doc = "`DiscussionDeleted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"discussion deleted event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"discussion\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"discussion\": {"]
-#[doc = " \"$ref\": \"#/definitions/discussion\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionDeleted {
@@ -21874,18 +8954,6 @@ pub struct DiscussionDeleted {
pub sender: User,
}
#[doc = "`DiscussionDeletedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -21933,77 +9001,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DiscussionDeletedAction
}
}
#[doc = "`DiscussionEdited`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"discussion edited event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"discussion\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"discussion\": {"]
-#[doc = " \"$ref\": \"#/definitions/discussion\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionEdited {
@@ -22019,18 +9016,6 @@ pub struct DiscussionEdited {
pub sender: User,
}
#[doc = "`DiscussionEditedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -22078,42 +9063,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DiscussionEditedAction {
}
}
#[doc = "`DiscussionEditedChanges`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct DiscussionEditedChanges {
@@ -22123,103 +9072,18 @@ pub struct DiscussionEditedChanges {
pub title: ::std::option::Option,
}
#[doc = "`DiscussionEditedChangesBody`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionEditedChangesBody {
pub from: ::std::string::String,
}
#[doc = "`DiscussionEditedChangesTitle`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionEditedChangesTitle {
pub from: ::std::string::String,
}
#[doc = "`DiscussionEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion$answered\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion$category_changed\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion$created\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion$deleted\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion$edited\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion$labeled\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion$locked\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion$pinned\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion$transferred\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion$unanswered\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion$unlabeled\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion$unlocked\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion$unpinned\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum DiscussionEvent {
@@ -22303,51 +9167,6 @@ impl ::std::convert::From for DiscussionEvent {
}
}
#[doc = "`DiscussionLabeled`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"discussion labeled event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"discussion\","]
-#[doc = " \"label\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"labeled\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"discussion\": {"]
-#[doc = " \"$ref\": \"#/definitions/discussion\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"label\": {"]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionLabeled {
@@ -22362,18 +9181,6 @@ pub struct DiscussionLabeled {
pub sender: User,
}
#[doc = "`DiscussionLabeledAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"labeled\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -22421,73 +9228,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DiscussionLabeledAction
}
}
#[doc = "`DiscussionLocked`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"discussion locked event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"discussion\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"locked\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"discussion\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"locked\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " true"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"locked\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionLocked {
@@ -22501,18 +9241,6 @@ pub struct DiscussionLocked {
pub sender: User,
}
#[doc = "`DiscussionLockedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"locked\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -22560,41 +9288,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DiscussionLockedAction {
}
}
#[doc = "`DiscussionLockedDiscussion`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"locked\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " true"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"locked\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionLockedDiscussion {
@@ -22619,57 +9312,6 @@ pub struct DiscussionLockedDiscussion {
pub user: User,
}
#[doc = "`DiscussionLockedDiscussionCategory`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"emoji\","]
-#[doc = " \"id\","]
-#[doc = " \"is_answerable\","]
-#[doc = " \"name\","]
-#[doc = " \"repository_id\","]
-#[doc = " \"slug\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"emoji\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"is_answerable\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repository_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"slug\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionLockedDiscussionCategory {
@@ -22684,18 +9326,6 @@ pub struct DiscussionLockedDiscussionCategory {
pub updated_at: ::std::string::String,
}
#[doc = "`DiscussionLockedDiscussionState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"locked\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -22743,47 +9373,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DiscussionLockedDiscussi
}
}
#[doc = "`DiscussionPinned`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"discussion pinned event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"discussion\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"pinned\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"discussion\": {"]
-#[doc = " \"$ref\": \"#/definitions/discussion\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionPinned {
@@ -22797,18 +9386,6 @@ pub struct DiscussionPinned {
pub sender: User,
}
#[doc = "`DiscussionPinnedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"pinned\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -22856,20 +9433,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DiscussionPinnedAction {
}
}
#[doc = "`DiscussionState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"locked\","]
-#[doc = " \"converting\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -22925,64 +9488,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DiscussionState {
}
}
#[doc = "`DiscussionTransferred`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"discussion transferred event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"discussion\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"transferred\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"new_discussion\","]
-#[doc = " \"new_repository\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"new_discussion\": {"]
-#[doc = " \"$ref\": \"#/definitions/discussion\""]
-#[doc = " },"]
-#[doc = " \"new_repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"discussion\": {"]
-#[doc = " \"$ref\": \"#/definitions/discussion\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionTransferred {
@@ -22997,18 +9502,6 @@ pub struct DiscussionTransferred {
pub sender: User,
}
#[doc = "`DiscussionTransferredAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"transferred\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -23056,28 +9549,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DiscussionTransferredAct
}
}
#[doc = "`DiscussionTransferredChanges`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"new_discussion\","]
-#[doc = " \"new_repository\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"new_discussion\": {"]
-#[doc = " \"$ref\": \"#/definitions/discussion\""]
-#[doc = " },"]
-#[doc = " \"new_repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionTransferredChanges {
@@ -23085,146 +9556,6 @@ pub struct DiscussionTransferredChanges {
pub new_repository: Repository,
}
#[doc = "`DiscussionUnanswered`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"discussion unanswered event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"discussion\","]
-#[doc = " \"old_answer\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unanswered\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"discussion\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"answer_chosen_at\","]
-#[doc = " \"answer_chosen_by\","]
-#[doc = " \"answer_html_url\","]
-#[doc = " \"category\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"answer_chosen_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"answer_chosen_by\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"answer_html_url\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"category\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"is_answerable\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"is_answerable\": {"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " true"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"old_answer\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author_association\","]
-#[doc = " \"body\","]
-#[doc = " \"child_comment_count\","]
-#[doc = " \"created_at\","]
-#[doc = " \"discussion_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"parent_id\","]
-#[doc = " \"repository_url\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"child_comment_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"discussion_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"parent_id\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"repository_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionUnanswered {
@@ -23239,18 +9570,6 @@ pub struct DiscussionUnanswered {
pub sender: User,
}
#[doc = "`DiscussionUnansweredAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unanswered\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -23298,55 +9617,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DiscussionUnansweredActi
}
}
#[doc = "`DiscussionUnansweredDiscussion`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"answer_chosen_at\","]
-#[doc = " \"answer_chosen_by\","]
-#[doc = " \"answer_html_url\","]
-#[doc = " \"category\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"answer_chosen_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"answer_chosen_by\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"answer_html_url\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"category\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"is_answerable\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"is_answerable\": {"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " true"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionUnansweredDiscussion {
@@ -23371,60 +9641,6 @@ pub struct DiscussionUnansweredDiscussion {
pub user: User,
}
#[doc = "`DiscussionUnansweredDiscussionCategory`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"emoji\","]
-#[doc = " \"id\","]
-#[doc = " \"is_answerable\","]
-#[doc = " \"name\","]
-#[doc = " \"repository_id\","]
-#[doc = " \"slug\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"emoji\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"is_answerable\": {"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " true"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repository_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"slug\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionUnansweredDiscussionCategory {
@@ -23439,20 +9655,6 @@ pub struct DiscussionUnansweredDiscussionCategory {
pub updated_at: ::std::string::String,
}
#[doc = "`DiscussionUnansweredDiscussionState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"locked\","]
-#[doc = " \"converting\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -23508,70 +9710,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DiscussionUnansweredDisc
}
}
#[doc = "`DiscussionUnansweredOldAnswer`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author_association\","]
-#[doc = " \"body\","]
-#[doc = " \"child_comment_count\","]
-#[doc = " \"created_at\","]
-#[doc = " \"discussion_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"parent_id\","]
-#[doc = " \"repository_url\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"child_comment_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"discussion_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"parent_id\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"repository_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionUnansweredOldAnswer {
@@ -23589,51 +9727,6 @@ pub struct DiscussionUnansweredOldAnswer {
pub user: User,
}
#[doc = "`DiscussionUnlabeled`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"discussion unlabeled event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"discussion\","]
-#[doc = " \"label\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unlabeled\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"discussion\": {"]
-#[doc = " \"$ref\": \"#/definitions/discussion\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"label\": {"]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionUnlabeled {
@@ -23648,18 +9741,6 @@ pub struct DiscussionUnlabeled {
pub sender: User,
}
#[doc = "`DiscussionUnlabeledAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unlabeled\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -23707,73 +9788,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DiscussionUnlabeledActio
}
}
#[doc = "`DiscussionUnlocked`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"discussion unlocked event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"discussion\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unlocked\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"discussion\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"locked\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " false"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionUnlocked {
@@ -23787,18 +9801,6 @@ pub struct DiscussionUnlocked {
pub sender: User,
}
#[doc = "`DiscussionUnlockedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unlocked\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -23846,41 +9848,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DiscussionUnlockedAction
}
}
#[doc = "`DiscussionUnlockedDiscussion`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"locked\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " false"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionUnlockedDiscussion {
@@ -23905,57 +9872,6 @@ pub struct DiscussionUnlockedDiscussion {
pub user: User,
}
#[doc = "`DiscussionUnlockedDiscussionCategory`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"emoji\","]
-#[doc = " \"id\","]
-#[doc = " \"is_answerable\","]
-#[doc = " \"name\","]
-#[doc = " \"repository_id\","]
-#[doc = " \"slug\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"emoji\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"is_answerable\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repository_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"slug\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionUnlockedDiscussionCategory {
@@ -23970,18 +9886,6 @@ pub struct DiscussionUnlockedDiscussionCategory {
pub updated_at: ::std::string::String,
}
#[doc = "`DiscussionUnlockedDiscussionState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -24029,47 +9933,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DiscussionUnlockedDiscus
}
}
#[doc = "`DiscussionUnpinned`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"discussion unpinned event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"discussion\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unpinned\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"discussion\": {"]
-#[doc = " \"$ref\": \"#/definitions/discussion\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct DiscussionUnpinned {
@@ -24083,18 +9946,6 @@ pub struct DiscussionUnpinned {
pub sender: User,
}
#[doc = "`DiscussionUnpinnedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unpinned\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -24142,182 +9993,6 @@ impl ::std::convert::TryFrom<::std::string::String> for DiscussionUnpinnedAction
}
}
#[doc = "`Everything`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Everything\","]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/branch_protection_rule_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/check_run_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/check_suite_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/code_scanning_alert_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/commit_comment_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/content_reference_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/create$event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/delete$event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/deploy_key_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/deployment_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/deployment_status_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/discussion_comment_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/fork$event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/github_app_authorization_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/gollum$event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/installation_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/installation_repositories_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issue_comment_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issues_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/label_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/marketplace_purchase_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/member_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/membership_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/meta_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/milestone_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/org_block_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/organization_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/package_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/page_build$event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/ping$event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/project_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/project_card_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/project_column_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/public$event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request_review_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request_review_comment_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/push$event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/release_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository_dispatch_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository_import$event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository_vulnerability_alert_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/secret_scanning_alert_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/security_advisory_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/star_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/status$event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team_add$event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/watch_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/workflow_dispatch$event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/workflow_job_event\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/workflow_run_event\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum Everything {
@@ -24653,57 +10328,6 @@ impl ::std::convert::From for Everything {
}
}
#[doc = "A user forks a repository."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"fork event\","]
-#[doc = " \"description\": \"A user forks a repository.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"forkee\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"forkee\": {"]
-#[doc = " \"description\": \"The created [`repository`](https://docs.github.com/en/rest/reference/repos#get-a-repository) resource.\","]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"fork\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " true"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ForkEvent {
@@ -24716,31 +10340,6 @@ pub struct ForkEvent {
pub sender: User,
}
#[doc = "The created [`repository`](https://docs.github.com/en/rest/reference/repos#get-a-repository) resource."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The created [`repository`](https://docs.github.com/en/rest/reference/repos#get-a-repository) resource.\","]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"fork\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " true"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ForkEventForkee {
@@ -24858,23 +10457,6 @@ pub struct ForkEventForkee {
pub watchers_count: i64,
}
#[doc = "`ForkEventForkeeCreatedAt`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum ForkEventForkeeCreatedAt {
@@ -24926,38 +10508,6 @@ impl ::std::convert::From<::chrono::DateTime<::chrono::offset::Utc>> for ForkEve
}
}
#[doc = "`ForkEventForkeePermissions`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"admin\","]
-#[doc = " \"pull\","]
-#[doc = " \"push\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"admin\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"maintain\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"pull\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"push\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"triage\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ForkEventForkeePermissions {
@@ -24970,26 +10520,6 @@ pub struct ForkEventForkeePermissions {
pub triage: ::std::option::Option,
}
#[doc = "`ForkEventForkeePushedAt`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum ForkEventForkeePushedAt {
@@ -25008,19 +10538,6 @@ impl ::std::convert::From<::chrono::DateTime<::chrono::offset::Utc>> for ForkEve
}
}
#[doc = "`GithubAppAuthorizationEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/github_app_authorization$revoked\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(transparent)]
pub struct GithubAppAuthorizationEvent(pub GithubAppAuthorizationRevoked);
@@ -25041,33 +10558,6 @@ impl ::std::convert::From for GithubAppAuthorizat
}
}
#[doc = "`GithubAppAuthorizationRevoked`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"github_app_authorization revoked event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"revoked\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct GithubAppAuthorizationRevoked {
@@ -25075,18 +10565,6 @@ pub struct GithubAppAuthorizationRevoked {
pub sender: User,
}
#[doc = "`GithubAppAuthorizationRevokedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"revoked\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -25134,131 +10612,6 @@ impl ::std::convert::TryFrom<::std::string::String> for GithubAppAuthorizationRe
}
}
#[doc = "`GithubOrg`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"GitHub Org\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"avatar_url\","]
-#[doc = " \"events_url\","]
-#[doc = " \"followers_url\","]
-#[doc = " \"following_url\","]
-#[doc = " \"gists_url\","]
-#[doc = " \"gravatar_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"login\","]
-#[doc = " \"node_id\","]
-#[doc = " \"organizations_url\","]
-#[doc = " \"received_events_url\","]
-#[doc = " \"repos_url\","]
-#[doc = " \"site_admin\","]
-#[doc = " \"starred_url\","]
-#[doc = " \"subscriptions_url\","]
-#[doc = " \"type\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"avatar_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\","]
-#[doc = " \"const\": \"https://avatars.githubusercontent.com/u/9919?v=4\""]
-#[doc = " },"]
-#[doc = " \"email\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\","]
-#[doc = " \"const\": \"https://api.github.com/users/github/events{/privacy}\""]
-#[doc = " },"]
-#[doc = " \"followers_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\","]
-#[doc = " \"const\": \"https://api.github.com/users/github/followers\""]
-#[doc = " },"]
-#[doc = " \"following_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\","]
-#[doc = " \"const\": \"https://api.github.com/users/github/following{/other_user}\""]
-#[doc = " },"]
-#[doc = " \"gists_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\","]
-#[doc = " \"const\": \"https://api.github.com/users/github/gists{/gist_id}\""]
-#[doc = " },"]
-#[doc = " \"gravatar_id\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"const\": \"\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\","]
-#[doc = " \"const\": \"https://github.com/github\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\","]
-#[doc = " \"const\": 9919"]
-#[doc = " },"]
-#[doc = " \"login\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"const\": \"github\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"const\": \"GitHub\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"const\": \"MDEyOk9yZ2FuaXphdGlvbjk5MTk=\""]
-#[doc = " },"]
-#[doc = " \"organizations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\","]
-#[doc = " \"const\": \"https://api.github.com/users/github/orgs\""]
-#[doc = " },"]
-#[doc = " \"received_events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\","]
-#[doc = " \"const\": \"https://api.github.com/users/github/received_events\""]
-#[doc = " },"]
-#[doc = " \"repos_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\","]
-#[doc = " \"const\": \"https://api.github.com/users/github/repos\""]
-#[doc = " },"]
-#[doc = " \"site_admin\": {"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"const\": false"]
-#[doc = " },"]
-#[doc = " \"starred_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\","]
-#[doc = " \"const\": \"https://api.github.com/users/github/starred{/owner}{/repo}\""]
-#[doc = " },"]
-#[doc = " \"subscriptions_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\","]
-#[doc = " \"const\": \"https://api.github.com/users/github/subscriptions\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"const\": \"Organization\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\","]
-#[doc = " \"const\": \"https://api.github.com/users/github\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct GithubOrg {
@@ -25287,84 +10640,6 @@ pub struct GithubOrg {
pub url: ::std::string::String,
}
#[doc = "A wiki page is created or updated."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"gollum event\","]
-#[doc = " \"description\": \"A wiki page is created or updated.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"pages\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pages\": {"]
-#[doc = " \"description\": \"The pages that were updated.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"html_url\","]
-#[doc = " \"page_name\","]
-#[doc = " \"sha\","]
-#[doc = " \"summary\","]
-#[doc = " \"title\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"description\": \"The action that was performed on the page. Can be `created` or `edited`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\","]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"description\": \"Points to the HTML wiki page.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"page_name\": {"]
-#[doc = " \"description\": \"The name of the page.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"description\": \"The latest commit SHA of the page.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"description\": \"The current page title.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct GollumEvent {
@@ -25378,54 +10653,6 @@ pub struct GollumEvent {
pub sender: User,
}
#[doc = "`GollumEventPagesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"html_url\","]
-#[doc = " \"page_name\","]
-#[doc = " \"sha\","]
-#[doc = " \"summary\","]
-#[doc = " \"title\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"description\": \"The action that was performed on the page. Can be `created` or `edited`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\","]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"description\": \"Points to the HTML wiki page.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"page_name\": {"]
-#[doc = " \"description\": \"The name of the page.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"description\": \"The latest commit SHA of the page.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"description\": \"The current page title.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct GollumEventPagesItem {
@@ -25442,20 +10669,6 @@ pub struct GollumEventPagesItem {
pub title: ::std::string::String,
}
#[doc = "The action that was performed on the page. Can be `created` or `edited`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The action that was performed on the page. Can be `created` or `edited`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\","]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -25507,441 +10720,6 @@ impl ::std::convert::TryFrom<::std::string::String> for GollumEventPagesItemActi
}
}
#[doc = "The GitHub App installation."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Installation\","]
-#[doc = " \"description\": \"The GitHub App installation.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"access_tokens_url\","]
-#[doc = " \"account\","]
-#[doc = " \"app_id\","]
-#[doc = " \"created_at\","]
-#[doc = " \"events\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"permissions\","]
-#[doc = " \"repositories_url\","]
-#[doc = " \"repository_selection\","]
-#[doc = " \"single_file_name\","]
-#[doc = " \"suspended_at\","]
-#[doc = " \"suspended_by\","]
-#[doc = " \"target_id\","]
-#[doc = " \"target_type\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"access_tokens_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"account\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"app_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"app_slug\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"events\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"check_run\","]
-#[doc = " \"check_suite\","]
-#[doc = " \"code_scanning_alert\","]
-#[doc = " \"commit_comment\","]
-#[doc = " \"content_reference\","]
-#[doc = " \"create\","]
-#[doc = " \"delete\","]
-#[doc = " \"deployment\","]
-#[doc = " \"deployment_review\","]
-#[doc = " \"deployment_status\","]
-#[doc = " \"deploy_key\","]
-#[doc = " \"discussion\","]
-#[doc = " \"discussion_comment\","]
-#[doc = " \"fork\","]
-#[doc = " \"gollum\","]
-#[doc = " \"issues\","]
-#[doc = " \"issue_comment\","]
-#[doc = " \"label\","]
-#[doc = " \"member\","]
-#[doc = " \"membership\","]
-#[doc = " \"merge_queue_entry\","]
-#[doc = " \"milestone\","]
-#[doc = " \"organization\","]
-#[doc = " \"org_block\","]
-#[doc = " \"page_build\","]
-#[doc = " \"project\","]
-#[doc = " \"project_card\","]
-#[doc = " \"project_column\","]
-#[doc = " \"public\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"pull_request_review\","]
-#[doc = " \"pull_request_review_comment\","]
-#[doc = " \"push\","]
-#[doc = " \"registry_package\","]
-#[doc = " \"release\","]
-#[doc = " \"repository\","]
-#[doc = " \"repository_dispatch\","]
-#[doc = " \"secret_scanning_alert\","]
-#[doc = " \"star\","]
-#[doc = " \"status\","]
-#[doc = " \"team\","]
-#[doc = " \"team_add\","]
-#[doc = " \"watch\","]
-#[doc = " \"workflow_dispatch\","]
-#[doc = " \"workflow_run\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"has_multiple_single_files\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The ID of the installation.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"permissions\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"actions\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"administration\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"checks\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"content_references\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"contents\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"deployments\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"discussions\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"emails\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"environments\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"issues\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"members\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"metadata\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_administration\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_events\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_hooks\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_packages\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_plan\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_projects\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_secrets\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_self_hosted_runners\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_user_blocking\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"packages\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"pages\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository_hooks\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository_projects\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"secret_scanning_alerts\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"secrets\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"security_events\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"security_scanning_alert\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"single_file\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"statuses\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"team_discussions\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"vulnerability_alerts\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"workflows\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"repositories_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"repository_selection\": {"]
-#[doc = " \"description\": \"Describe whether all repositories have been selected or there's a selection involved\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"all\","]
-#[doc = " \"selected\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"single_file_name\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"single_file_paths\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"suspended_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"suspended_by\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"target_id\": {"]
-#[doc = " \"description\": \"The ID of the user or organization this token is being scoped to.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"target_type\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"User\","]
-#[doc = " \"Organization\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct Installation {
@@ -25972,75 +10750,6 @@ pub struct Installation {
pub updated_at: InstallationUpdatedAt,
}
#[doc = "`InstallationCreated`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"installation created event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"installation\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation\""]
-#[doc = " },"]
-#[doc = " \"repositories\": {"]
-#[doc = " \"description\": \"An array of repository objects that the installation can access.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"full_name\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"private\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"full_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the repository\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the repository.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"private\": {"]
-#[doc = " \"description\": \"Whether the repository is private or public.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"requester\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct InstallationCreated {
@@ -26054,18 +10763,6 @@ pub struct InstallationCreated {
pub sender: User,
}
#[doc = "`InstallationCreatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -26113,23 +10810,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationCreatedActio
}
}
#[doc = "`InstallationCreatedAt`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum InstallationCreatedAt {
@@ -26181,43 +10861,6 @@ impl ::std::convert::From for InstallationCreatedAt {
}
}
#[doc = "`InstallationCreatedRepositoriesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"full_name\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"private\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"full_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the repository\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the repository.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"private\": {"]
-#[doc = " \"description\": \"Whether the repository is private or public.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct InstallationCreatedRepositoriesItem {
@@ -26231,75 +10874,6 @@ pub struct InstallationCreatedRepositoriesItem {
pub private: bool,
}
#[doc = "`InstallationDeleted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"installation deleted event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"installation\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation\""]
-#[doc = " },"]
-#[doc = " \"repositories\": {"]
-#[doc = " \"description\": \"An array of repository objects that the installation can access.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"full_name\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"private\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"full_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the repository\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the repository.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"private\": {"]
-#[doc = " \"description\": \"Whether the repository is private or public.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"requester\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct InstallationDeleted {
@@ -26313,18 +10887,6 @@ pub struct InstallationDeleted {
pub sender: User,
}
#[doc = "`InstallationDeletedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -26372,43 +10934,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationDeletedActio
}
}
#[doc = "`InstallationDeletedRepositoriesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"full_name\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"private\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"full_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the repository\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the repository.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"private\": {"]
-#[doc = " \"description\": \"Whether the repository is private or public.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct InstallationDeletedRepositoriesItem {
@@ -26422,31 +10947,6 @@ pub struct InstallationDeletedRepositoriesItem {
pub private: bool,
}
#[doc = "`InstallationEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/installation$created\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/installation$deleted\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/installation$new_permissions_accepted\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/installation$suspend\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/installation$unsuspend\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum InstallationEvent {
@@ -26482,62 +10982,6 @@ impl ::std::convert::From for InstallationEvent {
}
}
#[doc = "`InstallationEventsItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"check_run\","]
-#[doc = " \"check_suite\","]
-#[doc = " \"code_scanning_alert\","]
-#[doc = " \"commit_comment\","]
-#[doc = " \"content_reference\","]
-#[doc = " \"create\","]
-#[doc = " \"delete\","]
-#[doc = " \"deployment\","]
-#[doc = " \"deployment_review\","]
-#[doc = " \"deployment_status\","]
-#[doc = " \"deploy_key\","]
-#[doc = " \"discussion\","]
-#[doc = " \"discussion_comment\","]
-#[doc = " \"fork\","]
-#[doc = " \"gollum\","]
-#[doc = " \"issues\","]
-#[doc = " \"issue_comment\","]
-#[doc = " \"label\","]
-#[doc = " \"member\","]
-#[doc = " \"membership\","]
-#[doc = " \"merge_queue_entry\","]
-#[doc = " \"milestone\","]
-#[doc = " \"organization\","]
-#[doc = " \"org_block\","]
-#[doc = " \"page_build\","]
-#[doc = " \"project\","]
-#[doc = " \"project_card\","]
-#[doc = " \"project_column\","]
-#[doc = " \"public\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"pull_request_review\","]
-#[doc = " \"pull_request_review_comment\","]
-#[doc = " \"push\","]
-#[doc = " \"registry_package\","]
-#[doc = " \"release\","]
-#[doc = " \"repository\","]
-#[doc = " \"repository_dispatch\","]
-#[doc = " \"secret_scanning_alert\","]
-#[doc = " \"star\","]
-#[doc = " \"status\","]
-#[doc = " \"team\","]
-#[doc = " \"team_add\","]
-#[doc = " \"watch\","]
-#[doc = " \"workflow_dispatch\","]
-#[doc = " \"workflow_run\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -26761,32 +11205,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationEventsItem {
}
}
#[doc = "Installation"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"InstallationLite\","]
-#[doc = " \"description\": \"Installation\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"id\","]
-#[doc = " \"node_id\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The ID of the installation.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct InstallationLite {
@@ -26795,75 +11213,6 @@ pub struct InstallationLite {
pub node_id: ::std::string::String,
}
#[doc = "`InstallationNewPermissionsAccepted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"installation new_permissions_accepted event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"installation\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"new_permissions_accepted\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation\""]
-#[doc = " },"]
-#[doc = " \"repositories\": {"]
-#[doc = " \"description\": \"An array of repository objects that the installation can access.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"full_name\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"private\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"full_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the repository\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the repository.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"private\": {"]
-#[doc = " \"description\": \"Whether the repository is private or public.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"requester\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct InstallationNewPermissionsAccepted {
@@ -26877,18 +11226,6 @@ pub struct InstallationNewPermissionsAccepted {
pub sender: User,
}
#[doc = "`InstallationNewPermissionsAcceptedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"new_permissions_accepted\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -26936,43 +11273,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationNewPermissio
}
}
#[doc = "`InstallationNewPermissionsAcceptedRepositoriesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"full_name\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"private\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"full_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the repository\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the repository.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"private\": {"]
-#[doc = " \"description\": \"Whether the repository is private or public.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct InstallationNewPermissionsAcceptedRepositoriesItem {
@@ -26986,263 +11286,6 @@ pub struct InstallationNewPermissionsAcceptedRepositoriesItem {
pub private: bool,
}
#[doc = "`InstallationPermissions`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"actions\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"administration\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"checks\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"content_references\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"contents\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"deployments\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"discussions\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"emails\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"environments\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"issues\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"members\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"metadata\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_administration\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_events\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_hooks\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_packages\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_plan\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_projects\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_secrets\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_self_hosted_runners\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_user_blocking\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"packages\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"pages\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository_hooks\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository_projects\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"secret_scanning_alerts\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"secrets\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"security_events\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"security_scanning_alert\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"single_file\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"statuses\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"team_discussions\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"vulnerability_alerts\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"workflows\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct InstallationPermissions {
@@ -27322,19 +11365,6 @@ pub struct InstallationPermissions {
pub workflows: ::std::option::Option,
}
#[doc = "`InstallationPermissionsActions`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -27386,19 +11416,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsA
}
}
#[doc = "`InstallationPermissionsAdministration`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -27450,19 +11467,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsA
}
}
#[doc = "`InstallationPermissionsChecks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -27514,19 +11518,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsC
}
}
#[doc = "`InstallationPermissionsContentReferences`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -27578,19 +11569,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsC
}
}
#[doc = "`InstallationPermissionsContents`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -27642,19 +11620,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsC
}
}
#[doc = "`InstallationPermissionsDeployments`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -27706,19 +11671,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsD
}
}
#[doc = "`InstallationPermissionsDiscussions`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -27770,19 +11722,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsD
}
}
#[doc = "`InstallationPermissionsEmails`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -27834,19 +11773,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsE
}
}
#[doc = "`InstallationPermissionsEnvironments`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -27898,19 +11824,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsE
}
}
#[doc = "`InstallationPermissionsIssues`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -27962,19 +11875,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsI
}
}
#[doc = "`InstallationPermissionsMembers`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -28026,19 +11926,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsM
}
}
#[doc = "`InstallationPermissionsMetadata`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -28090,19 +11977,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsM
}
}
#[doc = "`InstallationPermissionsOrganizationAdministration`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -28156,19 +12030,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationPermissionsOrganizationEvents`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -28220,19 +12081,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsO
}
}
#[doc = "`InstallationPermissionsOrganizationHooks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -28284,19 +12132,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsO
}
}
#[doc = "`InstallationPermissionsOrganizationPackages`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -28350,19 +12185,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationPermissionsOrganizationPlan`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -28414,19 +12236,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsO
}
}
#[doc = "`InstallationPermissionsOrganizationProjects`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -28480,19 +12289,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationPermissionsOrganizationSecrets`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -28544,19 +12340,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsO
}
}
#[doc = "`InstallationPermissionsOrganizationSelfHostedRunners`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -28610,19 +12393,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationPermissionsOrganizationUserBlocking`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -28676,19 +12446,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationPermissionsPackages`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -28740,19 +12497,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsP
}
}
#[doc = "`InstallationPermissionsPages`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -28804,19 +12548,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsP
}
}
#[doc = "`InstallationPermissionsPullRequests`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -28868,19 +12599,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsP
}
}
#[doc = "`InstallationPermissionsRepositoryHooks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -28932,19 +12650,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsR
}
}
#[doc = "`InstallationPermissionsRepositoryProjects`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -28996,19 +12701,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsR
}
}
#[doc = "`InstallationPermissionsSecretScanningAlerts`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -29062,19 +12754,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationPermissionsSecrets`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -29126,19 +12805,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsS
}
}
#[doc = "`InstallationPermissionsSecurityEvents`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -29190,19 +12856,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsS
}
}
#[doc = "`InstallationPermissionsSecurityScanningAlert`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -29256,19 +12909,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationPermissionsSingleFile`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -29320,19 +12960,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsS
}
}
#[doc = "`InstallationPermissionsStatuses`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -29384,19 +13011,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsS
}
}
#[doc = "`InstallationPermissionsTeamDiscussions`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -29448,19 +13062,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsT
}
}
#[doc = "`InstallationPermissionsVulnerabilityAlerts`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -29512,19 +13113,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsV
}
}
#[doc = "`InstallationPermissionsWorkflows`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -29576,123 +13164,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationPermissionsW
}
}
#[doc = "`InstallationRepositoriesAdded`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"installation_repositories added event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"installation\","]
-#[doc = " \"repositories_added\","]
-#[doc = " \"repositories_removed\","]
-#[doc = " \"repository_selection\","]
-#[doc = " \"requester\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"added\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation\""]
-#[doc = " },"]
-#[doc = " \"repositories_added\": {"]
-#[doc = " \"description\": \"An array of repository objects, which were added to the installation.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"full_name\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"private\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"full_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the repository\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the repository.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"private\": {"]
-#[doc = " \"description\": \"Whether the repository is private or public.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"repositories_removed\": {"]
-#[doc = " \"description\": \"An array of repository objects, which were removed from the installation.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"full_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the repository\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the repository.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"private\": {"]
-#[doc = " \"description\": \"Whether the repository is private or public.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"maxItems\": 0"]
-#[doc = " },"]
-#[doc = " \"repository_selection\": {"]
-#[doc = " \"description\": \"Describe whether all repositories have been selected or there's a selection involved\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"all\","]
-#[doc = " \"selected\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"requester\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct InstallationRepositoriesAdded {
@@ -29708,18 +13179,6 @@ pub struct InstallationRepositoriesAdded {
pub sender: User,
}
#[doc = "`InstallationRepositoriesAddedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"added\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -29767,43 +13226,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationRepositories
}
}
#[doc = "`InstallationRepositoriesAddedRepositoriesAddedItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"full_name\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"private\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"full_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the repository\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the repository.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"private\": {"]
-#[doc = " \"description\": \"Whether the repository is private or public.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct InstallationRepositoriesAddedRepositoriesAddedItem {
@@ -29817,36 +13239,6 @@ pub struct InstallationRepositoriesAddedRepositoriesAddedItem {
pub private: bool,
}
#[doc = "`InstallationRepositoriesAddedRepositoriesRemovedItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"full_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the repository\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the repository.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"private\": {"]
-#[doc = " \"description\": \"Whether the repository is private or public.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct InstallationRepositoriesAddedRepositoriesRemovedItem {
@@ -29865,20 +13257,6 @@ pub struct InstallationRepositoriesAddedRepositoriesRemovedItem {
pub private: ::std::option::Option,
}
#[doc = "Describe whether all repositories have been selected or there's a selection involved"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"Describe whether all repositories have been selected or there's a selection involved\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"all\","]
-#[doc = " \"selected\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -29932,22 +13310,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationRepositoriesEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/installation_repositories$added\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/installation_repositories$removed\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum InstallationRepositoriesEvent {
@@ -29965,130 +13327,6 @@ impl ::std::convert::From for InstallationRepos
}
}
#[doc = "`InstallationRepositoriesRemoved`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"installation_repositories removed event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"installation\","]
-#[doc = " \"repositories_added\","]
-#[doc = " \"repositories_removed\","]
-#[doc = " \"repository_selection\","]
-#[doc = " \"requester\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"removed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation\""]
-#[doc = " },"]
-#[doc = " \"repositories_added\": {"]
-#[doc = " \"description\": \"An array of repository objects, which were added to the installation.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"full_name\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"private\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"full_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the repository\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the repository.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"private\": {"]
-#[doc = " \"description\": \"Whether the repository is private or public.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"maxItems\": 0"]
-#[doc = " },"]
-#[doc = " \"repositories_removed\": {"]
-#[doc = " \"description\": \"An array of repository objects, which were removed from the installation.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"full_name\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"private\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"full_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the repository\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the repository.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"private\": {"]
-#[doc = " \"description\": \"Whether the repository is private or public.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"repository_selection\": {"]
-#[doc = " \"description\": \"Describe whether all repositories have been selected or there's a selection involved\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"all\","]
-#[doc = " \"selected\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"requester\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct InstallationRepositoriesRemoved {
@@ -30105,18 +13343,6 @@ pub struct InstallationRepositoriesRemoved {
pub sender: User,
}
#[doc = "`InstallationRepositoriesRemovedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"removed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -30164,43 +13390,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationRepositories
}
}
#[doc = "`InstallationRepositoriesRemovedRepositoriesAddedItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"full_name\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"private\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"full_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the repository\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the repository.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"private\": {"]
-#[doc = " \"description\": \"Whether the repository is private or public.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct InstallationRepositoriesRemovedRepositoriesAddedItem {
@@ -30214,43 +13403,6 @@ pub struct InstallationRepositoriesRemovedRepositoriesAddedItem {
pub private: bool,
}
#[doc = "`InstallationRepositoriesRemovedRepositoriesRemovedItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"full_name\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"private\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"full_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the repository\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the repository.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"private\": {"]
-#[doc = " \"description\": \"Whether the repository is private or public.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct InstallationRepositoriesRemovedRepositoriesRemovedItem {
@@ -30264,20 +13416,6 @@ pub struct InstallationRepositoriesRemovedRepositoriesRemovedItem {
pub private: bool,
}
#[doc = "Describe whether all repositories have been selected or there's a selection involved"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"Describe whether all repositories have been selected or there's a selection involved\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"all\","]
-#[doc = " \"selected\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -30331,20 +13469,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "Describe whether all repositories have been selected or there's a selection involved"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"Describe whether all repositories have been selected or there's a selection involved\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"all\","]
-#[doc = " \"selected\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -30396,96 +13520,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationRepositorySe
}
}
#[doc = "`InstallationSuspend`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"installation suspend event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"installation\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"suspend\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/installation\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"suspended_at\","]
-#[doc = " \"suspended_by\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"suspended_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"suspended_by\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repositories\": {"]
-#[doc = " \"description\": \"An array of repository objects that the installation can access.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"full_name\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"private\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"full_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the repository\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the repository.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"private\": {"]
-#[doc = " \"description\": \"Whether the repository is private or public.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"requester\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct InstallationSuspend {
@@ -30499,18 +13533,6 @@ pub struct InstallationSuspend {
pub sender: User,
}
#[doc = "`InstallationSuspendAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"suspend\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -30558,36 +13580,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationSuspendActio
}
}
#[doc = "`InstallationSuspendInstallation`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/installation\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"suspended_at\","]
-#[doc = " \"suspended_by\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"suspended_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"suspended_by\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct InstallationSuspendInstallation {
@@ -30618,23 +13610,6 @@ pub struct InstallationSuspendInstallation {
pub updated_at: InstallationSuspendInstallationUpdatedAt,
}
#[doc = "`InstallationSuspendInstallationCreatedAt`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum InstallationSuspendInstallationCreatedAt {
@@ -30688,62 +13663,6 @@ impl ::std::convert::From for InstallationSuspendInstallationCreatedAt {
}
}
#[doc = "`InstallationSuspendInstallationEventsItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"check_run\","]
-#[doc = " \"check_suite\","]
-#[doc = " \"code_scanning_alert\","]
-#[doc = " \"commit_comment\","]
-#[doc = " \"content_reference\","]
-#[doc = " \"create\","]
-#[doc = " \"delete\","]
-#[doc = " \"deployment\","]
-#[doc = " \"deployment_review\","]
-#[doc = " \"deployment_status\","]
-#[doc = " \"deploy_key\","]
-#[doc = " \"discussion\","]
-#[doc = " \"discussion_comment\","]
-#[doc = " \"fork\","]
-#[doc = " \"gollum\","]
-#[doc = " \"issues\","]
-#[doc = " \"issue_comment\","]
-#[doc = " \"label\","]
-#[doc = " \"member\","]
-#[doc = " \"membership\","]
-#[doc = " \"merge_queue_entry\","]
-#[doc = " \"milestone\","]
-#[doc = " \"organization\","]
-#[doc = " \"org_block\","]
-#[doc = " \"page_build\","]
-#[doc = " \"project\","]
-#[doc = " \"project_card\","]
-#[doc = " \"project_column\","]
-#[doc = " \"public\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"pull_request_review\","]
-#[doc = " \"pull_request_review_comment\","]
-#[doc = " \"push\","]
-#[doc = " \"registry_package\","]
-#[doc = " \"release\","]
-#[doc = " \"repository\","]
-#[doc = " \"repository_dispatch\","]
-#[doc = " \"secret_scanning_alert\","]
-#[doc = " \"star\","]
-#[doc = " \"status\","]
-#[doc = " \"team\","]
-#[doc = " \"team_add\","]
-#[doc = " \"watch\","]
-#[doc = " \"workflow_dispatch\","]
-#[doc = " \"workflow_run\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -30967,263 +13886,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationSuspendInsta
}
}
#[doc = "`InstallationSuspendInstallationPermissions`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"actions\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"administration\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"checks\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"content_references\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"contents\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"deployments\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"discussions\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"emails\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"environments\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"issues\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"members\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"metadata\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_administration\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_events\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_hooks\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_packages\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_plan\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_projects\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_secrets\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_self_hosted_runners\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_user_blocking\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"packages\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"pages\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository_hooks\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository_projects\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"secret_scanning_alerts\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"secrets\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"security_events\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"security_scanning_alert\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"single_file\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"statuses\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"team_discussions\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"vulnerability_alerts\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"workflows\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct InstallationSuspendInstallationPermissions {
@@ -31319,19 +13981,6 @@ pub struct InstallationSuspendInstallationPermissions {
pub workflows: ::std::option::Option,
}
#[doc = "`InstallationSuspendInstallationPermissionsActions`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -31385,19 +14034,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsAdministration`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -31451,19 +14087,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsChecks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -31517,19 +14140,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsContentReferences`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -31583,19 +14193,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsContents`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -31649,19 +14246,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsDeployments`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -31715,19 +14299,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsDiscussions`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -31781,19 +14352,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsEmails`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -31847,19 +14405,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsEnvironments`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -31913,19 +14458,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsIssues`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -31979,19 +14511,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsMembers`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -32045,19 +14564,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsMetadata`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -32111,19 +14617,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsOrganizationAdministration`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -32179,19 +14672,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsOrganizationEvents`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -32247,19 +14727,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsOrganizationHooks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -32313,19 +14780,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsOrganizationPackages`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -32381,19 +14835,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsOrganizationPlan`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -32447,19 +14888,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsOrganizationProjects`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -32515,19 +14943,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsOrganizationSecrets`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -32583,19 +14998,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsOrganizationSelfHostedRunners`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -32655,19 +15057,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsOrganizationUserBlocking`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -32723,19 +15112,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsPackages`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -32789,19 +15165,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsPages`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -32855,19 +15218,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsPullRequests`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -32921,19 +15271,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsRepositoryHooks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -32987,19 +15324,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsRepositoryProjects`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -33055,19 +15379,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsSecretScanningAlerts`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -33123,19 +15434,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsSecrets`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -33189,19 +15487,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsSecurityEvents`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -33255,19 +15540,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsSecurityScanningAlert`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -33323,19 +15595,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsSingleFile`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -33389,19 +15648,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsStatuses`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -33455,19 +15701,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsTeamDiscussions`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -33521,19 +15754,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsVulnerabilityAlerts`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -33589,19 +15809,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationPermissionsWorkflows`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -33655,20 +15862,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "Describe whether all repositories have been selected or there's a selection involved"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"Describe whether all repositories have been selected or there's a selection involved\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"all\","]
-#[doc = " \"selected\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -33722,130 +15915,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationSuspendedBy`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"avatar_url\","]
-#[doc = " \"events_url\","]
-#[doc = " \"followers_url\","]
-#[doc = " \"following_url\","]
-#[doc = " \"gists_url\","]
-#[doc = " \"gravatar_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"login\","]
-#[doc = " \"node_id\","]
-#[doc = " \"organizations_url\","]
-#[doc = " \"received_events_url\","]
-#[doc = " \"repos_url\","]
-#[doc = " \"site_admin\","]
-#[doc = " \"starred_url\","]
-#[doc = " \"subscriptions_url\","]
-#[doc = " \"type\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"avatar_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"email\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"followers_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"following_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gists_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gravatar_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"login\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"organizations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"received_events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"repos_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"site_admin\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"starred_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"subscriptions_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"Bot\","]
-#[doc = " \"User\","]
-#[doc = " \"Organization\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct InstallationSuspendInstallationSuspendedBy {
@@ -33874,20 +15943,6 @@ pub struct InstallationSuspendInstallationSuspendedBy {
pub url: ::std::string::String,
}
#[doc = "`InstallationSuspendInstallationSuspendedByType`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"Bot\","]
-#[doc = " \"User\","]
-#[doc = " \"Organization\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -33942,19 +15997,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationSuspendInstallationTargetType`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"User\","]
-#[doc = " \"Organization\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -34004,23 +16046,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationSuspendInsta
}
}
#[doc = "`InstallationSuspendInstallationUpdatedAt`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum InstallationSuspendInstallationUpdatedAt {
@@ -34074,43 +16099,6 @@ impl ::std::convert::From for InstallationSuspendInstallationUpdatedAt {
}
}
#[doc = "`InstallationSuspendRepositoriesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"full_name\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"private\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"full_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the repository\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the repository.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"private\": {"]
-#[doc = " \"description\": \"Whether the repository is private or public.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct InstallationSuspendRepositoriesItem {
@@ -34124,19 +16112,6 @@ pub struct InstallationSuspendRepositoriesItem {
pub private: bool,
}
#[doc = "`InstallationTargetType`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"User\","]
-#[doc = " \"Organization\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -34186,95 +16161,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationTargetType {
}
}
#[doc = "`InstallationUnsuspend`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"installation unsuspend event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"installation\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unsuspend\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/installation\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"suspended_at\","]
-#[doc = " \"suspended_by\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"suspended_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"suspended_by\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repositories\": {"]
-#[doc = " \"description\": \"An array of repository objects that the installation can access.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"full_name\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"private\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"full_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the repository\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the repository.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"private\": {"]
-#[doc = " \"description\": \"Whether the repository is private or public.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"requester\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct InstallationUnsuspend {
@@ -34288,18 +16174,6 @@ pub struct InstallationUnsuspend {
pub sender: User,
}
#[doc = "`InstallationUnsuspendAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unsuspend\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -34347,35 +16221,6 @@ impl ::std::convert::TryFrom<::std::string::String> for InstallationUnsuspendAct
}
}
#[doc = "`InstallationUnsuspendInstallation`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/installation\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"suspended_at\","]
-#[doc = " \"suspended_by\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"suspended_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"suspended_by\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct InstallationUnsuspendInstallation {
@@ -34406,23 +16251,6 @@ pub struct InstallationUnsuspendInstallation {
pub updated_at: InstallationUnsuspendInstallationUpdatedAt,
}
#[doc = "`InstallationUnsuspendInstallationCreatedAt`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum InstallationUnsuspendInstallationCreatedAt {
@@ -34476,62 +16304,6 @@ impl ::std::convert::From for InstallationUnsuspendInstallationCreatedAt {
}
}
#[doc = "`InstallationUnsuspendInstallationEventsItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"check_run\","]
-#[doc = " \"check_suite\","]
-#[doc = " \"code_scanning_alert\","]
-#[doc = " \"commit_comment\","]
-#[doc = " \"content_reference\","]
-#[doc = " \"create\","]
-#[doc = " \"delete\","]
-#[doc = " \"deployment\","]
-#[doc = " \"deployment_review\","]
-#[doc = " \"deployment_status\","]
-#[doc = " \"deploy_key\","]
-#[doc = " \"discussion\","]
-#[doc = " \"discussion_comment\","]
-#[doc = " \"fork\","]
-#[doc = " \"gollum\","]
-#[doc = " \"issues\","]
-#[doc = " \"issue_comment\","]
-#[doc = " \"label\","]
-#[doc = " \"member\","]
-#[doc = " \"membership\","]
-#[doc = " \"merge_queue_entry\","]
-#[doc = " \"milestone\","]
-#[doc = " \"organization\","]
-#[doc = " \"org_block\","]
-#[doc = " \"page_build\","]
-#[doc = " \"project\","]
-#[doc = " \"project_card\","]
-#[doc = " \"project_column\","]
-#[doc = " \"public\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"pull_request_review\","]
-#[doc = " \"pull_request_review_comment\","]
-#[doc = " \"push\","]
-#[doc = " \"registry_package\","]
-#[doc = " \"release\","]
-#[doc = " \"repository\","]
-#[doc = " \"repository_dispatch\","]
-#[doc = " \"secret_scanning_alert\","]
-#[doc = " \"star\","]
-#[doc = " \"status\","]
-#[doc = " \"team\","]
-#[doc = " \"team_add\","]
-#[doc = " \"watch\","]
-#[doc = " \"workflow_dispatch\","]
-#[doc = " \"workflow_run\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -34757,263 +16529,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissions`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"actions\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"administration\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"checks\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"content_references\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"contents\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"deployments\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"discussions\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"emails\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"environments\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"issues\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"members\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"metadata\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_administration\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_events\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_hooks\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_packages\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_plan\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_projects\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_secrets\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_self_hosted_runners\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization_user_blocking\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"packages\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"pages\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository_hooks\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository_projects\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"secret_scanning_alerts\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"secrets\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"security_events\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"security_scanning_alert\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"single_file\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"statuses\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"team_discussions\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"vulnerability_alerts\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"workflows\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct InstallationUnsuspendInstallationPermissions {
@@ -35111,19 +16626,6 @@ pub struct InstallationUnsuspendInstallationPermissions {
pub workflows: ::std::option::Option,
}
#[doc = "`InstallationUnsuspendInstallationPermissionsActions`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -35177,19 +16679,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsAdministration`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -35243,19 +16732,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsChecks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -35309,19 +16785,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsContentReferences`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -35377,19 +16840,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsContents`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -35443,19 +16893,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsDeployments`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -35509,19 +16946,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsDiscussions`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -35575,19 +16999,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsEmails`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -35641,19 +17052,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsEnvironments`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -35707,19 +17105,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsIssues`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -35773,19 +17158,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsMembers`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -35839,19 +17211,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsMetadata`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -35905,19 +17264,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsOrganizationAdministration`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -35977,19 +17323,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsOrganizationEvents`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -36045,19 +17378,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsOrganizationHooks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -36113,19 +17433,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsOrganizationPackages`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -36181,19 +17488,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsOrganizationPlan`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -36249,19 +17543,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsOrganizationProjects`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -36317,19 +17598,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsOrganizationSecrets`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -36385,19 +17653,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsOrganizationSelfHostedRunners`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -36457,19 +17712,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsOrganizationUserBlocking`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -36525,19 +17767,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsPackages`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -36591,19 +17820,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsPages`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -36657,19 +17873,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsPullRequests`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -36723,19 +17926,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsRepositoryHooks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -36789,19 +17979,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsRepositoryProjects`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -36857,19 +18034,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsSecretScanningAlerts`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -36925,19 +18089,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsSecrets`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -36991,19 +18142,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsSecurityEvents`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -37057,19 +18195,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsSecurityScanningAlert`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -37125,19 +18250,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsSingleFile`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -37191,19 +18303,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsStatuses`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -37257,19 +18356,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsTeamDiscussions`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -37323,19 +18409,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsVulnerabilityAlerts`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -37391,19 +18464,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationPermissionsWorkflows`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"read\","]
-#[doc = " \"write\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -37457,20 +18517,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "Describe whether all repositories have been selected or there's a selection involved"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"Describe whether all repositories have been selected or there's a selection involved\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"all\","]
-#[doc = " \"selected\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -37524,19 +18570,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationTargetType`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"User\","]
-#[doc = " \"Organization\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -37588,23 +18621,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`InstallationUnsuspendInstallationUpdatedAt`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum InstallationUnsuspendInstallationUpdatedAt {
@@ -37658,43 +18674,6 @@ impl ::std::convert::From for InstallationUnsuspendInstallationUpdatedAt {
}
}
#[doc = "`InstallationUnsuspendRepositoriesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"full_name\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"private\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"full_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the repository\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the repository.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"private\": {"]
-#[doc = " \"description\": \"Whether the repository is private or public.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct InstallationUnsuspendRepositoriesItem {
@@ -37708,23 +18687,6 @@ pub struct InstallationUnsuspendRepositoriesItem {
pub private: bool,
}
#[doc = "`InstallationUpdatedAt`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum InstallationUpdatedAt {
@@ -37776,200 +18738,6 @@ impl ::std::convert::From for InstallationUpdatedAt {
}
}
#[doc = "The [issue](https://docs.github.com/en/rest/reference/issues) itself."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Issue\","]
-#[doc = " \"description\": \"The [issue](https://docs.github.com/en/rest/reference/issues) itself.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"active_lock_reason\","]
-#[doc = " \"assignees\","]
-#[doc = " \"author_association\","]
-#[doc = " \"body\","]
-#[doc = " \"closed_at\","]
-#[doc = " \"comments\","]
-#[doc = " \"comments_url\","]
-#[doc = " \"created_at\","]
-#[doc = " \"events_url\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"labels_url\","]
-#[doc = " \"milestone\","]
-#[doc = " \"node_id\","]
-#[doc = " \"number\","]
-#[doc = " \"repository_url\","]
-#[doc = " \"title\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"active_lock_reason\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"assignee\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"assignees\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"description\": \"Contents of the issue\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"comments\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"comments_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"labels\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"labels_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"milestone\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/milestone\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"performed_via_github_app\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"repository_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of the issue; either 'open' or 'closed'\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"description\": \"Title of the issue\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"description\": \"URL for the issue\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct Issue {
@@ -38011,21 +18779,6 @@ pub struct Issue {
pub user: User,
}
#[doc = "`IssueActiveLockReason`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -38085,82 +18838,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssueActiveLockReason {
}
}
#[doc = "The [comment](https://docs.github.com/en/rest/reference/issues#comments) itself."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"issue comment\","]
-#[doc = " \"description\": \"The [comment](https://docs.github.com/en/rest/reference/issues#comments) itself.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author_association\","]
-#[doc = " \"body\","]
-#[doc = " \"created_at\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"issue_url\","]
-#[doc = " \"node_id\","]
-#[doc = " \"performed_via_github_app\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"description\": \"Contents of the issue comment\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the issue comment\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"issue_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"performed_via_github_app\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/app\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"description\": \"URL for the issue comment\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssueComment {
@@ -38180,123 +18857,6 @@ pub struct IssueComment {
pub user: User,
}
#[doc = "`IssueCommentCreated`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"issue_comment created event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"comment\","]
-#[doc = " \"issue\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"comment\": {"]
-#[doc = " \"$ref\": \"#/definitions/issue-comment\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"description\": \"The [issue](https://docs.github.com/en/rest/reference/issues) the comment belongs to.\","]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"assignee\","]
-#[doc = " \"labels\","]
-#[doc = " \"locked\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"assignee\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"labels\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"diff_url\","]
-#[doc = " \"html_url\","]
-#[doc = " \"patch_url\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of the issue; either 'open' or 'closed'\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssueCommentCreated {
@@ -38311,18 +18871,6 @@ pub struct IssueCommentCreated {
pub sender: User,
}
#[doc = "`IssueCommentCreatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -38370,87 +18918,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssueCommentCreatedActio
}
}
#[doc = "The [issue](https://docs.github.com/en/rest/reference/issues) the comment belongs to."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The [issue](https://docs.github.com/en/rest/reference/issues) the comment belongs to.\","]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"assignee\","]
-#[doc = " \"labels\","]
-#[doc = " \"locked\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"assignee\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"labels\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"diff_url\","]
-#[doc = " \"html_url\","]
-#[doc = " \"patch_url\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of the issue; either 'open' or 'closed'\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssueCommentCreatedIssue {
@@ -38487,21 +18954,6 @@ pub struct IssueCommentCreatedIssue {
pub user: User,
}
#[doc = "`IssueCommentCreatedIssueActiveLockReason`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -38561,34 +19013,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssueCommentCreatedIssue
}
}
#[doc = "`IssueCommentCreatedIssueAssignee`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssueCommentCreatedIssueAssignee {
@@ -38617,20 +19041,6 @@ pub struct IssueCommentCreatedIssueAssignee {
pub url: ::std::string::String,
}
#[doc = "`IssueCommentCreatedIssueAssigneeType`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"Bot\","]
-#[doc = " \"User\","]
-#[doc = " \"Organization\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -38683,40 +19093,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssueCommentCreatedIssue
}
}
#[doc = "`IssueCommentCreatedIssuePullRequest`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"diff_url\","]
-#[doc = " \"html_url\","]
-#[doc = " \"patch_url\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssueCommentCreatedIssuePullRequest {
@@ -38726,19 +19102,6 @@ pub struct IssueCommentCreatedIssuePullRequest {
pub url: ::std::string::String,
}
#[doc = "`IssueCommentCreatedIssueState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -38790,123 +19153,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssueCommentCreatedIssue
}
}
#[doc = "`IssueCommentDeleted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"issue_comment deleted event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"comment\","]
-#[doc = " \"issue\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"comment\": {"]
-#[doc = " \"$ref\": \"#/definitions/issue-comment\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"description\": \"The [issue](https://docs.github.com/en/rest/reference/issues) the comment belongs to.\","]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"assignee\","]
-#[doc = " \"labels\","]
-#[doc = " \"locked\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"assignee\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"labels\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"diff_url\","]
-#[doc = " \"html_url\","]
-#[doc = " \"patch_url\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of the issue; either 'open' or 'closed'\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssueCommentDeleted {
@@ -38921,18 +19167,6 @@ pub struct IssueCommentDeleted {
pub sender: User,
}
#[doc = "`IssueCommentDeletedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -38980,87 +19214,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssueCommentDeletedActio
}
}
#[doc = "The [issue](https://docs.github.com/en/rest/reference/issues) the comment belongs to."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The [issue](https://docs.github.com/en/rest/reference/issues) the comment belongs to.\","]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"assignee\","]
-#[doc = " \"labels\","]
-#[doc = " \"locked\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"assignee\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"labels\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"diff_url\","]
-#[doc = " \"html_url\","]
-#[doc = " \"patch_url\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of the issue; either 'open' or 'closed'\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssueCommentDeletedIssue {
@@ -39097,21 +19250,6 @@ pub struct IssueCommentDeletedIssue {
pub user: User,
}
#[doc = "`IssueCommentDeletedIssueActiveLockReason`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -39171,34 +19309,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssueCommentDeletedIssue
}
}
#[doc = "`IssueCommentDeletedIssueAssignee`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssueCommentDeletedIssueAssignee {
@@ -39227,20 +19337,6 @@ pub struct IssueCommentDeletedIssueAssignee {
pub url: ::std::string::String,
}
#[doc = "`IssueCommentDeletedIssueAssigneeType`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"Bot\","]
-#[doc = " \"User\","]
-#[doc = " \"Organization\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -39293,40 +19389,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssueCommentDeletedIssue
}
}
#[doc = "`IssueCommentDeletedIssuePullRequest`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"diff_url\","]
-#[doc = " \"html_url\","]
-#[doc = " \"patch_url\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssueCommentDeletedIssuePullRequest {
@@ -39336,19 +19398,6 @@ pub struct IssueCommentDeletedIssuePullRequest {
pub url: ::std::string::String,
}
#[doc = "`IssueCommentDeletedIssueState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -39400,144 +19449,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssueCommentDeletedIssue
}
}
#[doc = "`IssueCommentEdited`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"issue_comment edited event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"comment\","]
-#[doc = " \"issue\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"description\": \"The changes to the comment.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the body.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"comment\": {"]
-#[doc = " \"$ref\": \"#/definitions/issue-comment\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"description\": \"The [issue](https://docs.github.com/en/rest/reference/issues) the comment belongs to.\","]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"assignee\","]
-#[doc = " \"labels\","]
-#[doc = " \"locked\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"assignee\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"labels\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"diff_url\","]
-#[doc = " \"html_url\","]
-#[doc = " \"patch_url\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of the issue; either 'open' or 'closed'\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssueCommentEdited {
@@ -39553,18 +19464,6 @@ pub struct IssueCommentEdited {
pub sender: User,
}
#[doc = "`IssueCommentEditedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -39612,32 +19511,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssueCommentEditedAction
}
}
#[doc = "The changes to the comment."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The changes to the comment.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the body.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct IssueCommentEditedChanges {
@@ -39645,25 +19518,6 @@ pub struct IssueCommentEditedChanges {
pub body: ::std::option::Option,
}
#[doc = "`IssueCommentEditedChangesBody`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the body.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssueCommentEditedChangesBody {
@@ -39671,87 +19525,6 @@ pub struct IssueCommentEditedChangesBody {
pub from: ::std::string::String,
}
#[doc = "The [issue](https://docs.github.com/en/rest/reference/issues) the comment belongs to."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The [issue](https://docs.github.com/en/rest/reference/issues) the comment belongs to.\","]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"assignee\","]
-#[doc = " \"labels\","]
-#[doc = " \"locked\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"assignee\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"labels\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"diff_url\","]
-#[doc = " \"html_url\","]
-#[doc = " \"patch_url\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of the issue; either 'open' or 'closed'\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssueCommentEditedIssue {
@@ -39788,21 +19561,6 @@ pub struct IssueCommentEditedIssue {
pub user: User,
}
#[doc = "`IssueCommentEditedIssueActiveLockReason`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -39862,34 +19620,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssueCommentEditedIssueA
}
}
#[doc = "`IssueCommentEditedIssueAssignee`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssueCommentEditedIssueAssignee {
@@ -39918,20 +19648,6 @@ pub struct IssueCommentEditedIssueAssignee {
pub url: ::std::string::String,
}
#[doc = "`IssueCommentEditedIssueAssigneeType`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"Bot\","]
-#[doc = " \"User\","]
-#[doc = " \"Organization\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -39984,40 +19700,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssueCommentEditedIssueA
}
}
#[doc = "`IssueCommentEditedIssuePullRequest`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"diff_url\","]
-#[doc = " \"html_url\","]
-#[doc = " \"patch_url\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssueCommentEditedIssuePullRequest {
@@ -40027,19 +19709,6 @@ pub struct IssueCommentEditedIssuePullRequest {
pub url: ::std::string::String,
}
#[doc = "`IssueCommentEditedIssueState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -40091,25 +19760,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssueCommentEditedIssueS
}
}
#[doc = "`IssueCommentEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issue_comment$created\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issue_comment$deleted\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issue_comment$edited\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum IssueCommentEvent {
@@ -40133,34 +19783,6 @@ impl ::std::convert::From for IssueCommentEvent {
}
}
#[doc = "`IssuePullRequest`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct IssuePullRequest {
@@ -40174,20 +19796,6 @@ pub struct IssuePullRequest {
pub url: ::std::option::Option<::std::string::String>,
}
#[doc = "State of the issue; either 'open' or 'closed'"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"State of the issue; either 'open' or 'closed'\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -40239,60 +19847,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssueState {
}
}
#[doc = "Activity related to an issue. The type of activity is specified in the action property."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"issues assigned event\","]
-#[doc = " \"description\": \"Activity related to an issue. The type of activity is specified in the action property.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"issue\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"description\": \"The action that was performed.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"assigned\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"assignee\": {"]
-#[doc = " \"description\": \"The optional user who was assigned or unassigned from the issue.\","]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesAssigned {
@@ -40310,19 +19864,6 @@ pub struct IssuesAssigned {
pub sender: User,
}
#[doc = "The action that was performed."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The action that was performed.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"assigned\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -40370,72 +19911,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesAssignedAction {
}
}
#[doc = "`IssuesClosed`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"issues closed event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"issue\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"description\": \"The action that was performed.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"description\": \"The [issue](https://docs.github.com/en/rest/reference/issues) itself.\","]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"closed_at\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesClosed {
@@ -40450,19 +19925,6 @@ pub struct IssuesClosed {
pub sender: User,
}
#[doc = "The action that was performed."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The action that was performed.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -40510,39 +19972,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesClosedAction {
}
}
#[doc = "The [issue](https://docs.github.com/en/rest/reference/issues) itself."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The [issue](https://docs.github.com/en/rest/reference/issues) itself.\","]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"closed_at\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesClosedIssue {
@@ -40582,21 +20011,6 @@ pub struct IssuesClosedIssue {
pub user: User,
}
#[doc = "`IssuesClosedIssueActiveLockReason`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -40656,34 +20070,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesClosedIssueActiveL
}
}
#[doc = "`IssuesClosedIssuePullRequest`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct IssuesClosedIssuePullRequest {
@@ -40697,18 +20083,6 @@ pub struct IssuesClosedIssuePullRequest {
pub url: ::std::option::Option<::std::string::String>,
}
#[doc = "`IssuesClosedIssueState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -40756,47 +20130,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesClosedIssueState {
}
}
#[doc = "`IssuesDeleted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"issues deleted event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"issue\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesDeleted {
@@ -40810,18 +20143,6 @@ pub struct IssuesDeleted {
pub sender: User,
}
#[doc = "`IssuesDeletedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -40869,67 +20190,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesDeletedAction {
}
}
#[doc = "`IssuesDemilestoned`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"issues demilestoned event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"issue\","]
-#[doc = " \"milestone\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"demilestoned\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"milestone\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"milestone\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"milestone\": {"]
-#[doc = " \"$ref\": \"#/definitions/milestone\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesDemilestoned {
@@ -40944,18 +20204,6 @@ pub struct IssuesDemilestoned {
pub sender: User,
}
#[doc = "`IssuesDemilestonedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"demilestoned\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -41003,31 +20251,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesDemilestonedAction
}
}
#[doc = "`IssuesDemilestonedIssue`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"milestone\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"milestone\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesDemilestonedIssue {
@@ -41069,21 +20292,6 @@ pub struct IssuesDemilestonedIssue {
pub user: User,
}
#[doc = "`IssuesDemilestonedIssueActiveLockReason`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -41143,34 +20351,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesDemilestonedIssueA
}
}
#[doc = "`IssuesDemilestonedIssuePullRequest`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct IssuesDemilestonedIssuePullRequest {
@@ -41184,20 +20364,6 @@ pub struct IssuesDemilestonedIssuePullRequest {
pub url: ::std::option::Option<::std::string::String>,
}
#[doc = "State of the issue; either 'open' or 'closed'"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"State of the issue; either 'open' or 'closed'\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -41249,84 +20415,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesDemilestonedIssueS
}
}
#[doc = "`IssuesEdited`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"issues edited event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"issue\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"description\": \"The changes to the issue.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the body.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the title.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " \"label\": {"]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesEdited {
@@ -41343,18 +20431,6 @@ pub struct IssuesEdited {
pub sender: User,
}
#[doc = "`IssuesEditedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -41402,45 +20478,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesEditedAction {
}
}
#[doc = "The changes to the issue."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The changes to the issue.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the body.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the title.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct IssuesEditedChanges {
@@ -41450,25 +20487,6 @@ pub struct IssuesEditedChanges {
pub title: ::std::option::Option,
}
#[doc = "`IssuesEditedChangesBody`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the body.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesEditedChangesBody {
@@ -41476,25 +20494,6 @@ pub struct IssuesEditedChangesBody {
pub from: ::std::string::String,
}
#[doc = "`IssuesEditedChangesTitle`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the title.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesEditedChangesTitle {
@@ -41502,64 +20501,6 @@ pub struct IssuesEditedChangesTitle {
pub from: ::std::string::String,
}
#[doc = "`IssuesEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issues$assigned\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issues$closed\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issues$deleted\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issues$demilestoned\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issues$edited\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issues$labeled\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issues$locked\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issues$milestoned\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issues$opened\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issues$pinned\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issues$reopened\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issues$transferred\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issues$unassigned\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issues$unlabeled\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issues$unlocked\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issues$unpinned\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum IssuesEvent {
@@ -41661,51 +20602,6 @@ impl ::std::convert::From for IssuesEvent {
}
}
#[doc = "`IssuesLabeled`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"issues labeled event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"issue\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"labeled\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " \"label\": {"]
-#[doc = " \"description\": \"The label that was added to the issue.\","]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesLabeled {
@@ -41722,18 +20618,6 @@ pub struct IssuesLabeled {
pub sender: User,
}
#[doc = "`IssuesLabeledAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"labeled\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -41781,80 +20665,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesLabeledAction {
}
}
#[doc = "`IssuesLocked`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"issues locked event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"issue\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"locked\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"active_lock_reason\","]
-#[doc = " \"locked\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"active_lock_reason\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " true"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesLocked {
@@ -41868,18 +20678,6 @@ pub struct IssuesLocked {
pub sender: User,
}
#[doc = "`IssuesLockedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"locked\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -41927,48 +20725,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesLockedAction {
}
}
#[doc = "`IssuesLockedIssue`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"active_lock_reason\","]
-#[doc = " \"locked\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"active_lock_reason\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " true"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesLockedIssue {
@@ -42009,21 +20765,6 @@ pub struct IssuesLockedIssue {
pub user: User,
}
#[doc = "`IssuesLockedIssueActiveLockReason`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -42083,34 +20824,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesLockedIssueActiveL
}
}
#[doc = "`IssuesLockedIssuePullRequest`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct IssuesLockedIssuePullRequest {
@@ -42124,20 +20837,6 @@ pub struct IssuesLockedIssuePullRequest {
pub url: ::std::option::Option<::std::string::String>,
}
#[doc = "State of the issue; either 'open' or 'closed'"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"State of the issue; either 'open' or 'closed'\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -42189,67 +20888,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesLockedIssueState {
}
}
#[doc = "`IssuesMilestoned`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"issues milestoned event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"issue\","]
-#[doc = " \"milestone\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"milestoned\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"milestone\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"milestone\": {"]
-#[doc = " \"$ref\": \"#/definitions/milestone\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"milestone\": {"]
-#[doc = " \"$ref\": \"#/definitions/milestone\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesMilestoned {
@@ -42264,18 +20902,6 @@ pub struct IssuesMilestoned {
pub sender: User,
}
#[doc = "`IssuesMilestonedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"milestoned\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -42323,31 +20949,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesMilestonedAction {
}
}
#[doc = "`IssuesMilestonedIssue`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"milestone\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"milestone\": {"]
-#[doc = " \"$ref\": \"#/definitions/milestone\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesMilestonedIssue {
@@ -42389,21 +20990,6 @@ pub struct IssuesMilestonedIssue {
pub user: User,
}
#[doc = "`IssuesMilestonedIssueActiveLockReason`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -42463,119 +21049,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesMilestonedIssueAct
}
}
#[doc = "`IssuesMilestonedIssueMilestone`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"closed_at\","]
-#[doc = " \"closed_issues\","]
-#[doc = " \"created_at\","]
-#[doc = " \"creator\","]
-#[doc = " \"description\","]
-#[doc = " \"due_on\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"labels_url\","]
-#[doc = " \"node_id\","]
-#[doc = " \"number\","]
-#[doc = " \"open_issues\","]
-#[doc = " \"state\","]
-#[doc = " \"title\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"closed_issues\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"creator\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"due_on\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"labels_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The number of the milestone.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"open_issues\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"The state of the milestone.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"description\": \"The title of the milestone.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/milestone\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesMilestonedIssueMilestone {
@@ -42597,19 +21070,6 @@ pub struct IssuesMilestonedIssueMilestone {
pub url: ::std::string::String,
}
#[doc = "`IssuesMilestonedIssueMilestoneState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -42661,34 +21121,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesMilestonedIssueMil
}
}
#[doc = "`IssuesMilestonedIssuePullRequest`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct IssuesMilestonedIssuePullRequest {
@@ -42702,20 +21134,6 @@ pub struct IssuesMilestonedIssuePullRequest {
pub url: ::std::option::Option<::std::string::String>,
}
#[doc = "State of the issue; either 'open' or 'closed'"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"State of the issue; either 'open' or 'closed'\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -42767,86 +21185,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesMilestonedIssueSta
}
}
#[doc = "`IssuesOpened`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"issues opened event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"issue\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"opened\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"old_issue\","]
-#[doc = " \"old_repository\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"old_issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " \"old_repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"closed_at\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesOpened {
@@ -42862,18 +21200,6 @@ pub struct IssuesOpened {
pub sender: User,
}
#[doc = "`IssuesOpenedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"opened\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -42921,28 +21247,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesOpenedAction {
}
}
#[doc = "`IssuesOpenedChanges`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"old_issue\","]
-#[doc = " \"old_repository\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"old_issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " \"old_repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesOpenedChanges {
@@ -42950,38 +21254,6 @@ pub struct IssuesOpenedChanges {
pub old_repository: Repository,
}
#[doc = "`IssuesOpenedIssue`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"closed_at\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesOpenedIssue {
@@ -43021,21 +21293,6 @@ pub struct IssuesOpenedIssue {
pub user: User,
}
#[doc = "`IssuesOpenedIssueActiveLockReason`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -43095,34 +21352,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesOpenedIssueActiveL
}
}
#[doc = "`IssuesOpenedIssuePullRequest`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct IssuesOpenedIssuePullRequest {
@@ -43136,18 +21365,6 @@ pub struct IssuesOpenedIssuePullRequest {
pub url: ::std::option::Option<::std::string::String>,
}
#[doc = "`IssuesOpenedIssueState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -43195,47 +21412,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesOpenedIssueState {
}
}
#[doc = "`IssuesPinned`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"issues pinned event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"issue\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"pinned\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesPinned {
@@ -43249,18 +21425,6 @@ pub struct IssuesPinned {
pub sender: User,
}
#[doc = "`IssuesPinnedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"pinned\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -43308,66 +21472,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesPinnedAction {
}
}
#[doc = "`IssuesReopened`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"issues reopened event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"issue\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"reopened\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesReopened {
@@ -43381,18 +21485,6 @@ pub struct IssuesReopened {
pub sender: User,
}
#[doc = "`IssuesReopenedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"reopened\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -43440,34 +21532,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesReopenedAction {
}
}
#[doc = "`IssuesReopenedIssue`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesReopenedIssue {
@@ -43507,21 +21571,6 @@ pub struct IssuesReopenedIssue {
pub user: User,
}
#[doc = "`IssuesReopenedIssueActiveLockReason`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -43581,34 +21630,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesReopenedIssueActiv
}
}
#[doc = "`IssuesReopenedIssuePullRequest`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct IssuesReopenedIssuePullRequest {
@@ -43622,18 +21643,6 @@ pub struct IssuesReopenedIssuePullRequest {
pub url: ::std::option::Option<::std::string::String>,
}
#[doc = "`IssuesReopenedIssueState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -43681,64 +21690,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesReopenedIssueState
}
}
#[doc = "`IssuesTransferred`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"issues transferred event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"issue\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"transferred\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"new_issue\","]
-#[doc = " \"new_repository\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"new_issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " \"new_repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesTransferred {
@@ -43753,18 +21704,6 @@ pub struct IssuesTransferred {
pub sender: User,
}
#[doc = "`IssuesTransferredAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"transferred\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -43812,28 +21751,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesTransferredAction
}
}
#[doc = "`IssuesTransferredChanges`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"new_issue\","]
-#[doc = " \"new_repository\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"new_issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " \"new_repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesTransferredChanges {
@@ -43841,59 +21758,6 @@ pub struct IssuesTransferredChanges {
pub new_repository: Repository,
}
#[doc = "`IssuesUnassigned`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"issues unassigned event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"issue\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"description\": \"The action that was performed.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unassigned\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"assignee\": {"]
-#[doc = " \"description\": \"The optional user who was assigned or unassigned from the issue.\","]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesUnassigned {
@@ -43911,19 +21775,6 @@ pub struct IssuesUnassigned {
pub sender: User,
}
#[doc = "The action that was performed."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The action that was performed.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unassigned\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -43971,51 +21822,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesUnassignedAction {
}
}
#[doc = "`IssuesUnlabeled`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"issues unlabeled event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"issue\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unlabeled\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " \"label\": {"]
-#[doc = " \"description\": \"The label that was removed from the issue.\","]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesUnlabeled {
@@ -44032,18 +21838,6 @@ pub struct IssuesUnlabeled {
pub sender: User,
}
#[doc = "`IssuesUnlabeledAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unlabeled\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -44091,70 +21885,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesUnlabeledAction {
}
}
#[doc = "`IssuesUnlocked`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"issues unlocked event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"issue\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unlocked\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"active_lock_reason\","]
-#[doc = " \"locked\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"active_lock_reason\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " false"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesUnlocked {
@@ -44168,18 +21898,6 @@ pub struct IssuesUnlocked {
pub sender: User,
}
#[doc = "`IssuesUnlockedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unlocked\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -44227,38 +21945,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesUnlockedAction {
}
}
#[doc = "`IssuesUnlockedIssue`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"active_lock_reason\","]
-#[doc = " \"locked\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"active_lock_reason\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " false"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesUnlockedIssue {
@@ -44299,18 +21985,6 @@ pub struct IssuesUnlockedIssue {
pub user: User,
}
#[doc = "`IssuesUnlockedIssueActiveLockReason`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"null\","]
-#[doc = " \"enum\": ["]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Serialize, Clone, Debug)]
#[serde(transparent)]
pub struct IssuesUnlockedIssueActiveLockReason(());
@@ -44345,34 +22019,6 @@ impl<'de> ::serde::Deserialize<'de> for IssuesUnlockedIssueActiveLockReason {
}
}
#[doc = "`IssuesUnlockedIssuePullRequest`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct IssuesUnlockedIssuePullRequest {
@@ -44386,20 +22032,6 @@ pub struct IssuesUnlockedIssuePullRequest {
pub url: ::std::option::Option<::std::string::String>,
}
#[doc = "State of the issue; either 'open' or 'closed'"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"State of the issue; either 'open' or 'closed'\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -44451,47 +22083,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesUnlockedIssueState
}
}
#[doc = "`IssuesUnpinned`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"issues unpinned event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"issue\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unpinned\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/issue\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct IssuesUnpinned {
@@ -44505,18 +22096,6 @@ pub struct IssuesUnpinned {
pub sender: User,
}
#[doc = "`IssuesUnpinnedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unpinned\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -44564,57 +22143,6 @@ impl ::std::convert::TryFrom<::std::string::String> for IssuesUnpinnedAction {
}
}
#[doc = "`Label`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Label\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"color\","]
-#[doc = " \"default\","]
-#[doc = " \"description\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"color\": {"]
-#[doc = " \"description\": \"6-character hex code, without the leading #, identifying the color\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"default\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the label.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"description\": \"URL for the label\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct Label {
@@ -44630,48 +22158,6 @@ pub struct Label {
pub url: ::std::string::String,
}
#[doc = "`LabelCreated`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"label created event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"label\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"label\": {"]
-#[doc = " \"description\": \"The label that was added.\","]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct LabelCreated {
@@ -44686,18 +22172,6 @@ pub struct LabelCreated {
pub sender: User,
}
#[doc = "`LabelCreatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -44745,48 +22219,6 @@ impl ::std::convert::TryFrom<::std::string::String> for LabelCreatedAction {
}
}
#[doc = "`LabelDeleted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"label deleted event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"label\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"label\": {"]
-#[doc = " \"description\": \"The label that was removed.\","]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct LabelDeleted {
@@ -44801,18 +22233,6 @@ pub struct LabelDeleted {
pub sender: User,
}
#[doc = "`LabelDeletedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -44860,94 +22280,6 @@ impl ::std::convert::TryFrom<::std::string::String> for LabelDeletedAction {
}
}
#[doc = "`LabelEdited`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"label edited event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"label\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"description\": \"The changes to the label if the action was `edited`.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"color\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the color if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the description if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the name if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"label\": {"]
-#[doc = " \"description\": \"The label that was edited.\","]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct LabelEdited {
@@ -44964,18 +22296,6 @@ pub struct LabelEdited {
pub sender: User,
}
#[doc = "`LabelEditedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -45023,58 +22343,6 @@ impl ::std::convert::TryFrom<::std::string::String> for LabelEditedAction {
}
}
#[doc = "The changes to the label if the action was `edited`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The changes to the label if the action was `edited`.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"color\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the color if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the description if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the name if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct LabelEditedChanges {
@@ -45086,25 +22354,6 @@ pub struct LabelEditedChanges {
pub name: ::std::option::Option,
}
#[doc = "`LabelEditedChangesColor`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the color if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct LabelEditedChangesColor {
@@ -45112,25 +22361,6 @@ pub struct LabelEditedChangesColor {
pub from: ::std::string::String,
}
#[doc = "`LabelEditedChangesDescription`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the description if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct LabelEditedChangesDescription {
@@ -45138,25 +22368,6 @@ pub struct LabelEditedChangesDescription {
pub from: ::std::string::String,
}
#[doc = "`LabelEditedChangesName`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the name if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct LabelEditedChangesName {
@@ -45164,25 +22375,6 @@ pub struct LabelEditedChangesName {
pub from: ::std::string::String,
}
#[doc = "`LabelEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/label$created\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/label$deleted\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/label$edited\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum LabelEvent {
@@ -45206,46 +22398,6 @@ impl ::std::convert::From for LabelEvent {
}
}
#[doc = "`License`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"License\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"key\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"spdx_id\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"key\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"spdx_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct License {
@@ -45256,148 +22408,12 @@ pub struct License {
pub url: ::std::option::Option<::std::string::String>,
}
#[doc = "`Link`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Link\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"href\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"href\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct Link {
pub href: ::std::string::String,
}
#[doc = "`MarketplacePurchase`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Marketplace Purchase\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"account\","]
-#[doc = " \"billing_cycle\","]
-#[doc = " \"free_trial_ends_on\","]
-#[doc = " \"on_free_trial\","]
-#[doc = " \"plan\","]
-#[doc = " \"unit_count\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"account\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"id\","]
-#[doc = " \"login\","]
-#[doc = " \"node_id\","]
-#[doc = " \"organization_billing_email\","]
-#[doc = " \"type\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"login\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"organization_billing_email\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"billing_cycle\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"free_trial_ends_on\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"next_billing_date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"on_free_trial\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"plan\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"bullets\","]
-#[doc = " \"description\","]
-#[doc = " \"has_free_trial\","]
-#[doc = " \"id\","]
-#[doc = " \"monthly_price_in_cents\","]
-#[doc = " \"name\","]
-#[doc = " \"price_model\","]
-#[doc = " \"unit_name\","]
-#[doc = " \"yearly_price_in_cents\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"bullets\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"has_free_trial\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"monthly_price_in_cents\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"price_model\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"unit_name\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"yearly_price_in_cents\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"unit_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchase {
@@ -45411,40 +22427,6 @@ pub struct MarketplacePurchase {
pub unit_count: i64,
}
#[doc = "`MarketplacePurchaseAccount`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"id\","]
-#[doc = " \"login\","]
-#[doc = " \"node_id\","]
-#[doc = " \"organization_billing_email\","]
-#[doc = " \"type\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"login\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"organization_billing_email\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchaseAccount {
@@ -45456,149 +22438,6 @@ pub struct MarketplacePurchaseAccount {
pub type_: ::std::string::String,
}
#[doc = "`MarketplacePurchaseCancelled`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"marketplace_purchase cancelled event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"effective_date\","]
-#[doc = " \"marketplace_purchase\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"cancelled\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"effective_date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"marketplace_purchase\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/marketplace-purchase\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"next_billing_date\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"next_billing_date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"previous_marketplace_purchase\": {"]
-#[doc = " \"$ref\": \"#/definitions/marketplace-purchase\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"avatar_url\","]
-#[doc = " \"email\","]
-#[doc = " \"events_url\","]
-#[doc = " \"followers_url\","]
-#[doc = " \"following_url\","]
-#[doc = " \"gists_url\","]
-#[doc = " \"gravatar_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"login\","]
-#[doc = " \"organizations_url\","]
-#[doc = " \"received_events_url\","]
-#[doc = " \"repos_url\","]
-#[doc = " \"site_admin\","]
-#[doc = " \"starred_url\","]
-#[doc = " \"subscriptions_url\","]
-#[doc = " \"type\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"avatar_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"email\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"followers_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"following_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gists_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gravatar_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"login\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"organizations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"received_events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"repos_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"site_admin\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"starred_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"subscriptions_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchaseCancelled {
@@ -45610,18 +22449,6 @@ pub struct MarketplacePurchaseCancelled {
pub sender: MarketplacePurchaseCancelledSender,
}
#[doc = "`MarketplacePurchaseCancelledAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"cancelled\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -45669,31 +22496,6 @@ impl ::std::convert::TryFrom<::std::string::String> for MarketplacePurchaseCance
}
}
#[doc = "`MarketplacePurchaseCancelledMarketplacePurchase`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/marketplace-purchase\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"next_billing_date\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"next_billing_date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchaseCancelledMarketplacePurchase {
@@ -45706,40 +22508,6 @@ pub struct MarketplacePurchaseCancelledMarketplacePurchase {
pub unit_count: i64,
}
#[doc = "`MarketplacePurchaseCancelledMarketplacePurchaseAccount`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"id\","]
-#[doc = " \"login\","]
-#[doc = " \"node_id\","]
-#[doc = " \"organization_billing_email\","]
-#[doc = " \"type\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"login\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"organization_billing_email\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchaseCancelledMarketplacePurchaseAccount {
@@ -45751,62 +22519,6 @@ pub struct MarketplacePurchaseCancelledMarketplacePurchaseAccount {
pub type_: ::std::string::String,
}
#[doc = "`MarketplacePurchaseCancelledMarketplacePurchasePlan`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"bullets\","]
-#[doc = " \"description\","]
-#[doc = " \"has_free_trial\","]
-#[doc = " \"id\","]
-#[doc = " \"monthly_price_in_cents\","]
-#[doc = " \"name\","]
-#[doc = " \"price_model\","]
-#[doc = " \"unit_name\","]
-#[doc = " \"yearly_price_in_cents\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"bullets\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"has_free_trial\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"monthly_price_in_cents\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"price_model\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"unit_name\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"yearly_price_in_cents\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchaseCancelledMarketplacePurchasePlan {
@@ -45821,104 +22533,6 @@ pub struct MarketplacePurchaseCancelledMarketplacePurchasePlan {
pub yearly_price_in_cents: i64,
}
#[doc = "`MarketplacePurchaseCancelledSender`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"avatar_url\","]
-#[doc = " \"email\","]
-#[doc = " \"events_url\","]
-#[doc = " \"followers_url\","]
-#[doc = " \"following_url\","]
-#[doc = " \"gists_url\","]
-#[doc = " \"gravatar_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"login\","]
-#[doc = " \"organizations_url\","]
-#[doc = " \"received_events_url\","]
-#[doc = " \"repos_url\","]
-#[doc = " \"site_admin\","]
-#[doc = " \"starred_url\","]
-#[doc = " \"subscriptions_url\","]
-#[doc = " \"type\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"avatar_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"email\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"followers_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"following_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gists_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gravatar_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"login\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"organizations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"received_events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"repos_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"site_admin\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"starred_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"subscriptions_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchaseCancelledSender {
@@ -45943,149 +22557,6 @@ pub struct MarketplacePurchaseCancelledSender {
pub url: ::std::string::String,
}
#[doc = "`MarketplacePurchaseChanged`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"marketplace_purchase changed event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"effective_date\","]
-#[doc = " \"marketplace_purchase\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"changed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"effective_date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"marketplace_purchase\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/marketplace-purchase\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"next_billing_date\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"next_billing_date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"previous_marketplace_purchase\": {"]
-#[doc = " \"$ref\": \"#/definitions/marketplace-purchase\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"avatar_url\","]
-#[doc = " \"email\","]
-#[doc = " \"events_url\","]
-#[doc = " \"followers_url\","]
-#[doc = " \"following_url\","]
-#[doc = " \"gists_url\","]
-#[doc = " \"gravatar_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"login\","]
-#[doc = " \"organizations_url\","]
-#[doc = " \"received_events_url\","]
-#[doc = " \"repos_url\","]
-#[doc = " \"site_admin\","]
-#[doc = " \"starred_url\","]
-#[doc = " \"subscriptions_url\","]
-#[doc = " \"type\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"avatar_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"email\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"followers_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"following_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gists_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gravatar_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"login\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"organizations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"received_events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"repos_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"site_admin\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"starred_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"subscriptions_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchaseChanged {
@@ -46097,18 +22568,6 @@ pub struct MarketplacePurchaseChanged {
pub sender: MarketplacePurchaseChangedSender,
}
#[doc = "`MarketplacePurchaseChangedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"changed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -46156,31 +22615,6 @@ impl ::std::convert::TryFrom<::std::string::String> for MarketplacePurchaseChang
}
}
#[doc = "`MarketplacePurchaseChangedMarketplacePurchase`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/marketplace-purchase\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"next_billing_date\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"next_billing_date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchaseChangedMarketplacePurchase {
@@ -46193,40 +22627,6 @@ pub struct MarketplacePurchaseChangedMarketplacePurchase {
pub unit_count: i64,
}
#[doc = "`MarketplacePurchaseChangedMarketplacePurchaseAccount`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"id\","]
-#[doc = " \"login\","]
-#[doc = " \"node_id\","]
-#[doc = " \"organization_billing_email\","]
-#[doc = " \"type\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"login\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"organization_billing_email\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchaseChangedMarketplacePurchaseAccount {
@@ -46238,62 +22638,6 @@ pub struct MarketplacePurchaseChangedMarketplacePurchaseAccount {
pub type_: ::std::string::String,
}
#[doc = "`MarketplacePurchaseChangedMarketplacePurchasePlan`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"bullets\","]
-#[doc = " \"description\","]
-#[doc = " \"has_free_trial\","]
-#[doc = " \"id\","]
-#[doc = " \"monthly_price_in_cents\","]
-#[doc = " \"name\","]
-#[doc = " \"price_model\","]
-#[doc = " \"unit_name\","]
-#[doc = " \"yearly_price_in_cents\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"bullets\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"has_free_trial\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"monthly_price_in_cents\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"price_model\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"unit_name\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"yearly_price_in_cents\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchaseChangedMarketplacePurchasePlan {
@@ -46308,104 +22652,6 @@ pub struct MarketplacePurchaseChangedMarketplacePurchasePlan {
pub yearly_price_in_cents: i64,
}
#[doc = "`MarketplacePurchaseChangedSender`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"avatar_url\","]
-#[doc = " \"email\","]
-#[doc = " \"events_url\","]
-#[doc = " \"followers_url\","]
-#[doc = " \"following_url\","]
-#[doc = " \"gists_url\","]
-#[doc = " \"gravatar_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"login\","]
-#[doc = " \"organizations_url\","]
-#[doc = " \"received_events_url\","]
-#[doc = " \"repos_url\","]
-#[doc = " \"site_admin\","]
-#[doc = " \"starred_url\","]
-#[doc = " \"subscriptions_url\","]
-#[doc = " \"type\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"avatar_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"email\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"followers_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"following_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gists_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gravatar_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"login\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"organizations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"received_events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"repos_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"site_admin\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"starred_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"subscriptions_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchaseChangedSender {
@@ -46430,31 +22676,6 @@ pub struct MarketplacePurchaseChangedSender {
pub url: ::std::string::String,
}
#[doc = "`MarketplacePurchaseEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/marketplace_purchase$cancelled\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/marketplace_purchase$changed\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/marketplace_purchase$pending_change\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/marketplace_purchase$pending_change_cancelled\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/marketplace_purchase$purchased\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum MarketplacePurchaseEvent {
@@ -46490,149 +22711,6 @@ impl ::std::convert::From for MarketplacePurchaseE
}
}
#[doc = "`MarketplacePurchasePendingChange`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"marketplace_purchase pending_change event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"effective_date\","]
-#[doc = " \"marketplace_purchase\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"pending_change\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"effective_date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"marketplace_purchase\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/marketplace-purchase\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"next_billing_date\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"next_billing_date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"previous_marketplace_purchase\": {"]
-#[doc = " \"$ref\": \"#/definitions/marketplace-purchase\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"avatar_url\","]
-#[doc = " \"email\","]
-#[doc = " \"events_url\","]
-#[doc = " \"followers_url\","]
-#[doc = " \"following_url\","]
-#[doc = " \"gists_url\","]
-#[doc = " \"gravatar_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"login\","]
-#[doc = " \"organizations_url\","]
-#[doc = " \"received_events_url\","]
-#[doc = " \"repos_url\","]
-#[doc = " \"site_admin\","]
-#[doc = " \"starred_url\","]
-#[doc = " \"subscriptions_url\","]
-#[doc = " \"type\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"avatar_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"email\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"followers_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"following_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gists_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gravatar_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"login\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"organizations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"received_events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"repos_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"site_admin\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"starred_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"subscriptions_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchasePendingChange {
@@ -46644,18 +22722,6 @@ pub struct MarketplacePurchasePendingChange {
pub sender: MarketplacePurchasePendingChangeSender,
}
#[doc = "`MarketplacePurchasePendingChangeAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"pending_change\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -46703,149 +22769,6 @@ impl ::std::convert::TryFrom<::std::string::String> for MarketplacePurchasePendi
}
}
#[doc = "`MarketplacePurchasePendingChangeCancelled`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"marketplace_purchase pending_change_cancelled event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"effective_date\","]
-#[doc = " \"marketplace_purchase\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"pending_change_cancelled\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"effective_date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"marketplace_purchase\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/marketplace-purchase\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"next_billing_date\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"next_billing_date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"previous_marketplace_purchase\": {"]
-#[doc = " \"$ref\": \"#/definitions/marketplace-purchase\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"avatar_url\","]
-#[doc = " \"email\","]
-#[doc = " \"events_url\","]
-#[doc = " \"followers_url\","]
-#[doc = " \"following_url\","]
-#[doc = " \"gists_url\","]
-#[doc = " \"gravatar_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"login\","]
-#[doc = " \"organizations_url\","]
-#[doc = " \"received_events_url\","]
-#[doc = " \"repos_url\","]
-#[doc = " \"site_admin\","]
-#[doc = " \"starred_url\","]
-#[doc = " \"subscriptions_url\","]
-#[doc = " \"type\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"avatar_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"email\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"followers_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"following_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gists_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gravatar_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"login\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"organizations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"received_events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"repos_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"site_admin\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"starred_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"subscriptions_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchasePendingChangeCancelled {
@@ -46857,18 +22780,6 @@ pub struct MarketplacePurchasePendingChangeCancelled {
pub sender: MarketplacePurchasePendingChangeCancelledSender,
}
#[doc = "`MarketplacePurchasePendingChangeCancelledAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"pending_change_cancelled\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -46918,31 +22829,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`MarketplacePurchasePendingChangeCancelledMarketplacePurchase`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/marketplace-purchase\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"next_billing_date\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"next_billing_date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchasePendingChangeCancelledMarketplacePurchase {
@@ -46955,40 +22841,6 @@ pub struct MarketplacePurchasePendingChangeCancelledMarketplacePurchase {
pub unit_count: i64,
}
#[doc = "`MarketplacePurchasePendingChangeCancelledMarketplacePurchaseAccount`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"id\","]
-#[doc = " \"login\","]
-#[doc = " \"node_id\","]
-#[doc = " \"organization_billing_email\","]
-#[doc = " \"type\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"login\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"organization_billing_email\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchasePendingChangeCancelledMarketplacePurchaseAccount {
@@ -47000,62 +22852,6 @@ pub struct MarketplacePurchasePendingChangeCancelledMarketplacePurchaseAccount {
pub type_: ::std::string::String,
}
#[doc = "`MarketplacePurchasePendingChangeCancelledMarketplacePurchasePlan`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"bullets\","]
-#[doc = " \"description\","]
-#[doc = " \"has_free_trial\","]
-#[doc = " \"id\","]
-#[doc = " \"monthly_price_in_cents\","]
-#[doc = " \"name\","]
-#[doc = " \"price_model\","]
-#[doc = " \"unit_name\","]
-#[doc = " \"yearly_price_in_cents\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"bullets\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"has_free_trial\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"monthly_price_in_cents\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"price_model\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"unit_name\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"yearly_price_in_cents\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchasePendingChangeCancelledMarketplacePurchasePlan {
@@ -47070,104 +22866,6 @@ pub struct MarketplacePurchasePendingChangeCancelledMarketplacePurchasePlan {
pub yearly_price_in_cents: i64,
}
#[doc = "`MarketplacePurchasePendingChangeCancelledSender`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"avatar_url\","]
-#[doc = " \"email\","]
-#[doc = " \"events_url\","]
-#[doc = " \"followers_url\","]
-#[doc = " \"following_url\","]
-#[doc = " \"gists_url\","]
-#[doc = " \"gravatar_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"login\","]
-#[doc = " \"organizations_url\","]
-#[doc = " \"received_events_url\","]
-#[doc = " \"repos_url\","]
-#[doc = " \"site_admin\","]
-#[doc = " \"starred_url\","]
-#[doc = " \"subscriptions_url\","]
-#[doc = " \"type\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"avatar_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"email\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"followers_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"following_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gists_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gravatar_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"login\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"organizations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"received_events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"repos_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"site_admin\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"starred_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"subscriptions_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchasePendingChangeCancelledSender {
@@ -47192,31 +22890,6 @@ pub struct MarketplacePurchasePendingChangeCancelledSender {
pub url: ::std::string::String,
}
#[doc = "`MarketplacePurchasePendingChangeMarketplacePurchase`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/marketplace-purchase\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"next_billing_date\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"next_billing_date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchasePendingChangeMarketplacePurchase {
@@ -47229,40 +22902,6 @@ pub struct MarketplacePurchasePendingChangeMarketplacePurchase {
pub unit_count: i64,
}
#[doc = "`MarketplacePurchasePendingChangeMarketplacePurchaseAccount`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"id\","]
-#[doc = " \"login\","]
-#[doc = " \"node_id\","]
-#[doc = " \"organization_billing_email\","]
-#[doc = " \"type\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"login\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"organization_billing_email\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchasePendingChangeMarketplacePurchaseAccount {
@@ -47274,62 +22913,6 @@ pub struct MarketplacePurchasePendingChangeMarketplacePurchaseAccount {
pub type_: ::std::string::String,
}
#[doc = "`MarketplacePurchasePendingChangeMarketplacePurchasePlan`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"bullets\","]
-#[doc = " \"description\","]
-#[doc = " \"has_free_trial\","]
-#[doc = " \"id\","]
-#[doc = " \"monthly_price_in_cents\","]
-#[doc = " \"name\","]
-#[doc = " \"price_model\","]
-#[doc = " \"unit_name\","]
-#[doc = " \"yearly_price_in_cents\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"bullets\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"has_free_trial\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"monthly_price_in_cents\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"price_model\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"unit_name\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"yearly_price_in_cents\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchasePendingChangeMarketplacePurchasePlan {
@@ -47344,104 +22927,6 @@ pub struct MarketplacePurchasePendingChangeMarketplacePurchasePlan {
pub yearly_price_in_cents: i64,
}
#[doc = "`MarketplacePurchasePendingChangeSender`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"avatar_url\","]
-#[doc = " \"email\","]
-#[doc = " \"events_url\","]
-#[doc = " \"followers_url\","]
-#[doc = " \"following_url\","]
-#[doc = " \"gists_url\","]
-#[doc = " \"gravatar_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"login\","]
-#[doc = " \"organizations_url\","]
-#[doc = " \"received_events_url\","]
-#[doc = " \"repos_url\","]
-#[doc = " \"site_admin\","]
-#[doc = " \"starred_url\","]
-#[doc = " \"subscriptions_url\","]
-#[doc = " \"type\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"avatar_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"email\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"followers_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"following_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gists_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gravatar_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"login\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"organizations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"received_events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"repos_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"site_admin\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"starred_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"subscriptions_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchasePendingChangeSender {
@@ -47466,62 +22951,6 @@ pub struct MarketplacePurchasePendingChangeSender {
pub url: ::std::string::String,
}
#[doc = "`MarketplacePurchasePlan`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"bullets\","]
-#[doc = " \"description\","]
-#[doc = " \"has_free_trial\","]
-#[doc = " \"id\","]
-#[doc = " \"monthly_price_in_cents\","]
-#[doc = " \"name\","]
-#[doc = " \"price_model\","]
-#[doc = " \"unit_name\","]
-#[doc = " \"yearly_price_in_cents\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"bullets\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"has_free_trial\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"monthly_price_in_cents\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"price_model\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"unit_name\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"yearly_price_in_cents\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchasePlan {
@@ -47536,149 +22965,6 @@ pub struct MarketplacePurchasePlan {
pub yearly_price_in_cents: i64,
}
#[doc = "`MarketplacePurchasePurchased`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"marketplace_purchase purchased event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"effective_date\","]
-#[doc = " \"marketplace_purchase\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"purchased\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"effective_date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"marketplace_purchase\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/marketplace-purchase\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"next_billing_date\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"next_billing_date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"previous_marketplace_purchase\": {"]
-#[doc = " \"$ref\": \"#/definitions/marketplace-purchase\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"avatar_url\","]
-#[doc = " \"email\","]
-#[doc = " \"events_url\","]
-#[doc = " \"followers_url\","]
-#[doc = " \"following_url\","]
-#[doc = " \"gists_url\","]
-#[doc = " \"gravatar_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"login\","]
-#[doc = " \"organizations_url\","]
-#[doc = " \"received_events_url\","]
-#[doc = " \"repos_url\","]
-#[doc = " \"site_admin\","]
-#[doc = " \"starred_url\","]
-#[doc = " \"subscriptions_url\","]
-#[doc = " \"type\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"avatar_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"email\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"followers_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"following_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gists_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gravatar_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"login\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"organizations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"received_events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"repos_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"site_admin\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"starred_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"subscriptions_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchasePurchased {
@@ -47690,18 +22976,6 @@ pub struct MarketplacePurchasePurchased {
pub sender: MarketplacePurchasePurchasedSender,
}
#[doc = "`MarketplacePurchasePurchasedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"purchased\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -47749,31 +23023,6 @@ impl ::std::convert::TryFrom<::std::string::String> for MarketplacePurchasePurch
}
}
#[doc = "`MarketplacePurchasePurchasedMarketplacePurchase`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/marketplace-purchase\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"next_billing_date\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"next_billing_date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchasePurchasedMarketplacePurchase {
@@ -47786,40 +23035,6 @@ pub struct MarketplacePurchasePurchasedMarketplacePurchase {
pub unit_count: i64,
}
#[doc = "`MarketplacePurchasePurchasedMarketplacePurchaseAccount`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"id\","]
-#[doc = " \"login\","]
-#[doc = " \"node_id\","]
-#[doc = " \"organization_billing_email\","]
-#[doc = " \"type\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"login\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"organization_billing_email\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchasePurchasedMarketplacePurchaseAccount {
@@ -47831,62 +23046,6 @@ pub struct MarketplacePurchasePurchasedMarketplacePurchaseAccount {
pub type_: ::std::string::String,
}
#[doc = "`MarketplacePurchasePurchasedMarketplacePurchasePlan`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"bullets\","]
-#[doc = " \"description\","]
-#[doc = " \"has_free_trial\","]
-#[doc = " \"id\","]
-#[doc = " \"monthly_price_in_cents\","]
-#[doc = " \"name\","]
-#[doc = " \"price_model\","]
-#[doc = " \"unit_name\","]
-#[doc = " \"yearly_price_in_cents\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"bullets\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"has_free_trial\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"monthly_price_in_cents\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"price_model\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"unit_name\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"yearly_price_in_cents\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchasePurchasedMarketplacePurchasePlan {
@@ -47901,104 +23060,6 @@ pub struct MarketplacePurchasePurchasedMarketplacePurchasePlan {
pub yearly_price_in_cents: i64,
}
#[doc = "`MarketplacePurchasePurchasedSender`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"avatar_url\","]
-#[doc = " \"email\","]
-#[doc = " \"events_url\","]
-#[doc = " \"followers_url\","]
-#[doc = " \"following_url\","]
-#[doc = " \"gists_url\","]
-#[doc = " \"gravatar_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"login\","]
-#[doc = " \"organizations_url\","]
-#[doc = " \"received_events_url\","]
-#[doc = " \"repos_url\","]
-#[doc = " \"site_admin\","]
-#[doc = " \"starred_url\","]
-#[doc = " \"subscriptions_url\","]
-#[doc = " \"type\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"avatar_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"email\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"followers_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"following_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gists_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gravatar_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"login\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"organizations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"received_events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"repos_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"site_admin\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"starred_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"subscriptions_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MarketplacePurchasePurchasedSender {
@@ -48023,68 +23084,6 @@ pub struct MarketplacePurchasePurchasedSender {
pub url: ::std::string::String,
}
#[doc = "Activity related to repository collaborators. The type of activity is specified in the action property."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"member added event\","]
-#[doc = " \"description\": \"Activity related to repository collaborators. The type of activity is specified in the action property.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"member\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"added\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"permission\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"to\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"to\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"write\","]
-#[doc = " \"admin\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"member\": {"]
-#[doc = " \"description\": \"The user that was added.\","]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MemberAdded {
@@ -48099,18 +23098,6 @@ pub struct MemberAdded {
pub sender: User,
}
#[doc = "`MemberAddedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"added\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -48158,34 +23145,6 @@ impl ::std::convert::TryFrom<::std::string::String> for MemberAddedAction {
}
}
#[doc = "`MemberAddedChanges`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"permission\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"to\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"to\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"write\","]
-#[doc = " \"admin\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct MemberAddedChanges {
@@ -48193,47 +23152,12 @@ pub struct MemberAddedChanges {
pub permission: ::std::option::Option,
}
#[doc = "`MemberAddedChangesPermission`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"to\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"to\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"write\","]
-#[doc = " \"admin\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MemberAddedChangesPermission {
pub to: MemberAddedChangesPermissionTo,
}
#[doc = "`MemberAddedChangesPermissionTo`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"write\","]
-#[doc = " \"admin\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -48285,69 +23209,6 @@ impl ::std::convert::TryFrom<::std::string::String> for MemberAddedChangesPermis
}
}
#[doc = "`MemberEdited`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"member edited event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"member\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"description\": \"The changes to the collaborator permissions\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"old_permission\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"old_permission\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous permissions of the collaborator if the action was edited.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"member\": {"]
-#[doc = " \"description\": \"The user who's permissions are changed.\","]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MemberEdited {
@@ -48361,18 +23222,6 @@ pub struct MemberEdited {
pub sender: User,
}
#[doc = "`MemberEditedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -48420,60 +23269,12 @@ impl ::std::convert::TryFrom<::std::string::String> for MemberEditedAction {
}
}
#[doc = "The changes to the collaborator permissions"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The changes to the collaborator permissions\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"old_permission\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"old_permission\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous permissions of the collaborator if the action was edited.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MemberEditedChanges {
pub old_permission: MemberEditedChangesOldPermission,
}
#[doc = "`MemberEditedChangesOldPermission`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous permissions of the collaborator if the action was edited.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MemberEditedChangesOldPermission {
@@ -48481,25 +23282,6 @@ pub struct MemberEditedChangesOldPermission {
pub from: ::std::string::String,
}
#[doc = "`MemberEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/member$added\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/member$edited\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/member$removed\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum MemberEvent {
@@ -48523,45 +23305,6 @@ impl ::std::convert::From for MemberEvent {
}
}
#[doc = "`MemberRemoved`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"member removed event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"member\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"removed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"member\": {"]
-#[doc = " \"description\": \"The user that was removed.\","]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MemberRemoved {
@@ -48574,18 +23317,6 @@ pub struct MemberRemoved {
pub sender: User,
}
#[doc = "`MemberRemovedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"removed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -48633,45 +23364,6 @@ impl ::std::convert::TryFrom<::std::string::String> for MemberRemovedAction {
}
}
#[doc = "The membership between the user and the organization. Not present when the action is `member_invited`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Membership\","]
-#[doc = " \"description\": \"The membership between the user and the organization. Not present when the action is `member_invited`.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"organization_url\","]
-#[doc = " \"role\","]
-#[doc = " \"state\","]
-#[doc = " \"url\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"organization_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"role\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct Membership {
@@ -48682,58 +23374,6 @@ pub struct Membership {
pub user: User,
}
#[doc = "`MembershipAdded`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"membership added event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"member\","]
-#[doc = " \"organization\","]
-#[doc = " \"scope\","]
-#[doc = " \"sender\","]
-#[doc = " \"team\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"added\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"member\": {"]
-#[doc = " \"description\": \"The [user](https://docs.github.com/en/rest/reference/users) that was added or removed.\","]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"scope\": {"]
-#[doc = " \"description\": \"The scope of the membership. Currently, can only be `team`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"team\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"team\": {"]
-#[doc = " \"description\": \"The [team](https://docs.github.com/en/rest/reference/teams) for the membership.\","]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MembershipAdded {
@@ -48750,18 +23390,6 @@ pub struct MembershipAdded {
pub team: Team,
}
#[doc = "`MembershipAddedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"added\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -48809,19 +23437,6 @@ impl ::std::convert::TryFrom<::std::string::String> for MembershipAddedAction {
}
}
#[doc = "The scope of the membership. Currently, can only be `team`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The scope of the membership. Currently, can only be `team`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"team\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -48869,22 +23484,6 @@ impl ::std::convert::TryFrom<::std::string::String> for MembershipAddedScope {
}
}
#[doc = "`MembershipEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/membership$added\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/membership$removed\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum MembershipEvent {
@@ -48902,82 +23501,6 @@ impl ::std::convert::From for MembershipEvent {
}
}
#[doc = "`MembershipRemoved`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"membership removed event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"member\","]
-#[doc = " \"organization\","]
-#[doc = " \"scope\","]
-#[doc = " \"sender\","]
-#[doc = " \"team\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"removed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"member\": {"]
-#[doc = " \"description\": \"The [user](https://docs.github.com/en/rest/reference/users) that was added or removed.\","]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"scope\": {"]
-#[doc = " \"description\": \"The scope of the membership. Currently, can only be `team`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"team\","]
-#[doc = " \"organization\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"team\": {"]
-#[doc = " \"description\": \"The [team](https://docs.github.com/en/rest/reference/teams) for the membership.\","]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"id\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"deleted\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MembershipRemoved {
@@ -48994,18 +23517,6 @@ pub struct MembershipRemoved {
pub team: MembershipRemovedTeam,
}
#[doc = "`MembershipRemovedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"removed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -49053,20 +23564,6 @@ impl ::std::convert::TryFrom<::std::string::String> for MembershipRemovedAction
}
}
#[doc = "The scope of the membership. Currently, can only be `team`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The scope of the membership. Currently, can only be `team`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"team\","]
-#[doc = " \"organization\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -49118,39 +23615,6 @@ impl ::std::convert::TryFrom<::std::string::String> for MembershipRemovedScope {
}
}
#[doc = "The [team](https://docs.github.com/en/rest/reference/teams) for the membership."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The [team](https://docs.github.com/en/rest/reference/teams) for the membership.\","]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"id\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"deleted\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged, deny_unknown_fields)]
pub enum MembershipRemovedTeam {
@@ -49168,106 +23632,6 @@ impl ::std::convert::From for MembershipRemovedTeam {
}
}
#[doc = "`MetaDeleted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"meta deleted event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"hook\","]
-#[doc = " \"hook_id\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"hook\": {"]
-#[doc = " \"description\": \"The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, business, app, or GitHub Marketplace.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"active\","]
-#[doc = " \"config\","]
-#[doc = " \"created_at\","]
-#[doc = " \"events\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"type\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"active\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"config\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"content_type\","]
-#[doc = " \"insecure_ssl\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"content_type\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"json\","]
-#[doc = " \"form\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"insecure_ssl\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"events\": {"]
-#[doc = " \"$ref\": \"#/definitions/webhook-events\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"hook_id\": {"]
-#[doc = " \"description\": \"The id of the modified webhook.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MetaDeleted {
@@ -49279,18 +23643,6 @@ pub struct MetaDeleted {
pub sender: User,
}
#[doc = "`MetaDeletedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -49338,75 +23690,6 @@ impl ::std::convert::TryFrom<::std::string::String> for MetaDeletedAction {
}
}
#[doc = "The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, business, app, or GitHub Marketplace."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, business, app, or GitHub Marketplace.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"active\","]
-#[doc = " \"config\","]
-#[doc = " \"created_at\","]
-#[doc = " \"events\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"type\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"active\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"config\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"content_type\","]
-#[doc = " \"insecure_ssl\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"content_type\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"json\","]
-#[doc = " \"form\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"insecure_ssl\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"events\": {"]
-#[doc = " \"$ref\": \"#/definitions/webhook-events\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MetaDeletedHook {
@@ -49421,37 +23704,6 @@ pub struct MetaDeletedHook {
pub updated_at: ::std::string::String,
}
#[doc = "`MetaDeletedHookConfig`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"content_type\","]
-#[doc = " \"insecure_ssl\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"content_type\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"json\","]
-#[doc = " \"form\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"insecure_ssl\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MetaDeletedHookConfig {
@@ -49460,19 +23712,6 @@ pub struct MetaDeletedHookConfig {
pub url: ::std::string::String,
}
#[doc = "`MetaDeletedHookConfigContentType`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"json\","]
-#[doc = " \"form\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -49524,19 +23763,6 @@ impl ::std::convert::TryFrom<::std::string::String> for MetaDeletedHookConfigCon
}
}
#[doc = "`MetaEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/meta$deleted\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(transparent)]
pub struct MetaEvent(pub MetaDeleted);
@@ -49557,110 +23783,6 @@ impl ::std::convert::From for MetaEvent {
}
}
#[doc = "A collection of related issues and pull requests."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Milestone\","]
-#[doc = " \"description\": \"A collection of related issues and pull requests.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"closed_at\","]
-#[doc = " \"closed_issues\","]
-#[doc = " \"created_at\","]
-#[doc = " \"creator\","]
-#[doc = " \"description\","]
-#[doc = " \"due_on\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"labels_url\","]
-#[doc = " \"node_id\","]
-#[doc = " \"number\","]
-#[doc = " \"open_issues\","]
-#[doc = " \"state\","]
-#[doc = " \"title\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"closed_issues\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"creator\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"due_on\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"labels_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The number of the milestone.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"open_issues\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"The state of the milestone.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"description\": \"The title of the milestone.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct Milestone {
@@ -49685,70 +23807,6 @@ pub struct Milestone {
pub url: ::std::string::String,
}
#[doc = "`MilestoneClosed`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"milestone closed event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"milestone\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"milestone\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/milestone\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"closed_at\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MilestoneClosed {
@@ -49762,18 +23820,6 @@ pub struct MilestoneClosed {
pub sender: User,
}
#[doc = "`MilestoneClosedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -49821,38 +23867,6 @@ impl ::std::convert::TryFrom<::std::string::String> for MilestoneClosedAction {
}
}
#[doc = "`MilestoneClosedMilestone`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/milestone\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"closed_at\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MilestoneClosedMilestone {
@@ -49876,18 +23890,6 @@ pub struct MilestoneClosedMilestone {
pub url: ::std::string::String,
}
#[doc = "`MilestoneClosedMilestoneState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -49935,70 +23937,6 @@ impl ::std::convert::TryFrom<::std::string::String> for MilestoneClosedMilestone
}
}
#[doc = "`MilestoneCreated`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"milestone created event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"milestone\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"milestone\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/milestone\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"closed_at\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MilestoneCreated {
@@ -50012,18 +23950,6 @@ pub struct MilestoneCreated {
pub sender: User,
}
#[doc = "`MilestoneCreatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -50071,38 +23997,6 @@ impl ::std::convert::TryFrom<::std::string::String> for MilestoneCreatedAction {
}
}
#[doc = "`MilestoneCreatedMilestone`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/milestone\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"closed_at\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MilestoneCreatedMilestone {
@@ -50126,18 +24020,6 @@ pub struct MilestoneCreatedMilestone {
pub url: ::std::string::String,
}
#[doc = "`MilestoneCreatedMilestoneState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -50185,47 +24067,6 @@ impl ::std::convert::TryFrom<::std::string::String> for MilestoneCreatedMileston
}
}
#[doc = "`MilestoneDeleted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"milestone deleted event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"milestone\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"milestone\": {"]
-#[doc = " \"$ref\": \"#/definitions/milestone\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MilestoneDeleted {
@@ -50239,18 +24080,6 @@ pub struct MilestoneDeleted {
pub sender: User,
}
#[doc = "`MilestoneDeletedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -50298,94 +24127,6 @@ impl ::std::convert::TryFrom<::std::string::String> for MilestoneDeletedAction {
}
}
#[doc = "`MilestoneEdited`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"milestone edited event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"milestone\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"description\": \"The changes to the milestone if the action was `edited`.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the description if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"due_on\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the due date if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the title if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"milestone\": {"]
-#[doc = " \"$ref\": \"#/definitions/milestone\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MilestoneEdited {
@@ -50400,18 +24141,6 @@ pub struct MilestoneEdited {
pub sender: User,
}
#[doc = "`MilestoneEditedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -50459,58 +24188,6 @@ impl ::std::convert::TryFrom<::std::string::String> for MilestoneEditedAction {
}
}
#[doc = "The changes to the milestone if the action was `edited`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The changes to the milestone if the action was `edited`.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the description if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"due_on\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the due date if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the title if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct MilestoneEditedChanges {
@@ -50522,25 +24199,6 @@ pub struct MilestoneEditedChanges {
pub title: ::std::option::Option,
}
#[doc = "`MilestoneEditedChangesDescription`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the description if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MilestoneEditedChangesDescription {
@@ -50548,25 +24206,6 @@ pub struct MilestoneEditedChangesDescription {
pub from: ::std::string::String,
}
#[doc = "`MilestoneEditedChangesDueOn`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the due date if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MilestoneEditedChangesDueOn {
@@ -50574,25 +24213,6 @@ pub struct MilestoneEditedChangesDueOn {
pub from: ::std::string::String,
}
#[doc = "`MilestoneEditedChangesTitle`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the title if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MilestoneEditedChangesTitle {
@@ -50600,31 +24220,6 @@ pub struct MilestoneEditedChangesTitle {
pub from: ::std::string::String,
}
#[doc = "`MilestoneEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/milestone$closed\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/milestone$created\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/milestone$deleted\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/milestone$edited\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/milestone$opened\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum MilestoneEvent {
@@ -50660,70 +24255,6 @@ impl ::std::convert::From for MilestoneEvent {
}
}
#[doc = "`MilestoneOpened`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"milestone opened event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"milestone\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"opened\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"milestone\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/milestone\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"closed_at\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MilestoneOpened {
@@ -50737,18 +24268,6 @@ pub struct MilestoneOpened {
pub sender: User,
}
#[doc = "`MilestoneOpenedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"opened\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -50796,38 +24315,6 @@ impl ::std::convert::TryFrom<::std::string::String> for MilestoneOpenedAction {
}
}
#[doc = "`MilestoneOpenedMilestone`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/milestone\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"closed_at\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct MilestoneOpenedMilestone {
@@ -50851,18 +24338,6 @@ pub struct MilestoneOpenedMilestone {
pub url: ::std::string::String,
}
#[doc = "`MilestoneOpenedMilestoneState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -50910,20 +24385,6 @@ impl ::std::convert::TryFrom<::std::string::String> for MilestoneOpenedMilestone
}
}
#[doc = "The state of the milestone."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The state of the milestone.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -50975,45 +24436,6 @@ impl ::std::convert::TryFrom<::std::string::String> for MilestoneState {
}
}
#[doc = "`OrgBlockBlocked`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"org_block blocked event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"blocked_user\","]
-#[doc = " \"organization\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"blocked\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"blocked_user\": {"]
-#[doc = " \"description\": \"Information about the user that was blocked or unblocked.\","]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct OrgBlockBlocked {
@@ -51026,18 +24448,6 @@ pub struct OrgBlockBlocked {
pub sender: User,
}
#[doc = "`OrgBlockBlockedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"blocked\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -51085,22 +24495,6 @@ impl ::std::convert::TryFrom<::std::string::String> for OrgBlockBlockedAction {
}
}
#[doc = "`OrgBlockEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/org_block$blocked\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/org_block$unblocked\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum OrgBlockEvent {
@@ -51118,45 +24512,6 @@ impl ::std::convert::From for OrgBlockEvent {
}
}
#[doc = "`OrgBlockUnblocked`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"org_block unblocked event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"blocked_user\","]
-#[doc = " \"organization\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unblocked\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"blocked_user\": {"]
-#[doc = " \"description\": \"Information about the user that was blocked or unblocked.\","]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct OrgBlockUnblocked {
@@ -51169,18 +24524,6 @@ pub struct OrgBlockUnblocked {
pub sender: User,
}
#[doc = "`OrgBlockUnblockedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unblocked\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -51228,85 +24571,6 @@ impl ::std::convert::TryFrom<::std::string::String> for OrgBlockUnblockedAction
}
}
#[doc = "`Organization`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Organization\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"avatar_url\","]
-#[doc = " \"description\","]
-#[doc = " \"events_url\","]
-#[doc = " \"hooks_url\","]
-#[doc = " \"id\","]
-#[doc = " \"issues_url\","]
-#[doc = " \"login\","]
-#[doc = " \"members_url\","]
-#[doc = " \"node_id\","]
-#[doc = " \"public_members_url\","]
-#[doc = " \"repos_url\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"avatar_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"hooks_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"issues_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"login\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"members_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"public_members_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"repos_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct Organization {
@@ -51326,44 +24590,6 @@ pub struct Organization {
pub url: ::std::string::String,
}
#[doc = "`OrganizationDeleted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"organization deleted event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"membership\","]
-#[doc = " \"organization\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"membership\": {"]
-#[doc = " \"$ref\": \"#/definitions/membership\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct OrganizationDeleted {
@@ -51375,18 +24601,6 @@ pub struct OrganizationDeleted {
pub sender: User,
}
#[doc = "`OrganizationDeletedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -51434,31 +24648,6 @@ impl ::std::convert::TryFrom<::std::string::String> for OrganizationDeletedActio
}
}
#[doc = "`OrganizationEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/organization$deleted\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/organization$member_added\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/organization$member_invited\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/organization$member_removed\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/organization$renamed\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum OrganizationEvent {
@@ -51494,44 +24683,6 @@ impl ::std::convert::From for OrganizationEvent {
}
}
#[doc = "`OrganizationMemberAdded`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"organization member_added event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"membership\","]
-#[doc = " \"organization\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"member_added\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"membership\": {"]
-#[doc = " \"$ref\": \"#/definitions/membership\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct OrganizationMemberAdded {
@@ -51543,18 +24694,6 @@ pub struct OrganizationMemberAdded {
pub sender: User,
}
#[doc = "`OrganizationMemberAddedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"member_added\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -51602,114 +24741,6 @@ impl ::std::convert::TryFrom<::std::string::String> for OrganizationMemberAddedA
}
}
#[doc = "`OrganizationMemberInvited`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"organization member_invited event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"invitation\","]
-#[doc = " \"organization\","]
-#[doc = " \"sender\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"member_invited\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"invitation\": {"]
-#[doc = " \"description\": \"The invitation for the user or email if the action is `member_invited`.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"email\","]
-#[doc = " \"failed_at\","]
-#[doc = " \"failed_reason\","]
-#[doc = " \"id\","]
-#[doc = " \"invitation_teams_url\","]
-#[doc = " \"inviter\","]
-#[doc = " \"login\","]
-#[doc = " \"node_id\","]
-#[doc = " \"role\","]
-#[doc = " \"team_count\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"email\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"failed_at\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"failed_reason\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"invitation_teams_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"inviter\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"login\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"role\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"team_count\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct OrganizationMemberInvited {
@@ -51722,18 +24753,6 @@ pub struct OrganizationMemberInvited {
pub user: User,
}
#[doc = "`OrganizationMemberInvitedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"member_invited\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -51781,81 +24800,6 @@ impl ::std::convert::TryFrom<::std::string::String> for OrganizationMemberInvite
}
}
#[doc = "The invitation for the user or email if the action is `member_invited`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The invitation for the user or email if the action is `member_invited`.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"email\","]
-#[doc = " \"failed_at\","]
-#[doc = " \"failed_reason\","]
-#[doc = " \"id\","]
-#[doc = " \"invitation_teams_url\","]
-#[doc = " \"inviter\","]
-#[doc = " \"login\","]
-#[doc = " \"node_id\","]
-#[doc = " \"role\","]
-#[doc = " \"team_count\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"email\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"failed_at\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"failed_reason\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"invitation_teams_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"inviter\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"login\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"role\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"team_count\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct OrganizationMemberInvitedInvitation {
@@ -51872,44 +24816,6 @@ pub struct OrganizationMemberInvitedInvitation {
pub team_count: f64,
}
#[doc = "`OrganizationMemberRemoved`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"organization member_removed event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"membership\","]
-#[doc = " \"organization\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"member_removed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"membership\": {"]
-#[doc = " \"$ref\": \"#/definitions/membership\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct OrganizationMemberRemoved {
@@ -51921,18 +24827,6 @@ pub struct OrganizationMemberRemoved {
pub sender: User,
}
#[doc = "`OrganizationMemberRemovedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"member_removed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -51980,44 +24874,6 @@ impl ::std::convert::TryFrom<::std::string::String> for OrganizationMemberRemove
}
}
#[doc = "`OrganizationRenamed`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"organization renamed event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"membership\","]
-#[doc = " \"organization\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"renamed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"membership\": {"]
-#[doc = " \"$ref\": \"#/definitions/membership\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct OrganizationRenamed {
@@ -52029,18 +24885,6 @@ pub struct OrganizationRenamed {
pub sender: User,
}
#[doc = "`OrganizationRenamedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"renamed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -52088,22 +24932,6 @@ impl ::std::convert::TryFrom<::std::string::String> for OrganizationRenamedActio
}
}
#[doc = "`PackageEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/package$published\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/package$updated\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum PackageEvent {
@@ -52121,333 +24949,6 @@ impl ::std::convert::From for PackageEvent {
}
}
#[doc = "`PackagePublished`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"package published event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"package\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"published\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"package\": {"]
-#[doc = " \"description\": \"Information about the package.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"ecosystem\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"namespace\","]
-#[doc = " \"owner\","]
-#[doc = " \"package_type\","]
-#[doc = " \"package_version\","]
-#[doc = " \"registry\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"ecosystem\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"namespace\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"owner\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"package_type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"package_version\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author\","]
-#[doc = " \"body\","]
-#[doc = " \"body_html\","]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"docker_metadata\","]
-#[doc = " \"draft\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"installation_command\","]
-#[doc = " \"manifest\","]
-#[doc = " \"metadata\","]
-#[doc = " \"name\","]
-#[doc = " \"package_files\","]
-#[doc = " \"prerelease\","]
-#[doc = " \"release\","]
-#[doc = " \"source_url\","]
-#[doc = " \"summary\","]
-#[doc = " \"tag_name\","]
-#[doc = " \"target_commitish\","]
-#[doc = " \"target_oid\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"version\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"body_html\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"docker_metadata\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {}"]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"installation_command\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"manifest\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"metadata\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {}"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"package_files\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"content_type\","]
-#[doc = " \"created_at\","]
-#[doc = " \"download_url\","]
-#[doc = " \"id\","]
-#[doc = " \"md5\","]
-#[doc = " \"name\","]
-#[doc = " \"sha1\","]
-#[doc = " \"sha256\","]
-#[doc = " \"size\","]
-#[doc = " \"state\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"content_type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"download_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"md5\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sha1\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sha256\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"size\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"prerelease\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"release\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author\","]
-#[doc = " \"created_at\","]
-#[doc = " \"draft\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"prerelease\","]
-#[doc = " \"published_at\","]
-#[doc = " \"tag_name\","]
-#[doc = " \"target_commitish\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"prerelease\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"published_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"tag_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"target_commitish\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"source_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"tag_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"target_commitish\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"target_oid\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"version\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"registry\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"about_url\","]
-#[doc = " \"name\","]
-#[doc = " \"type\","]
-#[doc = " \"url\","]
-#[doc = " \"vendor\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"about_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"vendor\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PackagePublished {
@@ -52459,18 +24960,6 @@ pub struct PackagePublished {
pub sender: User,
}
#[doc = "`PackagePublishedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"published\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -52518,304 +25007,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PackagePublishedAction {
}
}
#[doc = "Information about the package."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"Information about the package.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"ecosystem\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"namespace\","]
-#[doc = " \"owner\","]
-#[doc = " \"package_type\","]
-#[doc = " \"package_version\","]
-#[doc = " \"registry\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"ecosystem\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"namespace\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"owner\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"package_type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"package_version\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author\","]
-#[doc = " \"body\","]
-#[doc = " \"body_html\","]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"docker_metadata\","]
-#[doc = " \"draft\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"installation_command\","]
-#[doc = " \"manifest\","]
-#[doc = " \"metadata\","]
-#[doc = " \"name\","]
-#[doc = " \"package_files\","]
-#[doc = " \"prerelease\","]
-#[doc = " \"release\","]
-#[doc = " \"source_url\","]
-#[doc = " \"summary\","]
-#[doc = " \"tag_name\","]
-#[doc = " \"target_commitish\","]
-#[doc = " \"target_oid\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"version\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"body_html\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"docker_metadata\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {}"]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"installation_command\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"manifest\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"metadata\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {}"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"package_files\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"content_type\","]
-#[doc = " \"created_at\","]
-#[doc = " \"download_url\","]
-#[doc = " \"id\","]
-#[doc = " \"md5\","]
-#[doc = " \"name\","]
-#[doc = " \"sha1\","]
-#[doc = " \"sha256\","]
-#[doc = " \"size\","]
-#[doc = " \"state\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"content_type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"download_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"md5\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sha1\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sha256\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"size\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"prerelease\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"release\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author\","]
-#[doc = " \"created_at\","]
-#[doc = " \"draft\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"prerelease\","]
-#[doc = " \"published_at\","]
-#[doc = " \"tag_name\","]
-#[doc = " \"target_commitish\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"prerelease\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"published_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"tag_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"target_commitish\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"source_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"tag_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"target_commitish\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"target_oid\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"version\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"registry\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"about_url\","]
-#[doc = " \"name\","]
-#[doc = " \"type\","]
-#[doc = " \"url\","]
-#[doc = " \"vendor\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"about_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"vendor\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PackagePublishedPackage {
@@ -52833,219 +25024,6 @@ pub struct PackagePublishedPackage {
pub updated_at: ::std::string::String,
}
#[doc = "`PackagePublishedPackagePackageVersion`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author\","]
-#[doc = " \"body\","]
-#[doc = " \"body_html\","]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"docker_metadata\","]
-#[doc = " \"draft\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"installation_command\","]
-#[doc = " \"manifest\","]
-#[doc = " \"metadata\","]
-#[doc = " \"name\","]
-#[doc = " \"package_files\","]
-#[doc = " \"prerelease\","]
-#[doc = " \"release\","]
-#[doc = " \"source_url\","]
-#[doc = " \"summary\","]
-#[doc = " \"tag_name\","]
-#[doc = " \"target_commitish\","]
-#[doc = " \"target_oid\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"version\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"body_html\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"docker_metadata\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {}"]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"installation_command\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"manifest\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"metadata\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {}"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"package_files\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"content_type\","]
-#[doc = " \"created_at\","]
-#[doc = " \"download_url\","]
-#[doc = " \"id\","]
-#[doc = " \"md5\","]
-#[doc = " \"name\","]
-#[doc = " \"sha1\","]
-#[doc = " \"sha256\","]
-#[doc = " \"size\","]
-#[doc = " \"state\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"content_type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"download_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"md5\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sha1\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sha256\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"size\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"prerelease\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"release\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author\","]
-#[doc = " \"created_at\","]
-#[doc = " \"draft\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"prerelease\","]
-#[doc = " \"published_at\","]
-#[doc = " \"tag_name\","]
-#[doc = " \"target_commitish\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"prerelease\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"published_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"tag_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"target_commitish\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"source_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"tag_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"target_commitish\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"target_oid\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"version\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PackagePublishedPackagePackageVersion {
@@ -53074,65 +25052,6 @@ pub struct PackagePublishedPackagePackageVersion {
pub version: ::std::string::String,
}
#[doc = "`PackagePublishedPackagePackageVersionPackageFilesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"content_type\","]
-#[doc = " \"created_at\","]
-#[doc = " \"download_url\","]
-#[doc = " \"id\","]
-#[doc = " \"md5\","]
-#[doc = " \"name\","]
-#[doc = " \"sha1\","]
-#[doc = " \"sha256\","]
-#[doc = " \"size\","]
-#[doc = " \"state\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"content_type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"download_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"md5\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sha1\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sha256\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"size\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PackagePublishedPackagePackageVersionPackageFilesItem {
@@ -53149,66 +25068,6 @@ pub struct PackagePublishedPackagePackageVersionPackageFilesItem {
pub updated_at: ::std::string::String,
}
#[doc = "`PackagePublishedPackagePackageVersionRelease`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author\","]
-#[doc = " \"created_at\","]
-#[doc = " \"draft\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"prerelease\","]
-#[doc = " \"published_at\","]
-#[doc = " \"tag_name\","]
-#[doc = " \"target_commitish\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"prerelease\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"published_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"tag_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"target_commitish\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PackagePublishedPackagePackageVersionRelease {
@@ -53225,42 +25084,6 @@ pub struct PackagePublishedPackagePackageVersionRelease {
pub url: ::std::string::String,
}
#[doc = "`PackagePublishedPackageRegistry`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"about_url\","]
-#[doc = " \"name\","]
-#[doc = " \"type\","]
-#[doc = " \"url\","]
-#[doc = " \"vendor\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"about_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"vendor\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PackagePublishedPackageRegistry {
@@ -53272,334 +25095,6 @@ pub struct PackagePublishedPackageRegistry {
pub vendor: ::std::string::String,
}
#[doc = "`PackageUpdated`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"package updated event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"package\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"updated\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"package\": {"]
-#[doc = " \"description\": \"Information about the package.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"ecosystem\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"namespace\","]
-#[doc = " \"owner\","]
-#[doc = " \"package_type\","]
-#[doc = " \"package_version\","]
-#[doc = " \"registry\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"ecosystem\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"namespace\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"owner\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"package_type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"package_version\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author\","]
-#[doc = " \"body\","]
-#[doc = " \"body_html\","]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"docker_metadata\","]
-#[doc = " \"draft\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"installation_command\","]
-#[doc = " \"manifest\","]
-#[doc = " \"metadata\","]
-#[doc = " \"name\","]
-#[doc = " \"package_files\","]
-#[doc = " \"prerelease\","]
-#[doc = " \"release\","]
-#[doc = " \"source_url\","]
-#[doc = " \"summary\","]
-#[doc = " \"tag_name\","]
-#[doc = " \"target_commitish\","]
-#[doc = " \"target_oid\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"version\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"body_html\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"docker_metadata\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {}"]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"installation_command\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"manifest\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"metadata\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {}"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"package_files\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"content_type\","]
-#[doc = " \"created_at\","]
-#[doc = " \"download_url\","]
-#[doc = " \"id\","]
-#[doc = " \"md5\","]
-#[doc = " \"name\","]
-#[doc = " \"sha1\","]
-#[doc = " \"sha256\","]
-#[doc = " \"size\","]
-#[doc = " \"state\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"content_type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"download_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"md5\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sha1\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sha256\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"size\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"prerelease\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"release\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author\","]
-#[doc = " \"created_at\","]
-#[doc = " \"draft\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"prerelease\","]
-#[doc = " \"published_at\","]
-#[doc = " \"tag_name\","]
-#[doc = " \"target_commitish\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"prerelease\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"published_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"tag_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"target_commitish\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"source_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"tag_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"target_commitish\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"target_oid\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"version\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"registry\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"about_url\","]
-#[doc = " \"name\","]
-#[doc = " \"type\","]
-#[doc = " \"url\","]
-#[doc = " \"vendor\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"about_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"vendor\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PackageUpdated {
@@ -53611,18 +25106,6 @@ pub struct PackageUpdated {
pub sender: User,
}
#[doc = "`PackageUpdatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"updated\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -53670,305 +25153,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PackageUpdatedAction {
}
}
#[doc = "Information about the package."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"Information about the package.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"ecosystem\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"namespace\","]
-#[doc = " \"owner\","]
-#[doc = " \"package_type\","]
-#[doc = " \"package_version\","]
-#[doc = " \"registry\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"ecosystem\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"namespace\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"owner\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"package_type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"package_version\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author\","]
-#[doc = " \"body\","]
-#[doc = " \"body_html\","]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"docker_metadata\","]
-#[doc = " \"draft\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"installation_command\","]
-#[doc = " \"manifest\","]
-#[doc = " \"metadata\","]
-#[doc = " \"name\","]
-#[doc = " \"package_files\","]
-#[doc = " \"prerelease\","]
-#[doc = " \"release\","]
-#[doc = " \"source_url\","]
-#[doc = " \"summary\","]
-#[doc = " \"tag_name\","]
-#[doc = " \"target_commitish\","]
-#[doc = " \"target_oid\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"version\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"body_html\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"docker_metadata\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {}"]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"installation_command\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"manifest\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"metadata\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {}"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"package_files\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"content_type\","]
-#[doc = " \"created_at\","]
-#[doc = " \"download_url\","]
-#[doc = " \"id\","]
-#[doc = " \"md5\","]
-#[doc = " \"name\","]
-#[doc = " \"sha1\","]
-#[doc = " \"sha256\","]
-#[doc = " \"size\","]
-#[doc = " \"state\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"content_type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"download_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"md5\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sha1\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sha256\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"size\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"prerelease\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"release\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author\","]
-#[doc = " \"created_at\","]
-#[doc = " \"draft\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"prerelease\","]
-#[doc = " \"published_at\","]
-#[doc = " \"tag_name\","]
-#[doc = " \"target_commitish\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"prerelease\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"published_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"tag_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"target_commitish\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"source_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"tag_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"target_commitish\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"target_oid\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"version\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"registry\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"about_url\","]
-#[doc = " \"name\","]
-#[doc = " \"type\","]
-#[doc = " \"url\","]
-#[doc = " \"vendor\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"about_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"vendor\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PackageUpdatedPackage {
@@ -53986,220 +25170,6 @@ pub struct PackageUpdatedPackage {
pub updated_at: ::std::string::String,
}
#[doc = "`PackageUpdatedPackagePackageVersion`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author\","]
-#[doc = " \"body\","]
-#[doc = " \"body_html\","]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"docker_metadata\","]
-#[doc = " \"draft\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"installation_command\","]
-#[doc = " \"manifest\","]
-#[doc = " \"metadata\","]
-#[doc = " \"name\","]
-#[doc = " \"package_files\","]
-#[doc = " \"prerelease\","]
-#[doc = " \"release\","]
-#[doc = " \"source_url\","]
-#[doc = " \"summary\","]
-#[doc = " \"tag_name\","]
-#[doc = " \"target_commitish\","]
-#[doc = " \"target_oid\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"version\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"body_html\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"docker_metadata\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {}"]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"installation_command\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"manifest\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"metadata\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {}"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"package_files\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"content_type\","]
-#[doc = " \"created_at\","]
-#[doc = " \"download_url\","]
-#[doc = " \"id\","]
-#[doc = " \"md5\","]
-#[doc = " \"name\","]
-#[doc = " \"sha1\","]
-#[doc = " \"sha256\","]
-#[doc = " \"size\","]
-#[doc = " \"state\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"content_type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"download_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"md5\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sha1\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sha256\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"size\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"prerelease\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"release\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author\","]
-#[doc = " \"created_at\","]
-#[doc = " \"draft\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"prerelease\","]
-#[doc = " \"published_at\","]
-#[doc = " \"tag_name\","]
-#[doc = " \"target_commitish\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"prerelease\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"published_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"tag_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"target_commitish\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"source_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"tag_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"target_commitish\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"target_oid\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"version\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PackageUpdatedPackagePackageVersion {
@@ -54228,65 +25198,6 @@ pub struct PackageUpdatedPackagePackageVersion {
pub version: ::std::string::String,
}
#[doc = "`PackageUpdatedPackagePackageVersionPackageFilesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"content_type\","]
-#[doc = " \"created_at\","]
-#[doc = " \"download_url\","]
-#[doc = " \"id\","]
-#[doc = " \"md5\","]
-#[doc = " \"name\","]
-#[doc = " \"sha1\","]
-#[doc = " \"sha256\","]
-#[doc = " \"size\","]
-#[doc = " \"state\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"content_type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"download_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"md5\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sha1\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sha256\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"size\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PackageUpdatedPackagePackageVersionPackageFilesItem {
@@ -54303,66 +25214,6 @@ pub struct PackageUpdatedPackagePackageVersionPackageFilesItem {
pub updated_at: ::std::string::String,
}
#[doc = "`PackageUpdatedPackagePackageVersionRelease`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author\","]
-#[doc = " \"created_at\","]
-#[doc = " \"draft\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"prerelease\","]
-#[doc = " \"published_at\","]
-#[doc = " \"tag_name\","]
-#[doc = " \"target_commitish\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"prerelease\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"published_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"tag_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"target_commitish\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PackageUpdatedPackagePackageVersionRelease {
@@ -54379,42 +25230,6 @@ pub struct PackageUpdatedPackagePackageVersionRelease {
pub url: ::std::string::String,
}
#[doc = "`PackageUpdatedPackageRegistry`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"about_url\","]
-#[doc = " \"name\","]
-#[doc = " \"type\","]
-#[doc = " \"url\","]
-#[doc = " \"vendor\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"about_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"vendor\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PackageUpdatedPackageRegistry {
@@ -54426,96 +25241,6 @@ pub struct PackageUpdatedPackageRegistry {
pub vendor: ::std::string::String,
}
#[doc = "Page Build"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"page_build event\","]
-#[doc = " \"description\": \"Page Build\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"build\","]
-#[doc = " \"id\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"build\": {"]
-#[doc = " \"description\": \"The [List GitHub Pages builds](https://docs.github.com/en/rest/reference/repos#list-github-pages-builds) itself.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"commit\","]
-#[doc = " \"created_at\","]
-#[doc = " \"duration\","]
-#[doc = " \"error\","]
-#[doc = " \"pusher\","]
-#[doc = " \"status\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"commit\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"duration\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"error\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"message\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"message\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"pusher\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PageBuildEvent {
@@ -54529,66 +25254,6 @@ pub struct PageBuildEvent {
pub sender: User,
}
#[doc = "The [List GitHub Pages builds](https://docs.github.com/en/rest/reference/repos#list-github-pages-builds) itself."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The [List GitHub Pages builds](https://docs.github.com/en/rest/reference/repos#list-github-pages-builds) itself.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"commit\","]
-#[doc = " \"created_at\","]
-#[doc = " \"duration\","]
-#[doc = " \"error\","]
-#[doc = " \"pusher\","]
-#[doc = " \"status\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"commit\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"duration\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"error\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"message\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"message\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"pusher\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PageBuildEventBuild {
@@ -54602,172 +25267,12 @@ pub struct PageBuildEventBuild {
pub url: ::std::string::String,
}
#[doc = "`PageBuildEventBuildError`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"message\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"message\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PageBuildEventBuildError {
pub message: ::std::option::Option<::std::string::String>,
}
#[doc = "`PingEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"ping event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"hook\","]
-#[doc = " \"hook_id\","]
-#[doc = " \"zen\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"hook\": {"]
-#[doc = " \"description\": \"The [webhook configuration](https://docs.github.com/en/rest/reference/repos#get-a-repository-webhook).\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"active\","]
-#[doc = " \"config\","]
-#[doc = " \"created_at\","]
-#[doc = " \"events\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"ping_url\","]
-#[doc = " \"type\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"active\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"app_id\": {"]
-#[doc = " \"description\": \"When you register a new GitHub App, GitHub sends a ping event to the **webhook URL** you specified during registration. The event contains the `app_id`, which is required for [authenticating](https://docs.github.com/en/apps/building-integrations/setting-up-and-registering-github-apps/about-authentication-options-for-github-apps) an app.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"config\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"content_type\","]
-#[doc = " \"insecure_ssl\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"content_type\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"json\","]
-#[doc = " \"form\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"insecure_ssl\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"secret\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"events\": {"]
-#[doc = " \"$ref\": \"#/definitions/webhook-events\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"last_response\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"code\","]
-#[doc = " \"message\","]
-#[doc = " \"status\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"code\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"message\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ping_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"test_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"hook_id\": {"]
-#[doc = " \"description\": \"The ID of the webhook that triggered the ping.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"zen\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PingEvent {
@@ -54783,116 +25288,6 @@ pub struct PingEvent {
pub zen: ::std::string::String,
}
#[doc = "The [webhook configuration](https://docs.github.com/en/rest/reference/repos#get-a-repository-webhook)."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The [webhook configuration](https://docs.github.com/en/rest/reference/repos#get-a-repository-webhook).\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"active\","]
-#[doc = " \"config\","]
-#[doc = " \"created_at\","]
-#[doc = " \"events\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"ping_url\","]
-#[doc = " \"type\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"active\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"app_id\": {"]
-#[doc = " \"description\": \"When you register a new GitHub App, GitHub sends a ping event to the **webhook URL** you specified during registration. The event contains the `app_id`, which is required for [authenticating](https://docs.github.com/en/apps/building-integrations/setting-up-and-registering-github-apps/about-authentication-options-for-github-apps) an app.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"config\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"content_type\","]
-#[doc = " \"insecure_ssl\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"content_type\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"json\","]
-#[doc = " \"form\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"insecure_ssl\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"secret\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"events\": {"]
-#[doc = " \"$ref\": \"#/definitions/webhook-events\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"last_response\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"code\","]
-#[doc = " \"message\","]
-#[doc = " \"status\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"code\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"message\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ping_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"test_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PingEventHook {
@@ -54916,40 +25311,6 @@ pub struct PingEventHook {
pub url: ::std::string::String,
}
#[doc = "`PingEventHookConfig`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"content_type\","]
-#[doc = " \"insecure_ssl\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"content_type\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"json\","]
-#[doc = " \"form\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"insecure_ssl\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"secret\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PingEventHookConfig {
@@ -54960,19 +25321,6 @@ pub struct PingEventHookConfig {
pub url: ::std::string::String,
}
#[doc = "`PingEventHookConfigContentType`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"json\","]
-#[doc = " \"form\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -55024,32 +25372,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PingEventHookConfigConte
}
}
#[doc = "`PingEventHookLastResponse`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"code\","]
-#[doc = " \"message\","]
-#[doc = " \"status\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"code\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"message\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PingEventHookLastResponse {
@@ -55058,90 +25380,6 @@ pub struct PingEventHookLastResponse {
pub status: ::std::string::String,
}
#[doc = "`Project`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Project\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"body\","]
-#[doc = " \"columns_url\","]
-#[doc = " \"created_at\","]
-#[doc = " \"creator\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"number\","]
-#[doc = " \"owner_url\","]
-#[doc = " \"state\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"body\": {"]
-#[doc = " \"description\": \"Body of the project\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"columns_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"creator\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"Name of the project\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"owner_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of the project; either 'open' or 'closed'\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct Project {
@@ -55163,83 +25401,6 @@ pub struct Project {
pub url: ::std::string::String,
}
#[doc = "`ProjectCard`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Project Card\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"archived\","]
-#[doc = " \"column_id\","]
-#[doc = " \"column_url\","]
-#[doc = " \"created_at\","]
-#[doc = " \"creator\","]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"note\","]
-#[doc = " \"project_url\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"after_id\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"archived\": {"]
-#[doc = " \"description\": \"Whether or not the card is archived\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"column_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"column_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"content_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"creator\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The project card's ID\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"note\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"project_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectCard {
@@ -55262,69 +25423,6 @@ pub struct ProjectCard {
pub url: ::std::string::String,
}
#[doc = "`ProjectCardConverted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"project_card converted event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"project_card\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"converted\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"note\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"note\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"project_card\": {"]
-#[doc = " \"$ref\": \"#/definitions/project-card\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectCardConverted {
@@ -55339,18 +25437,6 @@ pub struct ProjectCardConverted {
pub sender: User,
}
#[doc = "`ProjectCardConvertedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"converted\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -55398,104 +25484,18 @@ impl ::std::convert::TryFrom<::std::string::String> for ProjectCardConvertedActi
}
}
#[doc = "`ProjectCardConvertedChanges`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"note\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"note\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectCardConvertedChanges {
pub note: ProjectCardConvertedChangesNote,
}
#[doc = "`ProjectCardConvertedChangesNote`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectCardConvertedChangesNote {
pub from: ::std::string::String,
}
#[doc = "`ProjectCardCreated`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"project_card created event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"project_card\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"project_card\": {"]
-#[doc = " \"$ref\": \"#/definitions/project-card\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectCardCreated {
@@ -55509,18 +25509,6 @@ pub struct ProjectCardCreated {
pub sender: User,
}
#[doc = "`ProjectCardCreatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -55568,47 +25556,6 @@ impl ::std::convert::TryFrom<::std::string::String> for ProjectCardCreatedAction
}
}
#[doc = "`ProjectCardDeleted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"project_card deleted event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"project_card\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"project_card\": {"]
-#[doc = " \"$ref\": \"#/definitions/project-card\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectCardDeleted {
@@ -55622,18 +25569,6 @@ pub struct ProjectCardDeleted {
pub sender: User,
}
#[doc = "`ProjectCardDeletedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -55681,69 +25616,6 @@ impl ::std::convert::TryFrom<::std::string::String> for ProjectCardDeletedAction
}
}
#[doc = "`ProjectCardEdited`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"project_card edited event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"project_card\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"note\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"note\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"project_card\": {"]
-#[doc = " \"$ref\": \"#/definitions/project-card\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectCardEdited {
@@ -55758,18 +25630,6 @@ pub struct ProjectCardEdited {
pub sender: User,
}
#[doc = "`ProjectCardEditedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -55817,88 +25677,18 @@ impl ::std::convert::TryFrom<::std::string::String> for ProjectCardEditedAction
}
}
#[doc = "`ProjectCardEditedChanges`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"note\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"note\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectCardEditedChanges {
pub note: ProjectCardEditedChangesNote,
}
#[doc = "`ProjectCardEditedChangesNote`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectCardEditedChangesNote {
pub from: ::std::string::String,
}
#[doc = "`ProjectCardEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/project_card$converted\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/project_card$created\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/project_card$deleted\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/project_card$edited\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/project_card$moved\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum ProjectCardEvent {
@@ -55934,88 +25724,6 @@ impl ::std::convert::From for ProjectCardEvent {
}
}
#[doc = "`ProjectCardMoved`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"project_card moved event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"project_card\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"moved\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"column_id\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"column_id\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"project_card\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/project-card\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"after_id\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"after_id\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"number\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectCardMoved {
@@ -56030,18 +25738,6 @@ pub struct ProjectCardMoved {
pub sender: User,
}
#[doc = "`ProjectCardMovedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"moved\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -56089,91 +25785,18 @@ impl ::std::convert::TryFrom<::std::string::String> for ProjectCardMovedAction {
}
}
#[doc = "`ProjectCardMovedChanges`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"column_id\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"column_id\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectCardMovedChanges {
pub column_id: ProjectCardMovedChangesColumnId,
}
#[doc = "`ProjectCardMovedChangesColumnId`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectCardMovedChangesColumnId {
pub from: i64,
}
#[doc = "`ProjectCardMovedProjectCard`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/project-card\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"after_id\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"after_id\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"number\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectCardMovedProjectCard {
@@ -56195,47 +25818,6 @@ pub struct ProjectCardMovedProjectCard {
pub url: ::std::string::String,
}
#[doc = "`ProjectClosed`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"project closed event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"project\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"project\": {"]
-#[doc = " \"$ref\": \"#/definitions/project\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectClosed {
@@ -56249,18 +25831,6 @@ pub struct ProjectClosed {
pub sender: User,
}
#[doc = "`ProjectClosedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -56308,61 +25878,6 @@ impl ::std::convert::TryFrom<::std::string::String> for ProjectClosedAction {
}
}
#[doc = "`ProjectColumn`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Project Column\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"cards_url\","]
-#[doc = " \"created_at\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"project_url\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"cards_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The unique identifier of the project column\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"Name of the project column\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"project_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectColumn {
@@ -56378,47 +25893,6 @@ pub struct ProjectColumn {
pub url: ::std::string::String,
}
#[doc = "`ProjectColumnCreated`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"project_column created event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"project_column\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"project_column\": {"]
-#[doc = " \"$ref\": \"#/definitions/project-column\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectColumnCreated {
@@ -56432,18 +25906,6 @@ pub struct ProjectColumnCreated {
pub sender: User,
}
#[doc = "`ProjectColumnCreatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -56491,47 +25953,6 @@ impl ::std::convert::TryFrom<::std::string::String> for ProjectColumnCreatedActi
}
}
#[doc = "`ProjectColumnDeleted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"project_column deleted event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"project_column\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"project_column\": {"]
-#[doc = " \"$ref\": \"#/definitions/project-column\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectColumnDeleted {
@@ -56545,18 +25966,6 @@ pub struct ProjectColumnDeleted {
pub sender: User,
}
#[doc = "`ProjectColumnDeletedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -56604,66 +26013,6 @@ impl ::std::convert::TryFrom<::std::string::String> for ProjectColumnDeletedActi
}
}
#[doc = "`ProjectColumnEdited`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"project_column edited event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"project_column\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"project_column\": {"]
-#[doc = " \"$ref\": \"#/definitions/project-column\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectColumnEdited {
@@ -56678,18 +26027,6 @@ pub struct ProjectColumnEdited {
pub sender: User,
}
#[doc = "`ProjectColumnEditedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -56737,30 +26074,6 @@ impl ::std::convert::TryFrom<::std::string::String> for ProjectColumnEditedActio
}
}
#[doc = "`ProjectColumnEditedChanges`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct ProjectColumnEditedChanges {
@@ -56768,52 +26081,12 @@ pub struct ProjectColumnEditedChanges {
pub name: ::std::option::Option,
}
#[doc = "`ProjectColumnEditedChangesName`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectColumnEditedChangesName {
pub from: ::std::string::String,
}
#[doc = "`ProjectColumnEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/project_column$created\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/project_column$deleted\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/project_column$edited\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/project_column$moved\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum ProjectColumnEvent {
@@ -56843,47 +26116,6 @@ impl ::std::convert::From for ProjectColumnEvent {
}
}
#[doc = "`ProjectColumnMoved`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"project_column moved event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"project_column\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"moved\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"project_column\": {"]
-#[doc = " \"$ref\": \"#/definitions/project-column\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectColumnMoved {
@@ -56897,18 +26129,6 @@ pub struct ProjectColumnMoved {
pub sender: User,
}
#[doc = "`ProjectColumnMovedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"moved\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -56956,47 +26176,6 @@ impl ::std::convert::TryFrom<::std::string::String> for ProjectColumnMovedAction
}
}
#[doc = "`ProjectCreated`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"project created event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"project\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"project\": {"]
-#[doc = " \"$ref\": \"#/definitions/project\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectCreated {
@@ -57010,18 +26189,6 @@ pub struct ProjectCreated {
pub sender: User,
}
#[doc = "`ProjectCreatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -57069,47 +26236,6 @@ impl ::std::convert::TryFrom<::std::string::String> for ProjectCreatedAction {
}
}
#[doc = "`ProjectDeleted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"project deleted event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"project\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"project\": {"]
-#[doc = " \"$ref\": \"#/definitions/project\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectDeleted {
@@ -57123,18 +26249,6 @@ pub struct ProjectDeleted {
pub sender: User,
}
#[doc = "`ProjectDeletedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -57182,81 +26296,6 @@ impl ::std::convert::TryFrom<::std::string::String> for ProjectDeletedAction {
}
}
#[doc = "`ProjectEdited`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"project edited event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"project\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"description\": \"The changes to the project if the action was `edited`.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the body if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The changes to the project if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"project\": {"]
-#[doc = " \"$ref\": \"#/definitions/project\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectEdited {
@@ -57271,18 +26310,6 @@ pub struct ProjectEdited {
pub sender: User,
}
#[doc = "`ProjectEditedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -57330,45 +26357,6 @@ impl ::std::convert::TryFrom<::std::string::String> for ProjectEditedAction {
}
}
#[doc = "The changes to the project if the action was `edited`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The changes to the project if the action was `edited`.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the body if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The changes to the project if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct ProjectEditedChanges {
@@ -57378,25 +26366,6 @@ pub struct ProjectEditedChanges {
pub name: ::std::option::Option,
}
#[doc = "`ProjectEditedChangesBody`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the body if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectEditedChangesBody {
@@ -57404,25 +26373,6 @@ pub struct ProjectEditedChangesBody {
pub from: ::std::string::String,
}
#[doc = "`ProjectEditedChangesName`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The changes to the project if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectEditedChangesName {
@@ -57430,31 +26380,6 @@ pub struct ProjectEditedChangesName {
pub from: ::std::string::String,
}
#[doc = "`ProjectEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/project$closed\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/project$created\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/project$deleted\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/project$edited\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/project$reopened\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum ProjectEvent {
@@ -57490,47 +26415,6 @@ impl ::std::convert::From for ProjectEvent {
}
}
#[doc = "`ProjectReopened`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"project reopened event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"project\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"reopened\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"project\": {"]
-#[doc = " \"$ref\": \"#/definitions/project\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ProjectReopened {
@@ -57544,18 +26428,6 @@ pub struct ProjectReopened {
pub sender: User,
}
#[doc = "`ProjectReopenedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"reopened\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -57603,20 +26475,6 @@ impl ::std::convert::TryFrom<::std::string::String> for ProjectReopenedAction {
}
}
#[doc = "State of the project; either 'open' or 'closed'"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"State of the project; either 'open' or 'closed'\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -57668,56 +26526,6 @@ impl ::std::convert::TryFrom<::std::string::String> for ProjectState {
}
}
#[doc = "When a private repository is made public."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"public event\","]
-#[doc = " \"description\": \"When a private repository is made public.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"private\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"private\": {"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " false"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PublicEvent {
@@ -57729,34 +26537,6 @@ pub struct PublicEvent {
pub sender: User,
}
#[doc = "`PublicEventRepository`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"private\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"private\": {"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " false"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PublicEventRepository {
@@ -57873,23 +26653,6 @@ pub struct PublicEventRepository {
pub watchers_count: i64,
}
#[doc = "`PublicEventRepositoryCreatedAt`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum PublicEventRepositoryCreatedAt {
@@ -57943,38 +26706,6 @@ impl ::std::convert::From<::chrono::DateTime<::chrono::offset::Utc>>
}
}
#[doc = "`PublicEventRepositoryPermissions`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"admin\","]
-#[doc = " \"pull\","]
-#[doc = " \"push\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"admin\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"maintain\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"pull\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"push\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"triage\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PublicEventRepositoryPermissions {
@@ -57987,26 +26718,6 @@ pub struct PublicEventRepositoryPermissions {
pub triage: ::std::option::Option,
}
#[doc = "`PublicEventRepositoryPushedAt`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum PublicEventRepositoryPushedAt {
@@ -58027,395 +26738,6 @@ impl ::std::convert::From<::chrono::DateTime<::chrono::offset::Utc>>
}
}
#[doc = "`PullRequest`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Pull Request\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"_links\","]
-#[doc = " \"active_lock_reason\","]
-#[doc = " \"additions\","]
-#[doc = " \"assignee\","]
-#[doc = " \"assignees\","]
-#[doc = " \"author_association\","]
-#[doc = " \"auto_merge\","]
-#[doc = " \"base\","]
-#[doc = " \"body\","]
-#[doc = " \"changed_files\","]
-#[doc = " \"closed_at\","]
-#[doc = " \"comments\","]
-#[doc = " \"comments_url\","]
-#[doc = " \"commits\","]
-#[doc = " \"commits_url\","]
-#[doc = " \"created_at\","]
-#[doc = " \"deletions\","]
-#[doc = " \"diff_url\","]
-#[doc = " \"draft\","]
-#[doc = " \"head\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"issue_url\","]
-#[doc = " \"labels\","]
-#[doc = " \"locked\","]
-#[doc = " \"maintainer_can_modify\","]
-#[doc = " \"merge_commit_sha\","]
-#[doc = " \"mergeable\","]
-#[doc = " \"mergeable_state\","]
-#[doc = " \"merged\","]
-#[doc = " \"merged_at\","]
-#[doc = " \"merged_by\","]
-#[doc = " \"milestone\","]
-#[doc = " \"node_id\","]
-#[doc = " \"number\","]
-#[doc = " \"patch_url\","]
-#[doc = " \"rebaseable\","]
-#[doc = " \"requested_reviewers\","]
-#[doc = " \"requested_teams\","]
-#[doc = " \"review_comment_url\","]
-#[doc = " \"review_comments\","]
-#[doc = " \"review_comments_url\","]
-#[doc = " \"state\","]
-#[doc = " \"statuses_url\","]
-#[doc = " \"title\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"_links\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"comments\","]
-#[doc = " \"commits\","]
-#[doc = " \"html\","]
-#[doc = " \"issue\","]
-#[doc = " \"review_comment\","]
-#[doc = " \"review_comments\","]
-#[doc = " \"self\","]
-#[doc = " \"statuses\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"commits\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comment\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"self\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"statuses\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"active_lock_reason\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"additions\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"assignee\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"assignees\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"auto_merge\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"base\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changed_files\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"comments\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"comments_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"commits\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"commits_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"deletions\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"description\": \"Indicates whether or not the pull request is a draft.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"head\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"issue_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"labels\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"maintainer_can_modify\": {"]
-#[doc = " \"description\": \"Indicates whether maintainers can modify the pull request.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"merge_commit_sha\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"mergeable\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"boolean\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"mergeable_state\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"merged\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"boolean\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"merged_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"merged_by\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"milestone\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/milestone\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"Number uniquely identifying the pull request within its repository.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"rebaseable\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"boolean\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"requested_reviewers\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"requested_teams\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"review_comment_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"review_comments\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"review_comments_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of this Pull Request. Either `open` or `closed`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"statuses_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"description\": \"The title of the pull request.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequest {
@@ -58475,21 +26797,6 @@ pub struct PullRequest {
pub user: User,
}
#[doc = "`PullRequestActiveLockReason`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -58549,56 +26856,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestActiveLockRea
}
}
#[doc = "`PullRequestAssigned`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"pull_request assigned event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"assignee\","]
-#[doc = " \"number\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"assigned\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"assignee\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The pull request number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestAssigned {
@@ -58615,18 +26872,6 @@ pub struct PullRequestAssigned {
pub sender: User,
}
#[doc = "`PullRequestAssignedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"assigned\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -58674,51 +26919,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestAssignedActio
}
}
#[doc = "`PullRequestAutoMergeDisabled`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"pull_request auto_merge_disabled event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"number\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"auto_merge_disabled\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestAutoMergeDisabled {
@@ -58733,18 +26933,6 @@ pub struct PullRequestAutoMergeDisabled {
pub sender: User,
}
#[doc = "`PullRequestAutoMergeDisabledAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"auto_merge_disabled\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -58792,51 +26980,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestAutoMergeDisa
}
}
#[doc = "`PullRequestAutoMergeEnabled`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"pull_request auto_merge_enabled event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"number\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"auto_merge_enabled\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestAutoMergeEnabled {
@@ -58851,18 +26994,6 @@ pub struct PullRequestAutoMergeEnabled {
pub sender: User,
}
#[doc = "`PullRequestAutoMergeEnabledAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"auto_merge_enabled\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -58910,40 +27041,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestAutoMergeEnab
}
}
#[doc = "`PullRequestBase`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestBase {
@@ -58955,81 +27052,6 @@ pub struct PullRequestBase {
pub user: User,
}
#[doc = "`PullRequestClosed`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"pull_request closed event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"number\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The pull request number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"closed_at\","]
-#[doc = " \"merged\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"merged\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of this Pull Request. Either `open` or `closed`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestClosed {
@@ -59045,18 +27067,6 @@ pub struct PullRequestClosed {
pub sender: User,
}
#[doc = "`PullRequestClosedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -59104,44 +27114,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestClosedAction
}
}
#[doc = "`PullRequestClosedPullRequest`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"closed_at\","]
-#[doc = " \"merged\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"merged\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of this Pull Request. Either `open` or `closed`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestClosedPullRequest {
@@ -59200,21 +27172,6 @@ pub struct PullRequestClosedPullRequest {
pub user: User,
}
#[doc = "`PullRequestClosedPullRequestActiveLockReason`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -59276,40 +27233,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`PullRequestClosedPullRequestBase`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestClosedPullRequestBase {
@@ -59321,40 +27244,6 @@ pub struct PullRequestClosedPullRequestBase {
pub user: User,
}
#[doc = "`PullRequestClosedPullRequestHead`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestClosedPullRequestHead {
@@ -59366,52 +27255,6 @@ pub struct PullRequestClosedPullRequestHead {
pub user: User,
}
#[doc = "`PullRequestClosedPullRequestLinks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"comments\","]
-#[doc = " \"commits\","]
-#[doc = " \"html\","]
-#[doc = " \"issue\","]
-#[doc = " \"review_comment\","]
-#[doc = " \"review_comments\","]
-#[doc = " \"self\","]
-#[doc = " \"statuses\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"commits\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comment\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"self\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"statuses\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestClosedPullRequestLinks {
@@ -59426,22 +27269,6 @@ pub struct PullRequestClosedPullRequestLinks {
pub statuses: Link,
}
#[doc = "`PullRequestClosedPullRequestRequestedReviewersItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum PullRequestClosedPullRequestRequestedReviewersItem {
@@ -59459,18 +27286,6 @@ impl ::std::convert::From for PullRequestClosedPullRequestRequestedReviewe
}
}
#[doc = "`PullRequestClosedPullRequestState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -59518,91 +27333,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestClosedPullReq
}
}
#[doc = "`PullRequestConvertedToDraft`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"pull_request converted_to_draft event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"number\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"converted_to_draft\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The pull request number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"closed_at\","]
-#[doc = " \"draft\","]
-#[doc = " \"merged\","]
-#[doc = " \"merged_at\","]
-#[doc = " \"merged_by\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"description\": \"Indicates whether or not the pull request is a draft.\","]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " true"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"merged\": {"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " false"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"merged_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"merged_by\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestConvertedToDraft {
@@ -59618,18 +27348,6 @@ pub struct PullRequestConvertedToDraft {
pub sender: User,
}
#[doc = "`PullRequestConvertedToDraftAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"converted_to_draft\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -59677,54 +27395,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestConvertedToDr
}
}
#[doc = "`PullRequestConvertedToDraftPullRequest`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"closed_at\","]
-#[doc = " \"draft\","]
-#[doc = " \"merged\","]
-#[doc = " \"merged_at\","]
-#[doc = " \"merged_by\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"description\": \"Indicates whether or not the pull request is a draft.\","]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " true"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"merged\": {"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " false"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"merged_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"merged_by\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestConvertedToDraftPullRequest {
@@ -59785,21 +27455,6 @@ pub struct PullRequestConvertedToDraftPullRequest {
pub user: User,
}
#[doc = "`PullRequestConvertedToDraftPullRequestActiveLockReason`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -59861,40 +27516,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`PullRequestConvertedToDraftPullRequestBase`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestConvertedToDraftPullRequestBase {
@@ -59906,40 +27527,6 @@ pub struct PullRequestConvertedToDraftPullRequestBase {
pub user: User,
}
#[doc = "`PullRequestConvertedToDraftPullRequestHead`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestConvertedToDraftPullRequestHead {
@@ -59951,52 +27538,6 @@ pub struct PullRequestConvertedToDraftPullRequestHead {
pub user: User,
}
#[doc = "`PullRequestConvertedToDraftPullRequestLinks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"comments\","]
-#[doc = " \"commits\","]
-#[doc = " \"html\","]
-#[doc = " \"issue\","]
-#[doc = " \"review_comment\","]
-#[doc = " \"review_comments\","]
-#[doc = " \"self\","]
-#[doc = " \"statuses\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"commits\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comment\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"self\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"statuses\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestConvertedToDraftPullRequestLinks {
@@ -60011,22 +27552,6 @@ pub struct PullRequestConvertedToDraftPullRequestLinks {
pub statuses: Link,
}
#[doc = "`PullRequestConvertedToDraftPullRequestRequestedReviewersItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum PullRequestConvertedToDraftPullRequestRequestedReviewersItem {
@@ -60044,20 +27569,6 @@ impl ::std::convert::From for PullRequestConvertedToDraftPullRequestReques
}
}
#[doc = "State of this Pull Request. Either `open` or `closed`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"State of this Pull Request. Either `open` or `closed`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -60111,86 +27622,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`PullRequestEdited`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"pull_request edited event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"number\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"description\": \"The changes to the comment if the action was `edited`.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the body if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the title if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The pull request number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestEdited {
@@ -60207,18 +27638,6 @@ pub struct PullRequestEdited {
pub sender: User,
}
#[doc = "`PullRequestEditedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -60266,45 +27685,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestEditedAction
}
}
#[doc = "The changes to the comment if the action was `edited`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The changes to the comment if the action was `edited`.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the body if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the title if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct PullRequestEditedChanges {
@@ -60314,25 +27694,6 @@ pub struct PullRequestEditedChanges {
pub title: ::std::option::Option,
}
#[doc = "`PullRequestEditedChangesBody`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the body if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestEditedChangesBody {
@@ -60340,25 +27701,6 @@ pub struct PullRequestEditedChangesBody {
pub from: ::std::string::String,
}
#[doc = "`PullRequestEditedChangesTitle`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the title if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestEditedChangesTitle {
@@ -60366,67 +27708,6 @@ pub struct PullRequestEditedChangesTitle {
pub from: ::std::string::String,
}
#[doc = "`PullRequestEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request$assigned\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request$auto_merge_disabled\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request$auto_merge_enabled\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request$closed\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request$converted_to_draft\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request$edited\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request$labeled\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request$locked\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request$opened\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request$ready_for_review\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request$reopened\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request$review_request_removed\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request$review_requested\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request$synchronize\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request$unassigned\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request$unlabeled\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request$unlocked\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum PullRequestEvent {
@@ -60534,40 +27815,6 @@ impl ::std::convert::From for PullRequestEvent {
}
}
#[doc = "`PullRequestHead`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestHead {
@@ -60579,56 +27826,6 @@ pub struct PullRequestHead {
pub user: User,
}
#[doc = "`PullRequestLabeled`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"pull_request labeled event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"label\","]
-#[doc = " \"number\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"labeled\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"label\": {"]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The pull request number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestLabeled {
@@ -60645,18 +27842,6 @@ pub struct PullRequestLabeled {
pub sender: User,
}
#[doc = "`PullRequestLabeledAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"labeled\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -60704,52 +27889,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestLabeledAction
}
}
#[doc = "`PullRequestLinks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"comments\","]
-#[doc = " \"commits\","]
-#[doc = " \"html\","]
-#[doc = " \"issue\","]
-#[doc = " \"review_comment\","]
-#[doc = " \"review_comments\","]
-#[doc = " \"self\","]
-#[doc = " \"statuses\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"commits\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comment\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"self\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"statuses\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestLinks {
@@ -60764,52 +27903,6 @@ pub struct PullRequestLinks {
pub statuses: Link,
}
#[doc = "`PullRequestLocked`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"pull_request locked event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"number\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"locked\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The pull request number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestLocked {
@@ -60825,18 +27918,6 @@ pub struct PullRequestLocked {
pub sender: User,
}
#[doc = "`PullRequestLockedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"locked\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -60884,91 +27965,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestLockedAction
}
}
#[doc = "`PullRequestOpened`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"pull_request opened event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"number\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"opened\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The pull request number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"active_lock_reason\","]
-#[doc = " \"closed_at\","]
-#[doc = " \"merge_commit_sha\","]
-#[doc = " \"merged_at\","]
-#[doc = " \"merged_by\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"active_lock_reason\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"merge_commit_sha\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"merged_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"merged_by\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestOpened {
@@ -60984,18 +27980,6 @@ pub struct PullRequestOpened {
pub sender: User,
}
#[doc = "`PullRequestOpenedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"opened\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -61043,54 +28027,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestOpenedAction
}
}
#[doc = "`PullRequestOpenedPullRequest`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"active_lock_reason\","]
-#[doc = " \"closed_at\","]
-#[doc = " \"merge_commit_sha\","]
-#[doc = " \"merged_at\","]
-#[doc = " \"merged_by\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"active_lock_reason\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"merge_commit_sha\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"merged_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"merged_by\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestOpenedPullRequest {
@@ -61149,18 +28085,6 @@ pub struct PullRequestOpenedPullRequest {
pub user: User,
}
#[doc = "`PullRequestOpenedPullRequestActiveLockReason`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"null\","]
-#[doc = " \"enum\": ["]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Serialize, Clone, Debug)]
#[serde(transparent)]
pub struct PullRequestOpenedPullRequestActiveLockReason(());
@@ -61195,40 +28119,6 @@ impl<'de> ::serde::Deserialize<'de> for PullRequestOpenedPullRequestActiveLockRe
}
}
#[doc = "`PullRequestOpenedPullRequestBase`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestOpenedPullRequestBase {
@@ -61240,40 +28130,6 @@ pub struct PullRequestOpenedPullRequestBase {
pub user: User,
}
#[doc = "`PullRequestOpenedPullRequestHead`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestOpenedPullRequestHead {
@@ -61285,52 +28141,6 @@ pub struct PullRequestOpenedPullRequestHead {
pub user: User,
}
#[doc = "`PullRequestOpenedPullRequestLinks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"comments\","]
-#[doc = " \"commits\","]
-#[doc = " \"html\","]
-#[doc = " \"issue\","]
-#[doc = " \"review_comment\","]
-#[doc = " \"review_comments\","]
-#[doc = " \"self\","]
-#[doc = " \"statuses\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"commits\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comment\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"self\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"statuses\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestOpenedPullRequestLinks {
@@ -61345,22 +28155,6 @@ pub struct PullRequestOpenedPullRequestLinks {
pub statuses: Link,
}
#[doc = "`PullRequestOpenedPullRequestRequestedReviewersItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum PullRequestOpenedPullRequestRequestedReviewersItem {
@@ -61378,18 +28172,6 @@ impl ::std::convert::From for PullRequestOpenedPullRequestRequestedReviewe
}
}
#[doc = "`PullRequestOpenedPullRequestState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -61437,95 +28219,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestOpenedPullReq
}
}
#[doc = "`PullRequestReadyForReview`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"pull_request ready_for_review event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"number\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"ready_for_review\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The pull request number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"closed_at\","]
-#[doc = " \"draft\","]
-#[doc = " \"merged\","]
-#[doc = " \"merged_at\","]
-#[doc = " \"merged_by\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"description\": \"Indicates whether or not the pull request is a draft.\","]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " false"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"merged\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"merged_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"merged_by\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReadyForReview {
@@ -61541,18 +28234,6 @@ pub struct PullRequestReadyForReview {
pub sender: User,
}
#[doc = "`PullRequestReadyForReviewAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"ready_for_review\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -61600,58 +28281,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestReadyForRevie
}
}
#[doc = "`PullRequestReadyForReviewPullRequest`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"closed_at\","]
-#[doc = " \"draft\","]
-#[doc = " \"merged\","]
-#[doc = " \"merged_at\","]
-#[doc = " \"merged_by\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"description\": \"Indicates whether or not the pull request is a draft.\","]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " false"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"merged\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"merged_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"merged_by\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReadyForReviewPullRequest {
@@ -61711,21 +28340,6 @@ pub struct PullRequestReadyForReviewPullRequest {
pub user: User,
}
#[doc = "`PullRequestReadyForReviewPullRequestActiveLockReason`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -61787,40 +28401,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`PullRequestReadyForReviewPullRequestBase`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReadyForReviewPullRequestBase {
@@ -61832,40 +28412,6 @@ pub struct PullRequestReadyForReviewPullRequestBase {
pub user: User,
}
#[doc = "`PullRequestReadyForReviewPullRequestHead`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReadyForReviewPullRequestHead {
@@ -61877,52 +28423,6 @@ pub struct PullRequestReadyForReviewPullRequestHead {
pub user: User,
}
#[doc = "`PullRequestReadyForReviewPullRequestLinks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"comments\","]
-#[doc = " \"commits\","]
-#[doc = " \"html\","]
-#[doc = " \"issue\","]
-#[doc = " \"review_comment\","]
-#[doc = " \"review_comments\","]
-#[doc = " \"self\","]
-#[doc = " \"statuses\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"commits\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comment\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"self\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"statuses\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReadyForReviewPullRequestLinks {
@@ -61937,22 +28437,6 @@ pub struct PullRequestReadyForReviewPullRequestLinks {
pub statuses: Link,
}
#[doc = "`PullRequestReadyForReviewPullRequestRequestedReviewersItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum PullRequestReadyForReviewPullRequestRequestedReviewersItem {
@@ -61970,18 +28454,6 @@ impl ::std::convert::From for PullRequestReadyForReviewPullRequestRequeste
}
}
#[doc = "`PullRequestReadyForReviewPullRequestState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -62029,91 +28501,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestReadyForRevie
}
}
#[doc = "`PullRequestReopened`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"pull_request reopened event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"number\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"reopened\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The pull request number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"closed_at\","]
-#[doc = " \"merge_commit_sha\","]
-#[doc = " \"merged\","]
-#[doc = " \"merged_at\","]
-#[doc = " \"merged_by\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"merge_commit_sha\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"merged\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"merged_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"merged_by\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReopened {
@@ -62129,18 +28516,6 @@ pub struct PullRequestReopened {
pub sender: User,
}
#[doc = "`PullRequestReopenedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"reopened\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -62188,54 +28563,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestReopenedActio
}
}
#[doc = "`PullRequestReopenedPullRequest`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"closed_at\","]
-#[doc = " \"merge_commit_sha\","]
-#[doc = " \"merged\","]
-#[doc = " \"merged_at\","]
-#[doc = " \"merged_by\","]
-#[doc = " \"state\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"merge_commit_sha\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"merged\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"merged_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"merged_by\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReopenedPullRequest {
@@ -62294,21 +28621,6 @@ pub struct PullRequestReopenedPullRequest {
pub user: User,
}
#[doc = "`PullRequestReopenedPullRequestActiveLockReason`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -62370,40 +28682,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`PullRequestReopenedPullRequestBase`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReopenedPullRequestBase {
@@ -62415,40 +28693,6 @@ pub struct PullRequestReopenedPullRequestBase {
pub user: User,
}
#[doc = "`PullRequestReopenedPullRequestHead`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReopenedPullRequestHead {
@@ -62460,52 +28704,6 @@ pub struct PullRequestReopenedPullRequestHead {
pub user: User,
}
#[doc = "`PullRequestReopenedPullRequestLinks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"comments\","]
-#[doc = " \"commits\","]
-#[doc = " \"html\","]
-#[doc = " \"issue\","]
-#[doc = " \"review_comment\","]
-#[doc = " \"review_comments\","]
-#[doc = " \"self\","]
-#[doc = " \"statuses\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"commits\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comment\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"self\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"statuses\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReopenedPullRequestLinks {
@@ -62520,22 +28718,6 @@ pub struct PullRequestReopenedPullRequestLinks {
pub statuses: Link,
}
#[doc = "`PullRequestReopenedPullRequestRequestedReviewersItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum PullRequestReopenedPullRequestRequestedReviewersItem {
@@ -62553,18 +28735,6 @@ impl ::std::convert::From for PullRequestReopenedPullRequestRequestedRevie
}
}
#[doc = "`PullRequestReopenedPullRequestState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -62612,22 +28782,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestReopenedPullR
}
}
#[doc = "`PullRequestRequestedReviewersItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum PullRequestRequestedReviewersItem {
@@ -62645,189 +28799,6 @@ impl ::std::convert::From for PullRequestRequestedReviewersItem {
}
}
#[doc = "The [comment](https://docs.github.com/en/rest/reference/pulls#comments) itself."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Pull Request Review Comment\","]
-#[doc = " \"description\": \"The [comment](https://docs.github.com/en/rest/reference/pulls#comments) itself.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"_links\","]
-#[doc = " \"author_association\","]
-#[doc = " \"body\","]
-#[doc = " \"commit_id\","]
-#[doc = " \"created_at\","]
-#[doc = " \"diff_hunk\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"line\","]
-#[doc = " \"node_id\","]
-#[doc = " \"original_commit_id\","]
-#[doc = " \"original_line\","]
-#[doc = " \"original_position\","]
-#[doc = " \"original_start_line\","]
-#[doc = " \"path\","]
-#[doc = " \"position\","]
-#[doc = " \"pull_request_review_id\","]
-#[doc = " \"pull_request_url\","]
-#[doc = " \"side\","]
-#[doc = " \"start_line\","]
-#[doc = " \"start_side\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"_links\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"html\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"self\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"self\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"description\": \"The text of the comment.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"commit_id\": {"]
-#[doc = " \"description\": \"The SHA of the commit to which the comment applies.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"diff_hunk\": {"]
-#[doc = " \"description\": \"The diff of the line that the comment refers to.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"description\": \"HTML URL for the pull request review comment.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The ID of the pull request review comment.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"in_reply_to_id\": {"]
-#[doc = " \"description\": \"The comment ID to reply to.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"line\": {"]
-#[doc = " \"description\": \"The line of the blob to which the comment applies. The last line of the range for a multi-line comment\","]
-#[doc = " \"type\": ["]
-#[doc = " \"integer\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"description\": \"The node ID of the pull request review comment.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"original_commit_id\": {"]
-#[doc = " \"description\": \"The SHA of the original commit to which the comment applies.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"original_line\": {"]
-#[doc = " \"description\": \"The line of the blob to which the comment applies. The last line of the range for a multi-line comment\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"original_position\": {"]
-#[doc = " \"description\": \"The index of the original line in the diff to which the comment applies.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"original_start_line\": {"]
-#[doc = " \"description\": \"The first line of the range for a multi-line comment.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"integer\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"path\": {"]
-#[doc = " \"description\": \"The relative path of the file to which the comment applies.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"position\": {"]
-#[doc = " \"description\": \"The line index in the diff to which the comment applies.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"integer\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"pull_request_review_id\": {"]
-#[doc = " \"description\": \"The ID of the pull request review to which the comment belongs.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"pull_request_url\": {"]
-#[doc = " \"description\": \"URL for the pull request that the review comment belongs to.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"side\": {"]
-#[doc = " \"description\": \"The side of the first line of the range for a multi-line comment.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"LEFT\","]
-#[doc = " \"RIGHT\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"start_line\": {"]
-#[doc = " \"description\": \"The first line of the range for a multi-line comment.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"integer\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"start_side\": {"]
-#[doc = " \"description\": \"The side of the first line of the range for a multi-line comment.\","]
-#[doc = " \"default\": \"RIGHT\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"LEFT\","]
-#[doc = " \"RIGHT\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"description\": \"URL for the pull request review comment\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewComment {
@@ -62880,351 +28851,6 @@ pub struct PullRequestReviewComment {
pub user: User,
}
#[doc = "`PullRequestReviewCommentCreated`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"pull_request_review_comment created event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"comment\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"comment\": {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request-review-comment\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"_links\","]
-#[doc = " \"active_lock_reason\","]
-#[doc = " \"assignee\","]
-#[doc = " \"assignees\","]
-#[doc = " \"author_association\","]
-#[doc = " \"base\","]
-#[doc = " \"body\","]
-#[doc = " \"closed_at\","]
-#[doc = " \"comments_url\","]
-#[doc = " \"commits_url\","]
-#[doc = " \"created_at\","]
-#[doc = " \"diff_url\","]
-#[doc = " \"head\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"issue_url\","]
-#[doc = " \"labels\","]
-#[doc = " \"locked\","]
-#[doc = " \"merge_commit_sha\","]
-#[doc = " \"merged_at\","]
-#[doc = " \"milestone\","]
-#[doc = " \"node_id\","]
-#[doc = " \"number\","]
-#[doc = " \"patch_url\","]
-#[doc = " \"requested_reviewers\","]
-#[doc = " \"requested_teams\","]
-#[doc = " \"review_comment_url\","]
-#[doc = " \"review_comments_url\","]
-#[doc = " \"state\","]
-#[doc = " \"statuses_url\","]
-#[doc = " \"title\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"_links\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"comments\","]
-#[doc = " \"commits\","]
-#[doc = " \"html\","]
-#[doc = " \"issue\","]
-#[doc = " \"review_comment\","]
-#[doc = " \"review_comments\","]
-#[doc = " \"self\","]
-#[doc = " \"statuses\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"commits\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comment\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"self\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"statuses\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"active_lock_reason\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"assignee\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"assignees\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"auto_merge\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"base\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"comments_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"commits_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"head\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"issue_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"labels\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"merge_commit_sha\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"merged_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"milestone\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/milestone\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"requested_reviewers\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"requested_teams\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"review_comment_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"review_comments_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"statuses_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewCommentCreated {
@@ -63239,18 +28865,6 @@ pub struct PullRequestReviewCommentCreated {
pub sender: User,
}
#[doc = "`PullRequestReviewCommentCreatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -63298,315 +28912,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestReviewComment
}
}
#[doc = "`PullRequestReviewCommentCreatedPullRequest`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"_links\","]
-#[doc = " \"active_lock_reason\","]
-#[doc = " \"assignee\","]
-#[doc = " \"assignees\","]
-#[doc = " \"author_association\","]
-#[doc = " \"base\","]
-#[doc = " \"body\","]
-#[doc = " \"closed_at\","]
-#[doc = " \"comments_url\","]
-#[doc = " \"commits_url\","]
-#[doc = " \"created_at\","]
-#[doc = " \"diff_url\","]
-#[doc = " \"head\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"issue_url\","]
-#[doc = " \"labels\","]
-#[doc = " \"locked\","]
-#[doc = " \"merge_commit_sha\","]
-#[doc = " \"merged_at\","]
-#[doc = " \"milestone\","]
-#[doc = " \"node_id\","]
-#[doc = " \"number\","]
-#[doc = " \"patch_url\","]
-#[doc = " \"requested_reviewers\","]
-#[doc = " \"requested_teams\","]
-#[doc = " \"review_comment_url\","]
-#[doc = " \"review_comments_url\","]
-#[doc = " \"state\","]
-#[doc = " \"statuses_url\","]
-#[doc = " \"title\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"_links\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"comments\","]
-#[doc = " \"commits\","]
-#[doc = " \"html\","]
-#[doc = " \"issue\","]
-#[doc = " \"review_comment\","]
-#[doc = " \"review_comments\","]
-#[doc = " \"self\","]
-#[doc = " \"statuses\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"commits\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comment\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"self\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"statuses\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"active_lock_reason\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"assignee\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"assignees\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"auto_merge\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"base\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"comments_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"commits_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"head\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"issue_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"labels\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"merge_commit_sha\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"merged_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"milestone\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/milestone\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"requested_reviewers\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"requested_teams\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"review_comment_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"review_comments_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"statuses_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewCommentCreatedPullRequest {
@@ -63653,21 +28958,6 @@ pub struct PullRequestReviewCommentCreatedPullRequest {
pub user: User,
}
#[doc = "`PullRequestReviewCommentCreatedPullRequestActiveLockReason`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -63729,40 +29019,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`PullRequestReviewCommentCreatedPullRequestBase`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewCommentCreatedPullRequestBase {
@@ -63774,40 +29030,6 @@ pub struct PullRequestReviewCommentCreatedPullRequestBase {
pub user: User,
}
#[doc = "`PullRequestReviewCommentCreatedPullRequestHead`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewCommentCreatedPullRequestHead {
@@ -63819,52 +29041,6 @@ pub struct PullRequestReviewCommentCreatedPullRequestHead {
pub user: User,
}
#[doc = "`PullRequestReviewCommentCreatedPullRequestLinks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"comments\","]
-#[doc = " \"commits\","]
-#[doc = " \"html\","]
-#[doc = " \"issue\","]
-#[doc = " \"review_comment\","]
-#[doc = " \"review_comments\","]
-#[doc = " \"self\","]
-#[doc = " \"statuses\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"commits\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comment\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"self\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"statuses\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewCommentCreatedPullRequestLinks {
@@ -63879,22 +29055,6 @@ pub struct PullRequestReviewCommentCreatedPullRequestLinks {
pub statuses: Link,
}
#[doc = "`PullRequestReviewCommentCreatedPullRequestRequestedReviewersItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum PullRequestReviewCommentCreatedPullRequestRequestedReviewersItem {
@@ -63916,19 +29076,6 @@ impl ::std::convert::From
}
}
#[doc = "`PullRequestReviewCommentCreatedPullRequestState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -63982,351 +29129,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`PullRequestReviewCommentDeleted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"pull_request_review_comment deleted event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"comment\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"comment\": {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request-review-comment\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"_links\","]
-#[doc = " \"active_lock_reason\","]
-#[doc = " \"assignee\","]
-#[doc = " \"assignees\","]
-#[doc = " \"author_association\","]
-#[doc = " \"base\","]
-#[doc = " \"body\","]
-#[doc = " \"closed_at\","]
-#[doc = " \"comments_url\","]
-#[doc = " \"commits_url\","]
-#[doc = " \"created_at\","]
-#[doc = " \"diff_url\","]
-#[doc = " \"head\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"issue_url\","]
-#[doc = " \"labels\","]
-#[doc = " \"locked\","]
-#[doc = " \"merge_commit_sha\","]
-#[doc = " \"merged_at\","]
-#[doc = " \"milestone\","]
-#[doc = " \"node_id\","]
-#[doc = " \"number\","]
-#[doc = " \"patch_url\","]
-#[doc = " \"requested_reviewers\","]
-#[doc = " \"requested_teams\","]
-#[doc = " \"review_comment_url\","]
-#[doc = " \"review_comments_url\","]
-#[doc = " \"state\","]
-#[doc = " \"statuses_url\","]
-#[doc = " \"title\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"_links\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"comments\","]
-#[doc = " \"commits\","]
-#[doc = " \"html\","]
-#[doc = " \"issue\","]
-#[doc = " \"review_comment\","]
-#[doc = " \"review_comments\","]
-#[doc = " \"self\","]
-#[doc = " \"statuses\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"commits\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comment\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"self\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"statuses\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"active_lock_reason\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"assignee\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"assignees\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"auto_merge\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"base\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"comments_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"commits_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"head\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"issue_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"labels\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"merge_commit_sha\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"merged_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"milestone\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/milestone\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"requested_reviewers\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"requested_teams\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"review_comment_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"review_comments_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"statuses_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewCommentDeleted {
@@ -64341,18 +29143,6 @@ pub struct PullRequestReviewCommentDeleted {
pub sender: User,
}
#[doc = "`PullRequestReviewCommentDeletedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -64400,315 +29190,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestReviewComment
}
}
#[doc = "`PullRequestReviewCommentDeletedPullRequest`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"_links\","]
-#[doc = " \"active_lock_reason\","]
-#[doc = " \"assignee\","]
-#[doc = " \"assignees\","]
-#[doc = " \"author_association\","]
-#[doc = " \"base\","]
-#[doc = " \"body\","]
-#[doc = " \"closed_at\","]
-#[doc = " \"comments_url\","]
-#[doc = " \"commits_url\","]
-#[doc = " \"created_at\","]
-#[doc = " \"diff_url\","]
-#[doc = " \"head\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"issue_url\","]
-#[doc = " \"labels\","]
-#[doc = " \"locked\","]
-#[doc = " \"merge_commit_sha\","]
-#[doc = " \"merged_at\","]
-#[doc = " \"milestone\","]
-#[doc = " \"node_id\","]
-#[doc = " \"number\","]
-#[doc = " \"patch_url\","]
-#[doc = " \"requested_reviewers\","]
-#[doc = " \"requested_teams\","]
-#[doc = " \"review_comment_url\","]
-#[doc = " \"review_comments_url\","]
-#[doc = " \"state\","]
-#[doc = " \"statuses_url\","]
-#[doc = " \"title\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"_links\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"comments\","]
-#[doc = " \"commits\","]
-#[doc = " \"html\","]
-#[doc = " \"issue\","]
-#[doc = " \"review_comment\","]
-#[doc = " \"review_comments\","]
-#[doc = " \"self\","]
-#[doc = " \"statuses\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"commits\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comment\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"self\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"statuses\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"active_lock_reason\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"assignee\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"assignees\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"auto_merge\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"base\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"comments_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"commits_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"head\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"issue_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"labels\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"merge_commit_sha\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"merged_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"milestone\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/milestone\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"requested_reviewers\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"requested_teams\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"review_comment_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"review_comments_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"statuses_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewCommentDeletedPullRequest {
@@ -64755,21 +29236,6 @@ pub struct PullRequestReviewCommentDeletedPullRequest {
pub user: User,
}
#[doc = "`PullRequestReviewCommentDeletedPullRequestActiveLockReason`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -64831,40 +29297,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`PullRequestReviewCommentDeletedPullRequestBase`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewCommentDeletedPullRequestBase {
@@ -64876,40 +29308,6 @@ pub struct PullRequestReviewCommentDeletedPullRequestBase {
pub user: User,
}
#[doc = "`PullRequestReviewCommentDeletedPullRequestHead`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewCommentDeletedPullRequestHead {
@@ -64921,52 +29319,6 @@ pub struct PullRequestReviewCommentDeletedPullRequestHead {
pub user: User,
}
#[doc = "`PullRequestReviewCommentDeletedPullRequestLinks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"comments\","]
-#[doc = " \"commits\","]
-#[doc = " \"html\","]
-#[doc = " \"issue\","]
-#[doc = " \"review_comment\","]
-#[doc = " \"review_comments\","]
-#[doc = " \"self\","]
-#[doc = " \"statuses\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"commits\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comment\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"self\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"statuses\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewCommentDeletedPullRequestLinks {
@@ -64981,22 +29333,6 @@ pub struct PullRequestReviewCommentDeletedPullRequestLinks {
pub statuses: Link,
}
#[doc = "`PullRequestReviewCommentDeletedPullRequestRequestedReviewersItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum PullRequestReviewCommentDeletedPullRequestRequestedReviewersItem {
@@ -65018,19 +29354,6 @@ impl ::std::convert::From
}
}
#[doc = "`PullRequestReviewCommentDeletedPullRequestState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -65084,372 +29407,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`PullRequestReviewCommentEdited`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"pull_request_review_comment edited event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"comment\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"description\": \"The changes to the comment.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the body.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"comment\": {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request-review-comment\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"_links\","]
-#[doc = " \"active_lock_reason\","]
-#[doc = " \"assignee\","]
-#[doc = " \"assignees\","]
-#[doc = " \"author_association\","]
-#[doc = " \"base\","]
-#[doc = " \"body\","]
-#[doc = " \"closed_at\","]
-#[doc = " \"comments_url\","]
-#[doc = " \"commits_url\","]
-#[doc = " \"created_at\","]
-#[doc = " \"diff_url\","]
-#[doc = " \"head\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"issue_url\","]
-#[doc = " \"labels\","]
-#[doc = " \"locked\","]
-#[doc = " \"merge_commit_sha\","]
-#[doc = " \"merged_at\","]
-#[doc = " \"milestone\","]
-#[doc = " \"node_id\","]
-#[doc = " \"number\","]
-#[doc = " \"patch_url\","]
-#[doc = " \"requested_reviewers\","]
-#[doc = " \"requested_teams\","]
-#[doc = " \"review_comment_url\","]
-#[doc = " \"review_comments_url\","]
-#[doc = " \"state\","]
-#[doc = " \"statuses_url\","]
-#[doc = " \"title\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"_links\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"comments\","]
-#[doc = " \"commits\","]
-#[doc = " \"html\","]
-#[doc = " \"issue\","]
-#[doc = " \"review_comment\","]
-#[doc = " \"review_comments\","]
-#[doc = " \"self\","]
-#[doc = " \"statuses\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"commits\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comment\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"self\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"statuses\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"active_lock_reason\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"assignee\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"assignees\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"auto_merge\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"base\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"comments_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"commits_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"head\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"issue_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"labels\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"merge_commit_sha\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"merged_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"milestone\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/milestone\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"requested_reviewers\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"requested_teams\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"review_comment_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"review_comments_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"statuses_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewCommentEdited {
@@ -65465,18 +29422,6 @@ pub struct PullRequestReviewCommentEdited {
pub sender: User,
}
#[doc = "`PullRequestReviewCommentEditedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -65524,32 +29469,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestReviewComment
}
}
#[doc = "The changes to the comment."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The changes to the comment.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the body.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewCommentEditedChanges {
@@ -65557,25 +29476,6 @@ pub struct PullRequestReviewCommentEditedChanges {
pub body: ::std::option::Option,
}
#[doc = "`PullRequestReviewCommentEditedChangesBody`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the body.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewCommentEditedChangesBody {
@@ -65583,315 +29483,6 @@ pub struct PullRequestReviewCommentEditedChangesBody {
pub from: ::std::string::String,
}
#[doc = "`PullRequestReviewCommentEditedPullRequest`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"_links\","]
-#[doc = " \"active_lock_reason\","]
-#[doc = " \"assignee\","]
-#[doc = " \"assignees\","]
-#[doc = " \"author_association\","]
-#[doc = " \"base\","]
-#[doc = " \"body\","]
-#[doc = " \"closed_at\","]
-#[doc = " \"comments_url\","]
-#[doc = " \"commits_url\","]
-#[doc = " \"created_at\","]
-#[doc = " \"diff_url\","]
-#[doc = " \"head\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"issue_url\","]
-#[doc = " \"labels\","]
-#[doc = " \"locked\","]
-#[doc = " \"merge_commit_sha\","]
-#[doc = " \"merged_at\","]
-#[doc = " \"milestone\","]
-#[doc = " \"node_id\","]
-#[doc = " \"number\","]
-#[doc = " \"patch_url\","]
-#[doc = " \"requested_reviewers\","]
-#[doc = " \"requested_teams\","]
-#[doc = " \"review_comment_url\","]
-#[doc = " \"review_comments_url\","]
-#[doc = " \"state\","]
-#[doc = " \"statuses_url\","]
-#[doc = " \"title\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"_links\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"comments\","]
-#[doc = " \"commits\","]
-#[doc = " \"html\","]
-#[doc = " \"issue\","]
-#[doc = " \"review_comment\","]
-#[doc = " \"review_comments\","]
-#[doc = " \"self\","]
-#[doc = " \"statuses\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"commits\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comment\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"self\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"statuses\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"active_lock_reason\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"assignee\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"assignees\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"auto_merge\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"base\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"comments_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"commits_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"head\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"issue_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"labels\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"merge_commit_sha\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"merged_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"milestone\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/milestone\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"requested_reviewers\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"requested_teams\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"review_comment_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"review_comments_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"statuses_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewCommentEditedPullRequest {
@@ -65938,21 +29529,6 @@ pub struct PullRequestReviewCommentEditedPullRequest {
pub user: User,
}
#[doc = "`PullRequestReviewCommentEditedPullRequestActiveLockReason`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -66014,40 +29590,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`PullRequestReviewCommentEditedPullRequestBase`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewCommentEditedPullRequestBase {
@@ -66059,40 +29601,6 @@ pub struct PullRequestReviewCommentEditedPullRequestBase {
pub user: User,
}
#[doc = "`PullRequestReviewCommentEditedPullRequestHead`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewCommentEditedPullRequestHead {
@@ -66104,52 +29612,6 @@ pub struct PullRequestReviewCommentEditedPullRequestHead {
pub user: User,
}
#[doc = "`PullRequestReviewCommentEditedPullRequestLinks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"comments\","]
-#[doc = " \"commits\","]
-#[doc = " \"html\","]
-#[doc = " \"issue\","]
-#[doc = " \"review_comment\","]
-#[doc = " \"review_comments\","]
-#[doc = " \"self\","]
-#[doc = " \"statuses\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"commits\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comment\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"self\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"statuses\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewCommentEditedPullRequestLinks {
@@ -66164,22 +29626,6 @@ pub struct PullRequestReviewCommentEditedPullRequestLinks {
pub statuses: Link,
}
#[doc = "`PullRequestReviewCommentEditedPullRequestRequestedReviewersItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum PullRequestReviewCommentEditedPullRequestRequestedReviewersItem {
@@ -66201,19 +29647,6 @@ impl ::std::convert::From
}
}
#[doc = "`PullRequestReviewCommentEditedPullRequestState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -66267,25 +29700,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`PullRequestReviewCommentEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request_review_comment$created\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request_review_comment$deleted\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request_review_comment$edited\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum PullRequestReviewCommentEvent {
@@ -66309,32 +29723,6 @@ impl ::std::convert::From for PullRequestReviewC
}
}
#[doc = "`PullRequestReviewCommentLinks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"html\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"self\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"self\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewCommentLinks {
@@ -66344,20 +29732,6 @@ pub struct PullRequestReviewCommentLinks {
pub self_: Link,
}
#[doc = "The side of the first line of the range for a multi-line comment."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The side of the first line of the range for a multi-line comment.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"LEFT\","]
-#[doc = " \"RIGHT\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -66409,21 +29783,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestReviewComment
}
}
#[doc = "The side of the first line of the range for a multi-line comment."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The side of the first line of the range for a multi-line comment.\","]
-#[doc = " \"default\": \"RIGHT\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"LEFT\","]
-#[doc = " \"RIGHT\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -66475,126 +29834,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestReviewComment
}
}
#[doc = "`PullRequestReviewDismissed`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"pull_request_review dismissed event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"review\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"dismissed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/simple-pull-request\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"review\": {"]
-#[doc = " \"description\": \"The review that was affected.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"_links\","]
-#[doc = " \"author_association\","]
-#[doc = " \"body\","]
-#[doc = " \"commit_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"pull_request_url\","]
-#[doc = " \"state\","]
-#[doc = " \"submitted_at\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"_links\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"html\","]
-#[doc = " \"pull_request\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"description\": \"The text of the review.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"commit_id\": {"]
-#[doc = " \"description\": \"A commit SHA for the review.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the review\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_request_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"dismissed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"submitted_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewDismissed {
@@ -66609,18 +29848,6 @@ pub struct PullRequestReviewDismissed {
pub sender: User,
}
#[doc = "`PullRequestReviewDismissedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"dismissed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -66668,90 +29895,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestReviewDismiss
}
}
#[doc = "The review that was affected."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The review that was affected.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"_links\","]
-#[doc = " \"author_association\","]
-#[doc = " \"body\","]
-#[doc = " \"commit_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"pull_request_url\","]
-#[doc = " \"state\","]
-#[doc = " \"submitted_at\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"_links\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"html\","]
-#[doc = " \"pull_request\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"description\": \"The text of the review.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"commit_id\": {"]
-#[doc = " \"description\": \"A commit SHA for the review.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the review\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_request_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"dismissed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"submitted_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewDismissedReview {
@@ -66772,28 +29915,6 @@ pub struct PullRequestReviewDismissedReview {
pub user: User,
}
#[doc = "`PullRequestReviewDismissedReviewLinks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"html\","]
-#[doc = " \"pull_request\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewDismissedReviewLinks {
@@ -66801,18 +29922,6 @@ pub struct PullRequestReviewDismissedReviewLinks {
pub pull_request: Link,
}
#[doc = "`PullRequestReviewDismissedReviewState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"dismissed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -66860,143 +29969,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestReviewDismiss
}
}
#[doc = "`PullRequestReviewEdited`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"pull_request_review edited event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"review\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the body if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/simple-pull-request\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"review\": {"]
-#[doc = " \"description\": \"The review that was affected.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"_links\","]
-#[doc = " \"author_association\","]
-#[doc = " \"body\","]
-#[doc = " \"commit_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"pull_request_url\","]
-#[doc = " \"state\","]
-#[doc = " \"submitted_at\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"_links\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"html\","]
-#[doc = " \"pull_request\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"description\": \"The text of the review.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"commit_id\": {"]
-#[doc = " \"description\": \"A commit SHA for the review.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the review\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_request_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"submitted_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewEdited {
@@ -67012,18 +29984,6 @@ pub struct PullRequestReviewEdited {
pub sender: User,
}
#[doc = "`PullRequestReviewEditedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -67071,31 +30031,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestReviewEditedA
}
}
#[doc = "`PullRequestReviewEditedChanges`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the body if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewEditedChanges {
@@ -67103,25 +30038,6 @@ pub struct PullRequestReviewEditedChanges {
pub body: ::std::option::Option,
}
#[doc = "`PullRequestReviewEditedChangesBody`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the body if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewEditedChangesBody {
@@ -67129,87 +30045,6 @@ pub struct PullRequestReviewEditedChangesBody {
pub from: ::std::string::String,
}
#[doc = "The review that was affected."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The review that was affected.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"_links\","]
-#[doc = " \"author_association\","]
-#[doc = " \"body\","]
-#[doc = " \"commit_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"pull_request_url\","]
-#[doc = " \"state\","]
-#[doc = " \"submitted_at\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"_links\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"html\","]
-#[doc = " \"pull_request\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"description\": \"The text of the review.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"commit_id\": {"]
-#[doc = " \"description\": \"A commit SHA for the review.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the review\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_request_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"submitted_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewEditedReview {
@@ -67230,28 +30065,6 @@ pub struct PullRequestReviewEditedReview {
pub user: User,
}
#[doc = "`PullRequestReviewEditedReviewLinks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"html\","]
-#[doc = " \"pull_request\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewEditedReviewLinks {
@@ -67259,25 +30072,6 @@ pub struct PullRequestReviewEditedReviewLinks {
pub pull_request: Link,
}
#[doc = "`PullRequestReviewEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request_review$dismissed\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request_review$edited\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/pull_request_review$submitted\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum PullRequestReviewEvent {
@@ -67301,102 +30095,6 @@ impl ::std::convert::From for PullRequestReviewEvent
}
}
#[doc = "`PullRequestReviewRequestRemoved`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"pull_request review_request_removed event\","]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"number\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"requested_reviewer\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"review_request_removed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The pull request number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"requested_reviewer\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"number\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"requested_team\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"review_request_removed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The pull request number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"requested_team\": {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ],"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged, deny_unknown_fields)]
pub enum PullRequestReviewRequestRemoved {
@@ -67428,18 +30126,6 @@ pub enum PullRequestReviewRequestRemoved {
},
}
#[doc = "`PullRequestReviewRequestRemovedVariant0Action`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"review_request_removed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -67489,18 +30175,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`PullRequestReviewRequestRemovedVariant1Action`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"review_request_removed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -67550,102 +30224,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`PullRequestReviewRequested`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"pull_request review_requested event\","]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"number\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"requested_reviewer\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"review_requested\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The pull request number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"requested_reviewer\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"number\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"requested_team\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"review_requested\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The pull request number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"requested_team\": {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ],"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged, deny_unknown_fields)]
pub enum PullRequestReviewRequested {
@@ -67677,18 +30255,6 @@ pub enum PullRequestReviewRequested {
},
}
#[doc = "`PullRequestReviewRequestedVariant0Action`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"review_requested\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -67736,18 +30302,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestReviewRequest
}
}
#[doc = "`PullRequestReviewRequestedVariant1Action`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"review_requested\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -67795,123 +30349,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestReviewRequest
}
}
#[doc = "`PullRequestReviewSubmitted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"pull_request_review submitted event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"review\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"submitted\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/simple-pull-request\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"review\": {"]
-#[doc = " \"description\": \"The review that was affected.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"_links\","]
-#[doc = " \"author_association\","]
-#[doc = " \"body\","]
-#[doc = " \"commit_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"pull_request_url\","]
-#[doc = " \"state\","]
-#[doc = " \"submitted_at\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"_links\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"html\","]
-#[doc = " \"pull_request\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"description\": \"The text of the review.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"commit_id\": {"]
-#[doc = " \"description\": \"A commit SHA for the review.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the review\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_request_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"submitted_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewSubmitted {
@@ -67926,18 +30363,6 @@ pub struct PullRequestReviewSubmitted {
pub sender: User,
}
#[doc = "`PullRequestReviewSubmittedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"submitted\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -67985,87 +30410,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestReviewSubmitt
}
}
#[doc = "The review that was affected."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The review that was affected.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"_links\","]
-#[doc = " \"author_association\","]
-#[doc = " \"body\","]
-#[doc = " \"commit_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"node_id\","]
-#[doc = " \"pull_request_url\","]
-#[doc = " \"state\","]
-#[doc = " \"submitted_at\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"_links\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"html\","]
-#[doc = " \"pull_request\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"description\": \"The text of the review.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"commit_id\": {"]
-#[doc = " \"description\": \"A commit SHA for the review.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the review\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_request_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"submitted_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewSubmittedReview {
@@ -68086,28 +30430,6 @@ pub struct PullRequestReviewSubmittedReview {
pub user: User,
}
#[doc = "`PullRequestReviewSubmittedReviewLinks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"html\","]
-#[doc = " \"pull_request\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestReviewSubmittedReviewLinks {
@@ -68115,20 +30437,6 @@ pub struct PullRequestReviewSubmittedReviewLinks {
pub pull_request: Link,
}
#[doc = "State of this Pull Request. Either `open` or `closed`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"State of this Pull Request. Either `open` or `closed`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -68180,60 +30488,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestState {
}
}
#[doc = "`PullRequestSynchronize`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"pull_request synchronize event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"after\","]
-#[doc = " \"before\","]
-#[doc = " \"number\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"synchronize\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"after\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"before\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The pull request number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestSynchronize {
@@ -68251,18 +30505,6 @@ pub struct PullRequestSynchronize {
pub sender: User,
}
#[doc = "`PullRequestSynchronizeAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"synchronize\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -68310,56 +30552,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestSynchronizeAc
}
}
#[doc = "`PullRequestUnassigned`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"pull_request unassigned event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"assignee\","]
-#[doc = " \"number\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unassigned\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"assignee\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The pull request number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestUnassigned {
@@ -68376,18 +30568,6 @@ pub struct PullRequestUnassigned {
pub sender: User,
}
#[doc = "`PullRequestUnassignedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unassigned\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -68435,56 +30615,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestUnassignedAct
}
}
#[doc = "`PullRequestUnlabeled`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"pull_request unlabeled event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"label\","]
-#[doc = " \"number\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unlabeled\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"label\": {"]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The pull request number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestUnlabeled {
@@ -68501,18 +30631,6 @@ pub struct PullRequestUnlabeled {
pub sender: User,
}
#[doc = "`PullRequestUnlabeledAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unlabeled\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -68560,52 +30678,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestUnlabeledActi
}
}
#[doc = "`PullRequestUnlocked`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"pull_request unlocked event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"number\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unlocked\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"description\": \"The pull request number.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pull_request\": {"]
-#[doc = " \"$ref\": \"#/definitions/pull-request\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PullRequestUnlocked {
@@ -68621,18 +30693,6 @@ pub struct PullRequestUnlocked {
pub sender: User,
}
#[doc = "`PullRequestUnlockedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unlocked\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -68680,97 +30740,6 @@ impl ::std::convert::TryFrom<::std::string::String> for PullRequestUnlockedActio
}
}
#[doc = "`PushEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"push event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"after\","]
-#[doc = " \"base_ref\","]
-#[doc = " \"before\","]
-#[doc = " \"commits\","]
-#[doc = " \"compare\","]
-#[doc = " \"created\","]
-#[doc = " \"deleted\","]
-#[doc = " \"forced\","]
-#[doc = " \"head_commit\","]
-#[doc = " \"pusher\","]
-#[doc = " \"ref\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"after\": {"]
-#[doc = " \"description\": \"The SHA of the most recent commit on `ref` after the push.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"base_ref\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"before\": {"]
-#[doc = " \"description\": \"The SHA of the most recent commit on `ref` before the push.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"commits\": {"]
-#[doc = " \"description\": \"An array of commit objects describing the pushed commits.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/commit\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"compare\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"deleted\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"forced\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"head_commit\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/commit\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"pusher\": {"]
-#[doc = " \"$ref\": \"#/definitions/committer\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"description\": \"The full git ref that was pushed. Example: `refs/heads/main`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct PushEvent {
@@ -68798,122 +30767,6 @@ pub struct PushEvent {
pub sender: User,
}
#[doc = "The [release](https://docs.github.com/en/rest/reference/repos/#get-a-release) object."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Release\","]
-#[doc = " \"description\": \"The [release](https://docs.github.com/en/rest/reference/repos/#get-a-release) object.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"assets\","]
-#[doc = " \"assets_url\","]
-#[doc = " \"author\","]
-#[doc = " \"body\","]
-#[doc = " \"created_at\","]
-#[doc = " \"draft\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"prerelease\","]
-#[doc = " \"published_at\","]
-#[doc = " \"tag_name\","]
-#[doc = " \"tarball_url\","]
-#[doc = " \"target_commitish\","]
-#[doc = " \"upload_url\","]
-#[doc = " \"url\","]
-#[doc = " \"zipball_url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"assets\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/release-asset\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"assets_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"author\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"description\": \"Wether the release is a draft or published\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"prerelease\": {"]
-#[doc = " \"description\": \"Whether the release is identified as a prerelease or a full release.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"published_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"tag_name\": {"]
-#[doc = " \"description\": \"The name of the tag.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"tarball_url\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"target_commitish\": {"]
-#[doc = " \"description\": \"Specifies the commitish value that determines where the Git tag is created from.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"upload_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"zipball_url\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct Release {
@@ -68941,86 +30794,6 @@ pub struct Release {
pub zipball_url: ::std::option::Option<::std::string::String>,
}
#[doc = "Data related to a release."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Release Asset\","]
-#[doc = " \"description\": \"Data related to a release.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"browser_download_url\","]
-#[doc = " \"content_type\","]
-#[doc = " \"created_at\","]
-#[doc = " \"download_count\","]
-#[doc = " \"id\","]
-#[doc = " \"label\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"size\","]
-#[doc = " \"state\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"browser_download_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"content_type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"download_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The file name of the asset.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"size\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"State of the release asset.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"uploaded\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"uploader\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ReleaseAsset {
@@ -69042,19 +30815,6 @@ pub struct ReleaseAsset {
pub url: ::std::string::String,
}
#[doc = "State of the release asset."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"State of the release asset.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"uploaded\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -69102,47 +30862,6 @@ impl ::std::convert::TryFrom<::std::string::String> for ReleaseAssetState {
}
}
#[doc = "`ReleaseCreated`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"release created event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"release\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"release\": {"]
-#[doc = " \"$ref\": \"#/definitions/release\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ReleaseCreated {
@@ -69156,18 +30875,6 @@ pub struct ReleaseCreated {
pub sender: User,
}
#[doc = "`ReleaseCreatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -69215,47 +30922,6 @@ impl ::std::convert::TryFrom<::std::string::String> for ReleaseCreatedAction {
}
}
#[doc = "`ReleaseDeleted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"release deleted event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"release\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"release\": {"]
-#[doc = " \"$ref\": \"#/definitions/release\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ReleaseDeleted {
@@ -69269,18 +30935,6 @@ pub struct ReleaseDeleted {
pub sender: User,
}
#[doc = "`ReleaseDeletedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -69328,80 +30982,6 @@ impl ::std::convert::TryFrom<::std::string::String> for ReleaseDeletedAction {
}
}
#[doc = "`ReleaseEdited`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"release edited event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"release\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the body if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the name if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"release\": {"]
-#[doc = " \"$ref\": \"#/definitions/release\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ReleaseEdited {
@@ -69416,18 +30996,6 @@ pub struct ReleaseEdited {
pub sender: User,
}
#[doc = "`ReleaseEditedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -69475,44 +31043,6 @@ impl ::std::convert::TryFrom<::std::string::String> for ReleaseEditedAction {
}
}
#[doc = "`ReleaseEditedChanges`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the body if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the name if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct ReleaseEditedChanges {
@@ -69522,25 +31052,6 @@ pub struct ReleaseEditedChanges {
pub name: ::std::option::Option,
}
#[doc = "`ReleaseEditedChangesBody`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the body if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ReleaseEditedChangesBody {
@@ -69548,25 +31059,6 @@ pub struct ReleaseEditedChangesBody {
pub from: ::std::string::String,
}
#[doc = "`ReleaseEditedChangesName`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the name if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ReleaseEditedChangesName {
@@ -69574,37 +31066,6 @@ pub struct ReleaseEditedChangesName {
pub from: ::std::string::String,
}
#[doc = "`ReleaseEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/release$created\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/release$deleted\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/release$edited\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/release$prereleased\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/release$published\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/release$released\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/release$unpublished\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum ReleaseEvent {
@@ -69652,67 +31113,6 @@ impl ::std::convert::From for ReleaseEvent {
}
}
#[doc = "`ReleasePrereleased`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"release prereleased event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"release\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"prereleased\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"release\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/release\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"prerelease\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"prerelease\": {"]
-#[doc = " \"description\": \"Whether the release is identified as a prerelease or a full release.\","]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " true"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ReleasePrereleased {
@@ -69726,18 +31126,6 @@ pub struct ReleasePrereleased {
pub sender: User,
}
#[doc = "`ReleasePrereleasedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"prereleased\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -69785,35 +31173,6 @@ impl ::std::convert::TryFrom<::std::string::String> for ReleasePrereleasedAction
}
}
#[doc = "`ReleasePrereleasedRelease`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/release\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"prerelease\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"prerelease\": {"]
-#[doc = " \"description\": \"Whether the release is identified as a prerelease or a full release.\","]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " true"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ReleasePrereleasedRelease {
@@ -69840,64 +31199,6 @@ pub struct ReleasePrereleasedRelease {
pub zipball_url: ::std::option::Option<::std::string::String>,
}
#[doc = "`ReleasePublished`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"release published event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"release\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"published\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"release\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/release\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"published_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"published_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ReleasePublished {
@@ -69911,18 +31212,6 @@ pub struct ReleasePublished {
pub sender: User,
}
#[doc = "`ReleasePublishedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"published\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -69970,32 +31259,6 @@ impl ::std::convert::TryFrom<::std::string::String> for ReleasePublishedAction {
}
}
#[doc = "`ReleasePublishedRelease`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/release\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"published_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"published_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ReleasePublishedRelease {
@@ -70023,47 +31286,6 @@ pub struct ReleasePublishedRelease {
pub zipball_url: ::std::option::Option<::std::string::String>,
}
#[doc = "`ReleaseReleased`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"release released event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"release\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"released\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"release\": {"]
-#[doc = " \"$ref\": \"#/definitions/release\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ReleaseReleased {
@@ -70077,18 +31299,6 @@ pub struct ReleaseReleased {
pub sender: User,
}
#[doc = "`ReleaseReleasedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"released\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -70136,63 +31346,6 @@ impl ::std::convert::TryFrom<::std::string::String> for ReleaseReleasedAction {
}
}
#[doc = "`ReleaseUnpublished`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"release unpublished event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"release\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unpublished\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"release\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/release\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"published_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"published_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ReleaseUnpublished {
@@ -70206,18 +31359,6 @@ pub struct ReleaseUnpublished {
pub sender: User,
}
#[doc = "`ReleaseUnpublishedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unpublished\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -70265,31 +31406,6 @@ impl ::std::convert::TryFrom<::std::string::String> for ReleaseUnpublishedAction
}
}
#[doc = "`ReleaseUnpublishedRelease`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/release\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"published_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"published_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct ReleaseUnpublishedRelease {
@@ -70317,35 +31433,6 @@ pub struct ReleaseUnpublishedRelease {
pub zipball_url: ::std::option::Option<::std::string::String>,
}
#[doc = "`RepoRef`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Repo Ref\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepoRef {
@@ -70354,477 +31441,6 @@ pub struct RepoRef {
pub url: ::std::string::String,
}
#[doc = "A git repository"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Repository\","]
-#[doc = " \"description\": \"A git repository\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"archive_url\","]
-#[doc = " \"archived\","]
-#[doc = " \"assignees_url\","]
-#[doc = " \"blobs_url\","]
-#[doc = " \"branches_url\","]
-#[doc = " \"clone_url\","]
-#[doc = " \"collaborators_url\","]
-#[doc = " \"comments_url\","]
-#[doc = " \"commits_url\","]
-#[doc = " \"compare_url\","]
-#[doc = " \"contents_url\","]
-#[doc = " \"contributors_url\","]
-#[doc = " \"created_at\","]
-#[doc = " \"default_branch\","]
-#[doc = " \"deployments_url\","]
-#[doc = " \"description\","]
-#[doc = " \"downloads_url\","]
-#[doc = " \"events_url\","]
-#[doc = " \"fork\","]
-#[doc = " \"forks\","]
-#[doc = " \"forks_count\","]
-#[doc = " \"forks_url\","]
-#[doc = " \"full_name\","]
-#[doc = " \"git_commits_url\","]
-#[doc = " \"git_refs_url\","]
-#[doc = " \"git_tags_url\","]
-#[doc = " \"git_url\","]
-#[doc = " \"has_downloads\","]
-#[doc = " \"has_issues\","]
-#[doc = " \"has_pages\","]
-#[doc = " \"has_projects\","]
-#[doc = " \"has_wiki\","]
-#[doc = " \"homepage\","]
-#[doc = " \"hooks_url\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"issue_comment_url\","]
-#[doc = " \"issue_events_url\","]
-#[doc = " \"issues_url\","]
-#[doc = " \"keys_url\","]
-#[doc = " \"labels_url\","]
-#[doc = " \"language\","]
-#[doc = " \"languages_url\","]
-#[doc = " \"license\","]
-#[doc = " \"merges_url\","]
-#[doc = " \"milestones_url\","]
-#[doc = " \"mirror_url\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"notifications_url\","]
-#[doc = " \"open_issues\","]
-#[doc = " \"open_issues_count\","]
-#[doc = " \"owner\","]
-#[doc = " \"private\","]
-#[doc = " \"pulls_url\","]
-#[doc = " \"pushed_at\","]
-#[doc = " \"releases_url\","]
-#[doc = " \"size\","]
-#[doc = " \"ssh_url\","]
-#[doc = " \"stargazers_count\","]
-#[doc = " \"stargazers_url\","]
-#[doc = " \"statuses_url\","]
-#[doc = " \"subscribers_url\","]
-#[doc = " \"subscription_url\","]
-#[doc = " \"svn_url\","]
-#[doc = " \"tags_url\","]
-#[doc = " \"teams_url\","]
-#[doc = " \"trees_url\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\","]
-#[doc = " \"watchers\","]
-#[doc = " \"watchers_count\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"allow_auto_merge\": {"]
-#[doc = " \"description\": \"Whether to allow auto-merge for pull requests.\","]
-#[doc = " \"default\": false,"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"allow_forking\": {"]
-#[doc = " \"description\": \"Whether to allow private forks\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"allow_merge_commit\": {"]
-#[doc = " \"description\": \"Whether to allow merge commits for pull requests.\","]
-#[doc = " \"default\": true,"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"allow_rebase_merge\": {"]
-#[doc = " \"description\": \"Whether to allow rebase merges for pull requests.\","]
-#[doc = " \"default\": true,"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"allow_squash_merge\": {"]
-#[doc = " \"description\": \"Whether to allow squash merges for pull requests.\","]
-#[doc = " \"default\": true,"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"archive_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"archived\": {"]
-#[doc = " \"description\": \"Whether the repository is archived.\","]
-#[doc = " \"default\": false,"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"assignees_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"blobs_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"branches_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"clone_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"collaborators_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"comments_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"commits_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"compare_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"contents_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"contributors_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"default_branch\": {"]
-#[doc = " \"description\": \"The default branch of the repository.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"delete_branch_on_merge\": {"]
-#[doc = " \"description\": \"Whether to delete head branches when pull requests are merged\","]
-#[doc = " \"default\": false,"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"deployments_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"disabled\": {"]
-#[doc = " \"description\": \"Returns whether or not this repository is disabled.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"downloads_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"fork\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"forks\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"forks_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"forks_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"full_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"git_commits_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"git_refs_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"git_tags_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"git_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"has_downloads\": {"]
-#[doc = " \"description\": \"Whether downloads are enabled.\","]
-#[doc = " \"default\": true,"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"has_issues\": {"]
-#[doc = " \"description\": \"Whether issues are enabled.\","]
-#[doc = " \"default\": true,"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"has_pages\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"has_projects\": {"]
-#[doc = " \"description\": \"Whether projects are enabled.\","]
-#[doc = " \"default\": true,"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"has_wiki\": {"]
-#[doc = " \"description\": \"Whether the wiki is enabled.\","]
-#[doc = " \"default\": true,"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"homepage\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"hooks_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the repository\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"issue_comment_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"issue_events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"issues_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"keys_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"labels_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"language\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"languages_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"license\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/license\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"master_branch\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"merges_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"milestones_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"mirror_url\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the repository.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"notifications_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"open_issues\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"open_issues_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"owner\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"permissions\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"admin\","]
-#[doc = " \"pull\","]
-#[doc = " \"push\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"admin\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"maintain\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"pull\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"push\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"triage\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"private\": {"]
-#[doc = " \"description\": \"Whether the repository is private or public.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"public\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"pulls_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"pushed_at\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"releases_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"size\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"ssh_url\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"stargazers\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"stargazers_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"stargazers_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"statuses_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"subscribers_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"subscription_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"svn_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"tags_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"teams_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"trees_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"watchers\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"watchers_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct Repository {
@@ -70942,64 +31558,6 @@ pub struct Repository {
pub watchers_count: i64,
}
#[doc = "`RepositoryArchived`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"repository archived event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"archived\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"archived\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"archived\": {"]
-#[doc = " \"description\": \"Whether the repository is archived.\","]
-#[doc = " \"default\": false,"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " true"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryArchived {
@@ -71012,18 +31570,6 @@ pub struct RepositoryArchived {
pub sender: User,
}
#[doc = "`RepositoryArchivedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"archived\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -71071,36 +31617,6 @@ impl ::std::convert::TryFrom<::std::string::String> for RepositoryArchivedAction
}
}
#[doc = "`RepositoryArchivedRepository`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"archived\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"archived\": {"]
-#[doc = " \"description\": \"Whether the repository is archived.\","]
-#[doc = " \"default\": false,"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " true"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryArchivedRepository {
@@ -71217,23 +31733,6 @@ pub struct RepositoryArchivedRepository {
pub watchers_count: i64,
}
#[doc = "`RepositoryArchivedRepositoryCreatedAt`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum RepositoryArchivedRepositoryCreatedAt {
@@ -71287,38 +31786,6 @@ impl ::std::convert::From<::chrono::DateTime<::chrono::offset::Utc>>
}
}
#[doc = "`RepositoryArchivedRepositoryPermissions`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"admin\","]
-#[doc = " \"pull\","]
-#[doc = " \"push\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"admin\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"maintain\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"pull\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"push\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"triage\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryArchivedRepositoryPermissions {
@@ -71331,26 +31798,6 @@ pub struct RepositoryArchivedRepositoryPermissions {
pub triage: ::std::option::Option,
}
#[doc = "`RepositoryArchivedRepositoryPushedAt`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum RepositoryArchivedRepositoryPushedAt {
@@ -71371,43 +31818,6 @@ impl ::std::convert::From<::chrono::DateTime<::chrono::offset::Utc>>
}
}
#[doc = "`RepositoryCreated`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"repository created event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryCreated {
@@ -71420,18 +31830,6 @@ pub struct RepositoryCreated {
pub sender: User,
}
#[doc = "`RepositoryCreatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -71479,23 +31877,6 @@ impl ::std::convert::TryFrom<::std::string::String> for RepositoryCreatedAction
}
}
#[doc = "`RepositoryCreatedAt`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum RepositoryCreatedAt {
@@ -71547,43 +31928,6 @@ impl ::std::convert::From<::chrono::DateTime<::chrono::offset::Utc>> for Reposit
}
}
#[doc = "`RepositoryDeleted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"repository deleted event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryDeleted {
@@ -71596,18 +31940,6 @@ pub struct RepositoryDeleted {
pub sender: User,
}
#[doc = "`RepositoryDeletedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -71655,19 +31987,6 @@ impl ::std::convert::TryFrom<::std::string::String> for RepositoryDeletedAction
}
}
#[doc = "`RepositoryDispatchEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository_dispatch$on-demand-test\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(transparent)]
pub struct RepositoryDispatchEvent(pub RepositoryDispatchOnDemandTest);
@@ -71688,53 +32007,6 @@ impl ::std::convert::From for RepositoryDispatch
}
}
#[doc = "`RepositoryDispatchOnDemandTest`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"repository_dispatch on-demand-test event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"branch\","]
-#[doc = " \"client_payload\","]
-#[doc = " \"installation\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"on-demand-test\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"branch\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"client_payload\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"additionalProperties\": true"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryDispatchOnDemandTest {
@@ -71748,18 +32020,6 @@ pub struct RepositoryDispatchOnDemandTest {
pub sender: User,
}
#[doc = "`RepositoryDispatchOnDemandTestAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"on-demand-test\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -71807,92 +32067,6 @@ impl ::std::convert::TryFrom<::std::string::String> for RepositoryDispatchOnDema
}
}
#[doc = "`RepositoryEdited`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"repository edited event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"default_branch\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"homepage\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryEdited {
@@ -71906,18 +32080,6 @@ pub struct RepositoryEdited {
pub sender: User,
}
#[doc = "`RepositoryEditedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -71965,60 +32127,6 @@ impl ::std::convert::TryFrom<::std::string::String> for RepositoryEditedAction {
}
}
#[doc = "`RepositoryEditedChanges`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"default_branch\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"homepage\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct RepositoryEditedChanges {
@@ -72030,121 +32138,24 @@ pub struct RepositoryEditedChanges {
pub homepage: ::std::option::Option,
}
#[doc = "`RepositoryEditedChangesDefaultBranch`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryEditedChangesDefaultBranch {
pub from: ::std::string::String,
}
#[doc = "`RepositoryEditedChangesDescription`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryEditedChangesDescription {
pub from: ::std::option::Option<::std::string::String>,
}
#[doc = "`RepositoryEditedChangesHomepage`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryEditedChangesHomepage {
pub from: ::std::option::Option<::std::string::String>,
}
#[doc = "`RepositoryEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository$archived\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository$created\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository$deleted\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository$edited\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository$privatized\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository$publicized\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository$renamed\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository$transferred\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository$unarchived\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum RepositoryEvent {
@@ -72204,45 +32215,6 @@ impl ::std::convert::From for RepositoryEvent {
}
}
#[doc = "`RepositoryImportEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"repository_import event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"repository\","]
-#[doc = " \"sender\","]
-#[doc = " \"status\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"failure\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryImportEvent {
@@ -72255,20 +32227,6 @@ pub struct RepositoryImportEvent {
pub status: RepositoryImportEventStatus,
}
#[doc = "`RepositoryImportEventStatus`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"failure\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -72324,250 +32282,6 @@ impl ::std::convert::TryFrom<::std::string::String> for RepositoryImportEventSta
}
}
#[doc = "`RepositoryLite`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Repository Lite\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"archive_url\","]
-#[doc = " \"assignees_url\","]
-#[doc = " \"blobs_url\","]
-#[doc = " \"branches_url\","]
-#[doc = " \"collaborators_url\","]
-#[doc = " \"comments_url\","]
-#[doc = " \"commits_url\","]
-#[doc = " \"compare_url\","]
-#[doc = " \"contents_url\","]
-#[doc = " \"contributors_url\","]
-#[doc = " \"deployments_url\","]
-#[doc = " \"description\","]
-#[doc = " \"downloads_url\","]
-#[doc = " \"events_url\","]
-#[doc = " \"fork\","]
-#[doc = " \"forks_url\","]
-#[doc = " \"full_name\","]
-#[doc = " \"git_commits_url\","]
-#[doc = " \"git_refs_url\","]
-#[doc = " \"git_tags_url\","]
-#[doc = " \"hooks_url\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"issue_comment_url\","]
-#[doc = " \"issue_events_url\","]
-#[doc = " \"issues_url\","]
-#[doc = " \"keys_url\","]
-#[doc = " \"labels_url\","]
-#[doc = " \"languages_url\","]
-#[doc = " \"merges_url\","]
-#[doc = " \"milestones_url\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"notifications_url\","]
-#[doc = " \"owner\","]
-#[doc = " \"private\","]
-#[doc = " \"pulls_url\","]
-#[doc = " \"releases_url\","]
-#[doc = " \"stargazers_url\","]
-#[doc = " \"statuses_url\","]
-#[doc = " \"subscribers_url\","]
-#[doc = " \"subscription_url\","]
-#[doc = " \"tags_url\","]
-#[doc = " \"teams_url\","]
-#[doc = " \"trees_url\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"archive_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"assignees_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"blobs_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"branches_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"collaborators_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"comments_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"commits_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"compare_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"contents_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"contributors_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"deployments_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"downloads_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"fork\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"forks_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"full_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"git_commits_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"git_refs_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"git_tags_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"hooks_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the repository\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"issue_comment_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"issue_events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"issues_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"keys_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"labels_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"languages_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"merges_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"milestones_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"The name of the repository.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"notifications_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"owner\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"private\": {"]
-#[doc = " \"description\": \"Whether the repository is private or public.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"pulls_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"releases_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"stargazers_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"statuses_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"subscribers_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"subscription_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"tags_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"teams_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"trees_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryLite {
@@ -72622,38 +32336,6 @@ pub struct RepositoryLite {
pub url: ::std::string::String,
}
#[doc = "`RepositoryPermissions`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"admin\","]
-#[doc = " \"pull\","]
-#[doc = " \"push\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"admin\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"maintain\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"pull\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"push\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"triage\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryPermissions {
@@ -72666,63 +32348,6 @@ pub struct RepositoryPermissions {
pub triage: ::std::option::Option,
}
#[doc = "`RepositoryPrivatized`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"repository privatized event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"privatized\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"private\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"private\": {"]
-#[doc = " \"description\": \"Whether the repository is private or public.\","]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " true"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryPrivatized {
@@ -72735,18 +32360,6 @@ pub struct RepositoryPrivatized {
pub sender: User,
}
#[doc = "`RepositoryPrivatizedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"privatized\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -72794,35 +32407,6 @@ impl ::std::convert::TryFrom<::std::string::String> for RepositoryPrivatizedActi
}
}
#[doc = "`RepositoryPrivatizedRepository`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"private\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"private\": {"]
-#[doc = " \"description\": \"Whether the repository is private or public.\","]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " true"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryPrivatizedRepository {
@@ -72939,23 +32523,6 @@ pub struct RepositoryPrivatizedRepository {
pub watchers_count: i64,
}
#[doc = "`RepositoryPrivatizedRepositoryCreatedAt`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum RepositoryPrivatizedRepositoryCreatedAt {
@@ -73009,38 +32576,6 @@ impl ::std::convert::From<::chrono::DateTime<::chrono::offset::Utc>>
}
}
#[doc = "`RepositoryPrivatizedRepositoryPermissions`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"admin\","]
-#[doc = " \"pull\","]
-#[doc = " \"push\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"admin\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"maintain\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"pull\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"push\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"triage\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryPrivatizedRepositoryPermissions {
@@ -73053,26 +32588,6 @@ pub struct RepositoryPrivatizedRepositoryPermissions {
pub triage: ::std::option::Option,
}
#[doc = "`RepositoryPrivatizedRepositoryPushedAt`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum RepositoryPrivatizedRepositoryPushedAt {
@@ -73093,63 +32608,6 @@ impl ::std::convert::From<::chrono::DateTime<::chrono::offset::Utc>>
}
}
#[doc = "`RepositoryPublicized`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"repository publicized event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"publicized\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"private\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"private\": {"]
-#[doc = " \"description\": \"Whether the repository is private or public.\","]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " false"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryPublicized {
@@ -73162,18 +32620,6 @@ pub struct RepositoryPublicized {
pub sender: User,
}
#[doc = "`RepositoryPublicizedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"publicized\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -73221,35 +32667,6 @@ impl ::std::convert::TryFrom<::std::string::String> for RepositoryPublicizedActi
}
}
#[doc = "`RepositoryPublicizedRepository`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"private\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"private\": {"]
-#[doc = " \"description\": \"Whether the repository is private or public.\","]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " false"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryPublicizedRepository {
@@ -73366,23 +32783,6 @@ pub struct RepositoryPublicizedRepository {
pub watchers_count: i64,
}
#[doc = "`RepositoryPublicizedRepositoryCreatedAt`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum RepositoryPublicizedRepositoryCreatedAt {
@@ -73436,38 +32836,6 @@ impl ::std::convert::From<::chrono::DateTime<::chrono::offset::Utc>>
}
}
#[doc = "`RepositoryPublicizedRepositoryPermissions`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"admin\","]
-#[doc = " \"pull\","]
-#[doc = " \"push\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"admin\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"maintain\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"pull\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"push\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"triage\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryPublicizedRepositoryPermissions {
@@ -73480,26 +32848,6 @@ pub struct RepositoryPublicizedRepositoryPermissions {
pub triage: ::std::option::Option,
}
#[doc = "`RepositoryPublicizedRepositoryPushedAt`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum RepositoryPublicizedRepositoryPushedAt {
@@ -73520,26 +32868,6 @@ impl ::std::convert::From<::chrono::DateTime<::chrono::offset::Utc>>
}
}
#[doc = "`RepositoryPushedAt`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum RepositoryPushedAt {
@@ -73558,74 +32886,6 @@ impl ::std::convert::From<::chrono::DateTime<::chrono::offset::Utc>> for Reposit
}
}
#[doc = "`RepositoryRenamed`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"repository renamed event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"renamed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"repository\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"repository\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryRenamed {
@@ -73639,18 +32899,6 @@ pub struct RepositoryRenamed {
pub sender: User,
}
#[doc = "`RepositoryRenamedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"renamed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -73698,170 +32946,24 @@ impl ::std::convert::TryFrom<::std::string::String> for RepositoryRenamedAction
}
}
#[doc = "`RepositoryRenamedChanges`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"repository\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"repository\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryRenamedChanges {
pub repository: RepositoryRenamedChangesRepository,
}
#[doc = "`RepositoryRenamedChangesRepository`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryRenamedChangesRepository {
pub name: RepositoryRenamedChangesRepositoryName,
}
#[doc = "`RepositoryRenamedChangesRepositoryName`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryRenamedChangesRepositoryName {
pub from: ::std::string::String,
}
#[doc = "`RepositoryTransferred`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"repository transferred event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"transferred\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"owner\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"owner\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryTransferred {
@@ -73875,18 +32977,6 @@ pub struct RepositoryTransferred {
pub sender: User,
}
#[doc = "`RepositoryTransferredAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"transferred\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -73934,90 +33024,18 @@ impl ::std::convert::TryFrom<::std::string::String> for RepositoryTransferredAct
}
}
#[doc = "`RepositoryTransferredChanges`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"owner\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"owner\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryTransferredChanges {
pub owner: RepositoryTransferredChangesOwner,
}
#[doc = "`RepositoryTransferredChangesOwner`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryTransferredChangesOwner {
pub from: RepositoryTransferredChangesOwnerFrom,
}
#[doc = "`RepositoryTransferredChangesOwnerFrom`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct RepositoryTransferredChangesOwnerFrom {
@@ -74025,64 +33043,6 @@ pub struct RepositoryTransferredChangesOwnerFrom {
pub user: ::std::option::Option,
}
#[doc = "`RepositoryUnarchived`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"repository unarchived event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unarchived\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"archived\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"archived\": {"]
-#[doc = " \"description\": \"Whether the repository is archived.\","]
-#[doc = " \"default\": false,"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " false"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryUnarchived {
@@ -74095,18 +33055,6 @@ pub struct RepositoryUnarchived {
pub sender: User,
}
#[doc = "`RepositoryUnarchivedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"unarchived\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -74154,36 +33102,6 @@ impl ::std::convert::TryFrom<::std::string::String> for RepositoryUnarchivedActi
}
}
#[doc = "`RepositoryUnarchivedRepository`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"archived\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"archived\": {"]
-#[doc = " \"description\": \"Whether the repository is archived.\","]
-#[doc = " \"default\": false,"]
-#[doc = " \"type\": \"boolean\","]
-#[doc = " \"enum\": ["]
-#[doc = " false"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryUnarchivedRepository {
@@ -74300,23 +33218,6 @@ pub struct RepositoryUnarchivedRepository {
pub watchers_count: i64,
}
#[doc = "`RepositoryUnarchivedRepositoryCreatedAt`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum RepositoryUnarchivedRepositoryCreatedAt {
@@ -74370,38 +33271,6 @@ impl ::std::convert::From<::chrono::DateTime<::chrono::offset::Utc>>
}
}
#[doc = "`RepositoryUnarchivedRepositoryPermissions`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"admin\","]
-#[doc = " \"pull\","]
-#[doc = " \"push\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"admin\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"maintain\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"pull\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"push\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"triage\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryUnarchivedRepositoryPermissions {
@@ -74414,26 +33283,6 @@ pub struct RepositoryUnarchivedRepositoryPermissions {
pub triage: ::std::option::Option,
}
#[doc = "`RepositoryUnarchivedRepositoryPushedAt`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum RepositoryUnarchivedRepositoryPushedAt {
@@ -74454,93 +33303,6 @@ impl ::std::convert::From<::chrono::DateTime<::chrono::offset::Utc>>
}
}
#[doc = "`RepositoryVulnerabilityAlertCreate`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"repository_vulnerability_alert create event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"alert\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"create\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"alert\": {"]
-#[doc = " \"description\": \"The security alert of the vulnerable dependency.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"affected_package_name\","]
-#[doc = " \"affected_range\","]
-#[doc = " \"external_identifier\","]
-#[doc = " \"external_reference\","]
-#[doc = " \"fixed_in\","]
-#[doc = " \"id\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"affected_package_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"affected_range\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"dismiss_reason\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"dismissed_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"dismisser\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"external_identifier\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"external_reference\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"fixed_in\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ghsa_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryVulnerabilityAlertCreate {
@@ -74552,18 +33314,6 @@ pub struct RepositoryVulnerabilityAlertCreate {
pub sender: User,
}
#[doc = "`RepositoryVulnerabilityAlertCreateAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"create\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -74611,64 +33361,6 @@ impl ::std::convert::TryFrom<::std::string::String> for RepositoryVulnerabilityA
}
}
#[doc = "The security alert of the vulnerable dependency."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The security alert of the vulnerable dependency.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"affected_package_name\","]
-#[doc = " \"affected_range\","]
-#[doc = " \"external_identifier\","]
-#[doc = " \"external_reference\","]
-#[doc = " \"fixed_in\","]
-#[doc = " \"id\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"affected_package_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"affected_range\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"dismiss_reason\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"dismissed_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"dismisser\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"external_identifier\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"external_reference\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"fixed_in\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ghsa_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryVulnerabilityAlertCreateAlert {
@@ -74692,96 +33384,6 @@ pub struct RepositoryVulnerabilityAlertCreateAlert {
pub severity: ::std::option::Option<::std::string::String>,
}
#[doc = "`RepositoryVulnerabilityAlertDismiss`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"repository_vulnerability_alert dismiss event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"alert\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"dismiss\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"alert\": {"]
-#[doc = " \"description\": \"The security alert of the vulnerable dependency.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"affected_package_name\","]
-#[doc = " \"affected_range\","]
-#[doc = " \"dismiss_reason\","]
-#[doc = " \"dismissed_at\","]
-#[doc = " \"dismisser\","]
-#[doc = " \"external_identifier\","]
-#[doc = " \"external_reference\","]
-#[doc = " \"fixed_in\","]
-#[doc = " \"id\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"affected_package_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"affected_range\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"dismiss_reason\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"dismissed_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"dismisser\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"external_identifier\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"external_reference\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"fixed_in\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ghsa_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryVulnerabilityAlertDismiss {
@@ -74793,18 +33395,6 @@ pub struct RepositoryVulnerabilityAlertDismiss {
pub sender: User,
}
#[doc = "`RepositoryVulnerabilityAlertDismissAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"dismiss\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -74852,67 +33442,6 @@ impl ::std::convert::TryFrom<::std::string::String> for RepositoryVulnerabilityA
}
}
#[doc = "The security alert of the vulnerable dependency."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The security alert of the vulnerable dependency.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"affected_package_name\","]
-#[doc = " \"affected_range\","]
-#[doc = " \"dismiss_reason\","]
-#[doc = " \"dismissed_at\","]
-#[doc = " \"dismisser\","]
-#[doc = " \"external_identifier\","]
-#[doc = " \"external_reference\","]
-#[doc = " \"fixed_in\","]
-#[doc = " \"id\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"affected_package_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"affected_range\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"dismiss_reason\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"dismissed_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"dismisser\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"external_identifier\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"external_reference\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"fixed_in\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ghsa_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryVulnerabilityAlertDismissAlert {
@@ -74933,25 +33462,6 @@ pub struct RepositoryVulnerabilityAlertDismissAlert {
pub severity: ::std::option::Option<::std::string::String>,
}
#[doc = "`RepositoryVulnerabilityAlertEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository_vulnerability_alert$create\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository_vulnerability_alert$dismiss\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/repository_vulnerability_alert$resolve\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum RepositoryVulnerabilityAlertEvent {
@@ -74981,93 +33491,6 @@ impl ::std::convert::From
}
}
#[doc = "`RepositoryVulnerabilityAlertResolve`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"repository_vulnerability_alert resolve event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"alert\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolve\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"alert\": {"]
-#[doc = " \"description\": \"The security alert of the vulnerable dependency.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"affected_package_name\","]
-#[doc = " \"affected_range\","]
-#[doc = " \"external_identifier\","]
-#[doc = " \"external_reference\","]
-#[doc = " \"fixed_in\","]
-#[doc = " \"id\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"affected_package_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"affected_range\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"dismiss_reason\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"dismissed_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"dismisser\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"external_identifier\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"external_reference\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"fixed_in\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ghsa_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryVulnerabilityAlertResolve {
@@ -75079,18 +33502,6 @@ pub struct RepositoryVulnerabilityAlertResolve {
pub sender: User,
}
#[doc = "`RepositoryVulnerabilityAlertResolveAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolve\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -75138,64 +33549,6 @@ impl ::std::convert::TryFrom<::std::string::String> for RepositoryVulnerabilityA
}
}
#[doc = "The security alert of the vulnerable dependency."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The security alert of the vulnerable dependency.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"affected_package_name\","]
-#[doc = " \"affected_range\","]
-#[doc = " \"external_identifier\","]
-#[doc = " \"external_reference\","]
-#[doc = " \"fixed_in\","]
-#[doc = " \"id\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"affected_package_name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"affected_range\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"dismiss_reason\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"dismissed_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"dismisser\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"external_identifier\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"external_reference\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"fixed_in\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ghsa_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct RepositoryVulnerabilityAlertResolveAlert {
@@ -75219,69 +33572,6 @@ pub struct RepositoryVulnerabilityAlertResolveAlert {
pub severity: ::std::option::Option<::std::string::String>,
}
#[doc = "`SecretScanningAlertCreated`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"secret_scanning_alert created event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"alert\","]
-#[doc = " \"repository\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"alert\": {"]
-#[doc = " \"description\": \"The secret scanning alert involved in the event.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"number\","]
-#[doc = " \"resolution\","]
-#[doc = " \"resolved_at\","]
-#[doc = " \"resolved_by\","]
-#[doc = " \"secret_type\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"number\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"resolution\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"resolved_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"resolved_by\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"secret_type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecretScanningAlertCreated {
@@ -75294,18 +33584,6 @@ pub struct SecretScanningAlertCreated {
pub repository: Repository,
}
#[doc = "`SecretScanningAlertCreatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -75353,41 +33631,6 @@ impl ::std::convert::TryFrom<::std::string::String> for SecretScanningAlertCreat
}
}
#[doc = "The secret scanning alert involved in the event."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The secret scanning alert involved in the event.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"number\","]
-#[doc = " \"resolution\","]
-#[doc = " \"resolved_at\","]
-#[doc = " \"resolved_by\","]
-#[doc = " \"secret_type\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"number\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"resolution\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"resolved_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"resolved_by\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"secret_type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecretScanningAlertCreatedAlert {
@@ -75398,25 +33641,6 @@ pub struct SecretScanningAlertCreatedAlert {
pub secret_type: ::std::string::String,
}
#[doc = "`SecretScanningAlertEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/secret_scanning_alert$created\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/secret_scanning_alert$reopened\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/secret_scanning_alert$resolved\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum SecretScanningAlertEvent {
@@ -75440,73 +33664,6 @@ impl ::std::convert::From for SecretScanningAlertEv
}
}
#[doc = "`SecretScanningAlertReopened`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"secret_scanning_alert reopened event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"alert\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"reopened\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"alert\": {"]
-#[doc = " \"description\": \"The secret scanning alert involved in the event.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"number\","]
-#[doc = " \"resolution\","]
-#[doc = " \"resolved_at\","]
-#[doc = " \"resolved_by\","]
-#[doc = " \"secret_type\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"number\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"resolution\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"resolved_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"resolved_by\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"secret_type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecretScanningAlertReopened {
@@ -75520,18 +33677,6 @@ pub struct SecretScanningAlertReopened {
pub sender: User,
}
#[doc = "`SecretScanningAlertReopenedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"reopened\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -75579,41 +33724,6 @@ impl ::std::convert::TryFrom<::std::string::String> for SecretScanningAlertReope
}
}
#[doc = "The secret scanning alert involved in the event."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The secret scanning alert involved in the event.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"number\","]
-#[doc = " \"resolution\","]
-#[doc = " \"resolved_at\","]
-#[doc = " \"resolved_by\","]
-#[doc = " \"secret_type\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"number\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"resolution\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"resolved_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"resolved_by\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"secret_type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecretScanningAlertReopenedAlert {
@@ -75624,79 +33734,6 @@ pub struct SecretScanningAlertReopenedAlert {
pub secret_type: ::std::string::String,
}
#[doc = "`SecretScanningAlertResolved`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"secret_scanning_alert resolved event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"alert\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"alert\": {"]
-#[doc = " \"description\": \"The secret scanning alert involved in the event.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"number\","]
-#[doc = " \"resolution\","]
-#[doc = " \"resolved_at\","]
-#[doc = " \"resolved_by\","]
-#[doc = " \"secret_type\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"number\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"resolution\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"false_positive\","]
-#[doc = " \"wontfix\","]
-#[doc = " \"revoked\","]
-#[doc = " \"used_in_tests\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"resolved_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"resolved_by\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"secret_type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecretScanningAlertResolved {
@@ -75710,18 +33747,6 @@ pub struct SecretScanningAlertResolved {
pub sender: User,
}
#[doc = "`SecretScanningAlertResolvedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -75769,47 +33794,6 @@ impl ::std::convert::TryFrom<::std::string::String> for SecretScanningAlertResol
}
}
#[doc = "The secret scanning alert involved in the event."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The secret scanning alert involved in the event.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"number\","]
-#[doc = " \"resolution\","]
-#[doc = " \"resolved_at\","]
-#[doc = " \"resolved_by\","]
-#[doc = " \"secret_type\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"number\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"resolution\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"false_positive\","]
-#[doc = " \"wontfix\","]
-#[doc = " \"revoked\","]
-#[doc = " \"used_in_tests\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"resolved_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"resolved_by\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"secret_type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecretScanningAlertResolvedAlert {
@@ -75820,21 +33804,6 @@ pub struct SecretScanningAlertResolvedAlert {
pub secret_type: ::std::string::String,
}
#[doc = "`SecretScanningAlertResolvedAlertResolution`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"false_positive\","]
-#[doc = " \"wontfix\","]
-#[doc = " \"revoked\","]
-#[doc = " \"used_in_tests\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -75894,28 +33863,6 @@ impl ::std::convert::TryFrom<::std::string::String> for SecretScanningAlertResol
}
}
#[doc = "`SecurityAdvisoryEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/security_advisory$performed\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/security_advisory$published\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/security_advisory$updated\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/security_advisory$withdrawn\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum SecurityAdvisoryEvent {
@@ -75945,200 +33892,6 @@ impl ::std::convert::From for SecurityAdvisoryEvent {
}
}
#[doc = "`SecurityAdvisoryPerformed`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"security_advisory performed event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"security_advisory\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"performed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"security_advisory\": {"]
-#[doc = " \"description\": \"The details of the security advisory, including summary, description, and severity.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"cvss\","]
-#[doc = " \"cwes\","]
-#[doc = " \"description\","]
-#[doc = " \"ghsa_id\","]
-#[doc = " \"identifiers\","]
-#[doc = " \"published_at\","]
-#[doc = " \"references\","]
-#[doc = " \"severity\","]
-#[doc = " \"summary\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"vulnerabilities\","]
-#[doc = " \"withdrawn_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"cvss\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"score\","]
-#[doc = " \"vector_string\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"score\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"vector_string\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"cwes\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"cwe_id\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"cwe_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ghsa_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"identifiers\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"type\","]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"published_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"references\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"vulnerabilities\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"first_patched_version\","]
-#[doc = " \"package\","]
-#[doc = " \"severity\","]
-#[doc = " \"vulnerable_version_range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"first_patched_version\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"object\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"required\": ["]
-#[doc = " \"identifier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"identifier\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"package\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ecosystem\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ecosystem\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"vulnerable_version_range\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"withdrawn_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryPerformed {
@@ -76146,18 +33899,6 @@ pub struct SecurityAdvisoryPerformed {
pub security_advisory: SecurityAdvisoryPerformedSecurityAdvisory,
}
#[doc = "`SecurityAdvisoryPerformedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"performed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -76205,182 +33946,6 @@ impl ::std::convert::TryFrom<::std::string::String> for SecurityAdvisoryPerforme
}
}
#[doc = "The details of the security advisory, including summary, description, and severity."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The details of the security advisory, including summary, description, and severity.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"cvss\","]
-#[doc = " \"cwes\","]
-#[doc = " \"description\","]
-#[doc = " \"ghsa_id\","]
-#[doc = " \"identifiers\","]
-#[doc = " \"published_at\","]
-#[doc = " \"references\","]
-#[doc = " \"severity\","]
-#[doc = " \"summary\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"vulnerabilities\","]
-#[doc = " \"withdrawn_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"cvss\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"score\","]
-#[doc = " \"vector_string\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"score\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"vector_string\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"cwes\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"cwe_id\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"cwe_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ghsa_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"identifiers\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"type\","]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"published_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"references\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"vulnerabilities\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"first_patched_version\","]
-#[doc = " \"package\","]
-#[doc = " \"severity\","]
-#[doc = " \"vulnerable_version_range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"first_patched_version\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"object\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"required\": ["]
-#[doc = " \"identifier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"identifier\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"package\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ecosystem\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ecosystem\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"vulnerable_version_range\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"withdrawn_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryPerformedSecurityAdvisory {
@@ -76399,31 +33964,6 @@ pub struct SecurityAdvisoryPerformedSecurityAdvisory {
pub withdrawn_at: ::std::option::Option<::std::string::String>,
}
#[doc = "`SecurityAdvisoryPerformedSecurityAdvisoryCvss`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"score\","]
-#[doc = " \"vector_string\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"score\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"vector_string\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryPerformedSecurityAdvisoryCvss {
@@ -76431,28 +33971,6 @@ pub struct SecurityAdvisoryPerformedSecurityAdvisoryCvss {
pub vector_string: ::std::option::Option<::std::string::String>,
}
#[doc = "`SecurityAdvisoryPerformedSecurityAdvisoryCwesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"cwe_id\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"cwe_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryPerformedSecurityAdvisoryCwesItem {
@@ -76460,28 +33978,6 @@ pub struct SecurityAdvisoryPerformedSecurityAdvisoryCwesItem {
pub name: ::std::string::String,
}
#[doc = "`SecurityAdvisoryPerformedSecurityAdvisoryIdentifiersItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"type\","]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryPerformedSecurityAdvisoryIdentifiersItem {
@@ -76490,86 +33986,12 @@ pub struct SecurityAdvisoryPerformedSecurityAdvisoryIdentifiersItem {
pub value: ::std::string::String,
}
#[doc = "`SecurityAdvisoryPerformedSecurityAdvisoryReferencesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryPerformedSecurityAdvisoryReferencesItem {
pub url: ::std::string::String,
}
#[doc = "`SecurityAdvisoryPerformedSecurityAdvisoryVulnerabilitiesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"first_patched_version\","]
-#[doc = " \"package\","]
-#[doc = " \"severity\","]
-#[doc = " \"vulnerable_version_range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"first_patched_version\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"object\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"required\": ["]
-#[doc = " \"identifier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"identifier\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"package\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ecosystem\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ecosystem\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"vulnerable_version_range\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryPerformedSecurityAdvisoryVulnerabilitiesItem {
@@ -76581,52 +34003,12 @@ pub struct SecurityAdvisoryPerformedSecurityAdvisoryVulnerabilitiesItem {
pub vulnerable_version_range: ::std::string::String,
}
#[doc = "`SecurityAdvisoryPerformedSecurityAdvisoryVulnerabilitiesItemFirstPatchedVersion`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"identifier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"identifier\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryPerformedSecurityAdvisoryVulnerabilitiesItemFirstPatchedVersion {
pub identifier: ::std::string::String,
}
#[doc = "`SecurityAdvisoryPerformedSecurityAdvisoryVulnerabilitiesItemPackage`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ecosystem\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ecosystem\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryPerformedSecurityAdvisoryVulnerabilitiesItemPackage {
@@ -76634,200 +34016,6 @@ pub struct SecurityAdvisoryPerformedSecurityAdvisoryVulnerabilitiesItemPackage {
pub name: ::std::string::String,
}
#[doc = "`SecurityAdvisoryPublished`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"security_advisory published event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"security_advisory\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"published\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"security_advisory\": {"]
-#[doc = " \"description\": \"The details of the security advisory, including summary, description, and severity.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"cvss\","]
-#[doc = " \"cwes\","]
-#[doc = " \"description\","]
-#[doc = " \"ghsa_id\","]
-#[doc = " \"identifiers\","]
-#[doc = " \"published_at\","]
-#[doc = " \"references\","]
-#[doc = " \"severity\","]
-#[doc = " \"summary\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"vulnerabilities\","]
-#[doc = " \"withdrawn_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"cvss\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"score\","]
-#[doc = " \"vector_string\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"score\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"vector_string\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"cwes\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"cwe_id\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"cwe_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ghsa_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"identifiers\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"type\","]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"published_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"references\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"vulnerabilities\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"first_patched_version\","]
-#[doc = " \"package\","]
-#[doc = " \"severity\","]
-#[doc = " \"vulnerable_version_range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"first_patched_version\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"object\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"required\": ["]
-#[doc = " \"identifier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"identifier\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"package\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ecosystem\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ecosystem\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"vulnerable_version_range\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"withdrawn_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryPublished {
@@ -76835,18 +34023,6 @@ pub struct SecurityAdvisoryPublished {
pub security_advisory: SecurityAdvisoryPublishedSecurityAdvisory,
}
#[doc = "`SecurityAdvisoryPublishedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"published\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -76894,182 +34070,6 @@ impl ::std::convert::TryFrom<::std::string::String> for SecurityAdvisoryPublishe
}
}
#[doc = "The details of the security advisory, including summary, description, and severity."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The details of the security advisory, including summary, description, and severity.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"cvss\","]
-#[doc = " \"cwes\","]
-#[doc = " \"description\","]
-#[doc = " \"ghsa_id\","]
-#[doc = " \"identifiers\","]
-#[doc = " \"published_at\","]
-#[doc = " \"references\","]
-#[doc = " \"severity\","]
-#[doc = " \"summary\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"vulnerabilities\","]
-#[doc = " \"withdrawn_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"cvss\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"score\","]
-#[doc = " \"vector_string\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"score\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"vector_string\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"cwes\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"cwe_id\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"cwe_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ghsa_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"identifiers\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"type\","]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"published_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"references\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"vulnerabilities\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"first_patched_version\","]
-#[doc = " \"package\","]
-#[doc = " \"severity\","]
-#[doc = " \"vulnerable_version_range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"first_patched_version\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"object\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"required\": ["]
-#[doc = " \"identifier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"identifier\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"package\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ecosystem\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ecosystem\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"vulnerable_version_range\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"withdrawn_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryPublishedSecurityAdvisory {
@@ -77088,31 +34088,6 @@ pub struct SecurityAdvisoryPublishedSecurityAdvisory {
pub withdrawn_at: ::std::option::Option<::std::string::String>,
}
#[doc = "`SecurityAdvisoryPublishedSecurityAdvisoryCvss`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"score\","]
-#[doc = " \"vector_string\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"score\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"vector_string\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryPublishedSecurityAdvisoryCvss {
@@ -77120,28 +34095,6 @@ pub struct SecurityAdvisoryPublishedSecurityAdvisoryCvss {
pub vector_string: ::std::option::Option<::std::string::String>,
}
#[doc = "`SecurityAdvisoryPublishedSecurityAdvisoryCwesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"cwe_id\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"cwe_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryPublishedSecurityAdvisoryCwesItem {
@@ -77149,28 +34102,6 @@ pub struct SecurityAdvisoryPublishedSecurityAdvisoryCwesItem {
pub name: ::std::string::String,
}
#[doc = "`SecurityAdvisoryPublishedSecurityAdvisoryIdentifiersItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"type\","]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryPublishedSecurityAdvisoryIdentifiersItem {
@@ -77179,86 +34110,12 @@ pub struct SecurityAdvisoryPublishedSecurityAdvisoryIdentifiersItem {
pub value: ::std::string::String,
}
#[doc = "`SecurityAdvisoryPublishedSecurityAdvisoryReferencesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryPublishedSecurityAdvisoryReferencesItem {
pub url: ::std::string::String,
}
#[doc = "`SecurityAdvisoryPublishedSecurityAdvisoryVulnerabilitiesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"first_patched_version\","]
-#[doc = " \"package\","]
-#[doc = " \"severity\","]
-#[doc = " \"vulnerable_version_range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"first_patched_version\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"object\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"required\": ["]
-#[doc = " \"identifier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"identifier\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"package\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ecosystem\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ecosystem\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"vulnerable_version_range\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryPublishedSecurityAdvisoryVulnerabilitiesItem {
@@ -77270,52 +34127,12 @@ pub struct SecurityAdvisoryPublishedSecurityAdvisoryVulnerabilitiesItem {
pub vulnerable_version_range: ::std::string::String,
}
#[doc = "`SecurityAdvisoryPublishedSecurityAdvisoryVulnerabilitiesItemFirstPatchedVersion`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"identifier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"identifier\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryPublishedSecurityAdvisoryVulnerabilitiesItemFirstPatchedVersion {
pub identifier: ::std::string::String,
}
#[doc = "`SecurityAdvisoryPublishedSecurityAdvisoryVulnerabilitiesItemPackage`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ecosystem\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ecosystem\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryPublishedSecurityAdvisoryVulnerabilitiesItemPackage {
@@ -77323,200 +34140,6 @@ pub struct SecurityAdvisoryPublishedSecurityAdvisoryVulnerabilitiesItemPackage {
pub name: ::std::string::String,
}
#[doc = "`SecurityAdvisoryUpdated`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"security_advisory updated event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"security_advisory\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"updated\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"security_advisory\": {"]
-#[doc = " \"description\": \"The details of the security advisory, including summary, description, and severity.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"cvss\","]
-#[doc = " \"cwes\","]
-#[doc = " \"description\","]
-#[doc = " \"ghsa_id\","]
-#[doc = " \"identifiers\","]
-#[doc = " \"published_at\","]
-#[doc = " \"references\","]
-#[doc = " \"severity\","]
-#[doc = " \"summary\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"vulnerabilities\","]
-#[doc = " \"withdrawn_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"cvss\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"score\","]
-#[doc = " \"vector_string\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"score\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"vector_string\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"cwes\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"cwe_id\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"cwe_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ghsa_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"identifiers\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"type\","]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"published_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"references\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"vulnerabilities\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"first_patched_version\","]
-#[doc = " \"package\","]
-#[doc = " \"severity\","]
-#[doc = " \"vulnerable_version_range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"first_patched_version\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"object\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"required\": ["]
-#[doc = " \"identifier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"identifier\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"package\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ecosystem\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ecosystem\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"vulnerable_version_range\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"withdrawn_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryUpdated {
@@ -77524,18 +34147,6 @@ pub struct SecurityAdvisoryUpdated {
pub security_advisory: SecurityAdvisoryUpdatedSecurityAdvisory,
}
#[doc = "`SecurityAdvisoryUpdatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"updated\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -77583,182 +34194,6 @@ impl ::std::convert::TryFrom<::std::string::String> for SecurityAdvisoryUpdatedA
}
}
#[doc = "The details of the security advisory, including summary, description, and severity."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The details of the security advisory, including summary, description, and severity.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"cvss\","]
-#[doc = " \"cwes\","]
-#[doc = " \"description\","]
-#[doc = " \"ghsa_id\","]
-#[doc = " \"identifiers\","]
-#[doc = " \"published_at\","]
-#[doc = " \"references\","]
-#[doc = " \"severity\","]
-#[doc = " \"summary\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"vulnerabilities\","]
-#[doc = " \"withdrawn_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"cvss\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"score\","]
-#[doc = " \"vector_string\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"score\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"vector_string\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"cwes\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"cwe_id\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"cwe_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ghsa_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"identifiers\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"type\","]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"published_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"references\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"vulnerabilities\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"first_patched_version\","]
-#[doc = " \"package\","]
-#[doc = " \"severity\","]
-#[doc = " \"vulnerable_version_range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"first_patched_version\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"object\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"required\": ["]
-#[doc = " \"identifier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"identifier\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"package\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ecosystem\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ecosystem\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"vulnerable_version_range\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"withdrawn_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryUpdatedSecurityAdvisory {
@@ -77777,31 +34212,6 @@ pub struct SecurityAdvisoryUpdatedSecurityAdvisory {
pub withdrawn_at: ::std::option::Option<::std::string::String>,
}
#[doc = "`SecurityAdvisoryUpdatedSecurityAdvisoryCvss`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"score\","]
-#[doc = " \"vector_string\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"score\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"vector_string\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryUpdatedSecurityAdvisoryCvss {
@@ -77809,28 +34219,6 @@ pub struct SecurityAdvisoryUpdatedSecurityAdvisoryCvss {
pub vector_string: ::std::option::Option<::std::string::String>,
}
#[doc = "`SecurityAdvisoryUpdatedSecurityAdvisoryCwesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"cwe_id\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"cwe_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryUpdatedSecurityAdvisoryCwesItem {
@@ -77838,28 +34226,6 @@ pub struct SecurityAdvisoryUpdatedSecurityAdvisoryCwesItem {
pub name: ::std::string::String,
}
#[doc = "`SecurityAdvisoryUpdatedSecurityAdvisoryIdentifiersItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"type\","]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryUpdatedSecurityAdvisoryIdentifiersItem {
@@ -77868,86 +34234,12 @@ pub struct SecurityAdvisoryUpdatedSecurityAdvisoryIdentifiersItem {
pub value: ::std::string::String,
}
#[doc = "`SecurityAdvisoryUpdatedSecurityAdvisoryReferencesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryUpdatedSecurityAdvisoryReferencesItem {
pub url: ::std::string::String,
}
#[doc = "`SecurityAdvisoryUpdatedSecurityAdvisoryVulnerabilitiesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"first_patched_version\","]
-#[doc = " \"package\","]
-#[doc = " \"severity\","]
-#[doc = " \"vulnerable_version_range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"first_patched_version\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"object\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"required\": ["]
-#[doc = " \"identifier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"identifier\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"package\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ecosystem\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ecosystem\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"vulnerable_version_range\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryUpdatedSecurityAdvisoryVulnerabilitiesItem {
@@ -77959,52 +34251,12 @@ pub struct SecurityAdvisoryUpdatedSecurityAdvisoryVulnerabilitiesItem {
pub vulnerable_version_range: ::std::string::String,
}
#[doc = "`SecurityAdvisoryUpdatedSecurityAdvisoryVulnerabilitiesItemFirstPatchedVersion`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"identifier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"identifier\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryUpdatedSecurityAdvisoryVulnerabilitiesItemFirstPatchedVersion {
pub identifier: ::std::string::String,
}
#[doc = "`SecurityAdvisoryUpdatedSecurityAdvisoryVulnerabilitiesItemPackage`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ecosystem\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ecosystem\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryUpdatedSecurityAdvisoryVulnerabilitiesItemPackage {
@@ -78012,197 +34264,6 @@ pub struct SecurityAdvisoryUpdatedSecurityAdvisoryVulnerabilitiesItemPackage {
pub name: ::std::string::String,
}
#[doc = "`SecurityAdvisoryWithdrawn`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"security_advisory withdrawn event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"security_advisory\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"withdrawn\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"security_advisory\": {"]
-#[doc = " \"description\": \"The details of the security advisory, including summary, description, and severity.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"cvss\","]
-#[doc = " \"cwes\","]
-#[doc = " \"description\","]
-#[doc = " \"ghsa_id\","]
-#[doc = " \"identifiers\","]
-#[doc = " \"published_at\","]
-#[doc = " \"references\","]
-#[doc = " \"severity\","]
-#[doc = " \"summary\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"vulnerabilities\","]
-#[doc = " \"withdrawn_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"cvss\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"score\","]
-#[doc = " \"vector_string\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"score\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"vector_string\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"cwes\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"cwe_id\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"cwe_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ghsa_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"identifiers\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"type\","]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"published_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"references\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"vulnerabilities\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"first_patched_version\","]
-#[doc = " \"package\","]
-#[doc = " \"severity\","]
-#[doc = " \"vulnerable_version_range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"first_patched_version\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"object\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"required\": ["]
-#[doc = " \"identifier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"identifier\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"package\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ecosystem\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ecosystem\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"vulnerable_version_range\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"withdrawn_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryWithdrawn {
@@ -78210,18 +34271,6 @@ pub struct SecurityAdvisoryWithdrawn {
pub security_advisory: SecurityAdvisoryWithdrawnSecurityAdvisory,
}
#[doc = "`SecurityAdvisoryWithdrawnAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"withdrawn\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -78269,179 +34318,6 @@ impl ::std::convert::TryFrom<::std::string::String> for SecurityAdvisoryWithdraw
}
}
#[doc = "The details of the security advisory, including summary, description, and severity."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The details of the security advisory, including summary, description, and severity.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"cvss\","]
-#[doc = " \"cwes\","]
-#[doc = " \"description\","]
-#[doc = " \"ghsa_id\","]
-#[doc = " \"identifiers\","]
-#[doc = " \"published_at\","]
-#[doc = " \"references\","]
-#[doc = " \"severity\","]
-#[doc = " \"summary\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"vulnerabilities\","]
-#[doc = " \"withdrawn_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"cvss\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"score\","]
-#[doc = " \"vector_string\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"score\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"vector_string\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"cwes\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"cwe_id\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"cwe_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ghsa_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"identifiers\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"type\","]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"published_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"references\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"summary\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"vulnerabilities\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"first_patched_version\","]
-#[doc = " \"package\","]
-#[doc = " \"severity\","]
-#[doc = " \"vulnerable_version_range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"first_patched_version\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"object\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"required\": ["]
-#[doc = " \"identifier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"identifier\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"package\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ecosystem\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ecosystem\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"vulnerable_version_range\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"withdrawn_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryWithdrawnSecurityAdvisory {
@@ -78460,31 +34336,6 @@ pub struct SecurityAdvisoryWithdrawnSecurityAdvisory {
pub withdrawn_at: ::std::string::String,
}
#[doc = "`SecurityAdvisoryWithdrawnSecurityAdvisoryCvss`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"score\","]
-#[doc = " \"vector_string\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"score\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"vector_string\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryWithdrawnSecurityAdvisoryCvss {
@@ -78492,28 +34343,6 @@ pub struct SecurityAdvisoryWithdrawnSecurityAdvisoryCvss {
pub vector_string: ::std::option::Option<::std::string::String>,
}
#[doc = "`SecurityAdvisoryWithdrawnSecurityAdvisoryCwesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"cwe_id\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"cwe_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryWithdrawnSecurityAdvisoryCwesItem {
@@ -78521,28 +34350,6 @@ pub struct SecurityAdvisoryWithdrawnSecurityAdvisoryCwesItem {
pub name: ::std::string::String,
}
#[doc = "`SecurityAdvisoryWithdrawnSecurityAdvisoryIdentifiersItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"type\","]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryWithdrawnSecurityAdvisoryIdentifiersItem {
@@ -78551,86 +34358,12 @@ pub struct SecurityAdvisoryWithdrawnSecurityAdvisoryIdentifiersItem {
pub value: ::std::string::String,
}
#[doc = "`SecurityAdvisoryWithdrawnSecurityAdvisoryReferencesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryWithdrawnSecurityAdvisoryReferencesItem {
pub url: ::std::string::String,
}
#[doc = "`SecurityAdvisoryWithdrawnSecurityAdvisoryVulnerabilitiesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"first_patched_version\","]
-#[doc = " \"package\","]
-#[doc = " \"severity\","]
-#[doc = " \"vulnerable_version_range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"first_patched_version\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"object\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"required\": ["]
-#[doc = " \"identifier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"identifier\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"package\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ecosystem\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ecosystem\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"severity\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"vulnerable_version_range\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryWithdrawnSecurityAdvisoryVulnerabilitiesItem {
@@ -78642,52 +34375,12 @@ pub struct SecurityAdvisoryWithdrawnSecurityAdvisoryVulnerabilitiesItem {
pub vulnerable_version_range: ::std::string::String,
}
#[doc = "`SecurityAdvisoryWithdrawnSecurityAdvisoryVulnerabilitiesItemFirstPatchedVersion`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"identifier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"identifier\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryWithdrawnSecurityAdvisoryVulnerabilitiesItemFirstPatchedVersion {
pub identifier: ::std::string::String,
}
#[doc = "`SecurityAdvisoryWithdrawnSecurityAdvisoryVulnerabilitiesItemPackage`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ecosystem\","]
-#[doc = " \"name\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ecosystem\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SecurityAdvisoryWithdrawnSecurityAdvisoryVulnerabilitiesItemPackage {
@@ -78695,319 +34388,6 @@ pub struct SecurityAdvisoryWithdrawnSecurityAdvisoryVulnerabilitiesItemPackage {
pub name: ::std::string::String,
}
#[doc = "`SimplePullRequest`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Simple Pull Request\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"_links\","]
-#[doc = " \"active_lock_reason\","]
-#[doc = " \"assignee\","]
-#[doc = " \"assignees\","]
-#[doc = " \"author_association\","]
-#[doc = " \"auto_merge\","]
-#[doc = " \"base\","]
-#[doc = " \"body\","]
-#[doc = " \"closed_at\","]
-#[doc = " \"comments_url\","]
-#[doc = " \"commits_url\","]
-#[doc = " \"created_at\","]
-#[doc = " \"diff_url\","]
-#[doc = " \"draft\","]
-#[doc = " \"head\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"issue_url\","]
-#[doc = " \"labels\","]
-#[doc = " \"locked\","]
-#[doc = " \"merge_commit_sha\","]
-#[doc = " \"merged_at\","]
-#[doc = " \"milestone\","]
-#[doc = " \"node_id\","]
-#[doc = " \"number\","]
-#[doc = " \"patch_url\","]
-#[doc = " \"requested_reviewers\","]
-#[doc = " \"requested_teams\","]
-#[doc = " \"review_comment_url\","]
-#[doc = " \"review_comments_url\","]
-#[doc = " \"state\","]
-#[doc = " \"statuses_url\","]
-#[doc = " \"title\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"_links\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"comments\","]
-#[doc = " \"commits\","]
-#[doc = " \"html\","]
-#[doc = " \"issue\","]
-#[doc = " \"review_comment\","]
-#[doc = " \"review_comments\","]
-#[doc = " \"self\","]
-#[doc = " \"statuses\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"commits\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comment\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"self\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"statuses\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"active_lock_reason\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"assignee\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"assignees\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"author_association\": {"]
-#[doc = " \"$ref\": \"#/definitions/author_association\""]
-#[doc = " },"]
-#[doc = " \"auto_merge\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"base\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"body\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"closed_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"comments_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"commits_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"diff_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"draft\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"head\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"issue_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"labels\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/label\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"locked\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"merge_commit_sha\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"merged_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"milestone\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/milestone\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"patch_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"requested_reviewers\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"requested_teams\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"review_comment_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"review_comments_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"statuses_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SimplePullRequest {
@@ -79050,21 +34430,6 @@ pub struct SimplePullRequest {
pub user: User,
}
#[doc = "`SimplePullRequestActiveLockReason`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"resolved\","]
-#[doc = " \"off-topic\","]
-#[doc = " \"too heated\","]
-#[doc = " \"spam\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -79124,40 +34489,6 @@ impl ::std::convert::TryFrom<::std::string::String> for SimplePullRequestActiveL
}
}
#[doc = "`SimplePullRequestBase`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SimplePullRequestBase {
@@ -79169,40 +34500,6 @@ pub struct SimplePullRequestBase {
pub user: User,
}
#[doc = "`SimplePullRequestHead`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"label\","]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\","]
-#[doc = " \"user\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"label\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"user\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SimplePullRequestHead {
@@ -79214,52 +34511,6 @@ pub struct SimplePullRequestHead {
pub user: User,
}
#[doc = "`SimplePullRequestLinks`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"comments\","]
-#[doc = " \"commits\","]
-#[doc = " \"html\","]
-#[doc = " \"issue\","]
-#[doc = " \"review_comment\","]
-#[doc = " \"review_comments\","]
-#[doc = " \"self\","]
-#[doc = " \"statuses\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"commits\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"html\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"issue\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comment\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"review_comments\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"self\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " },"]
-#[doc = " \"statuses\": {"]
-#[doc = " \"$ref\": \"#/definitions/link\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SimplePullRequestLinks {
@@ -79274,22 +34525,6 @@ pub struct SimplePullRequestLinks {
pub statuses: Link,
}
#[doc = "`SimplePullRequestRequestedReviewersItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum SimplePullRequestRequestedReviewersItem {
@@ -79307,19 +34542,6 @@ impl ::std::convert::From for SimplePullRequestRequestedReviewersItem {
}
}
#[doc = "`SimplePullRequestState`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -79371,66 +34593,6 @@ impl ::std::convert::TryFrom<::std::string::String> for SimplePullRequestState {
}
}
#[doc = "`SponsorshipCancelled`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"sponsorship cancelled event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"sender\","]
-#[doc = " \"sponsorship\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"cancelled\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"sponsorship\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"node_id\","]
-#[doc = " \"privacy_level\","]
-#[doc = " \"sponsor\","]
-#[doc = " \"sponsorable\","]
-#[doc = " \"tier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"privacy_level\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sponsor\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"sponsorable\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"tier\": {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship-tier\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SponsorshipCancelled {
@@ -79439,18 +34601,6 @@ pub struct SponsorshipCancelled {
pub sponsorship: SponsorshipCancelledSponsorship,
}
#[doc = "`SponsorshipCancelledAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"cancelled\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -79498,44 +34648,6 @@ impl ::std::convert::TryFrom<::std::string::String> for SponsorshipCancelledActi
}
}
#[doc = "`SponsorshipCancelledSponsorship`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"node_id\","]
-#[doc = " \"privacy_level\","]
-#[doc = " \"sponsor\","]
-#[doc = " \"sponsorable\","]
-#[doc = " \"tier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"privacy_level\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sponsor\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"sponsorable\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"tier\": {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship-tier\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SponsorshipCancelledSponsorship {
@@ -79547,66 +34659,6 @@ pub struct SponsorshipCancelledSponsorship {
pub tier: SponsorshipTier,
}
#[doc = "`SponsorshipCreated`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"sponsorship created event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"sender\","]
-#[doc = " \"sponsorship\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"sponsorship\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"node_id\","]
-#[doc = " \"privacy_level\","]
-#[doc = " \"sponsor\","]
-#[doc = " \"sponsorable\","]
-#[doc = " \"tier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"privacy_level\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sponsor\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"sponsorable\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"tier\": {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship-tier\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SponsorshipCreated {
@@ -79615,18 +34667,6 @@ pub struct SponsorshipCreated {
pub sponsorship: SponsorshipCreatedSponsorship,
}
#[doc = "`SponsorshipCreatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -79674,44 +34714,6 @@ impl ::std::convert::TryFrom<::std::string::String> for SponsorshipCreatedAction
}
}
#[doc = "`SponsorshipCreatedSponsorship`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"node_id\","]
-#[doc = " \"privacy_level\","]
-#[doc = " \"sponsor\","]
-#[doc = " \"sponsorable\","]
-#[doc = " \"tier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"privacy_level\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sponsor\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"sponsorable\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"tier\": {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship-tier\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SponsorshipCreatedSponsorship {
@@ -79723,86 +34725,6 @@ pub struct SponsorshipCreatedSponsorship {
pub tier: SponsorshipTier,
}
#[doc = "`SponsorshipEdited`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"sponsorship edited event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"sender\","]
-#[doc = " \"sponsorship\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"privacy_level\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The `edited` event types include the details about the change when someone edits a sponsorship to change the privacy.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"sponsorship\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"node_id\","]
-#[doc = " \"privacy_level\","]
-#[doc = " \"sponsor\","]
-#[doc = " \"sponsorable\","]
-#[doc = " \"tier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"privacy_level\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sponsor\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"sponsorable\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"tier\": {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship-tier\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SponsorshipEdited {
@@ -79812,18 +34734,6 @@ pub struct SponsorshipEdited {
pub sponsorship: SponsorshipEditedSponsorship,
}
#[doc = "`SponsorshipEditedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -79871,31 +34781,6 @@ impl ::std::convert::TryFrom<::std::string::String> for SponsorshipEditedAction
}
}
#[doc = "`SponsorshipEditedChanges`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"privacy_level\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The `edited` event types include the details about the change when someone edits a sponsorship to change the privacy.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct SponsorshipEditedChanges {
@@ -79903,25 +34788,6 @@ pub struct SponsorshipEditedChanges {
pub privacy_level: ::std::option::Option,
}
#[doc = "`SponsorshipEditedChangesPrivacyLevel`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The `edited` event types include the details about the change when someone edits a sponsorship to change the privacy.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SponsorshipEditedChangesPrivacyLevel {
@@ -79929,44 +34795,6 @@ pub struct SponsorshipEditedChangesPrivacyLevel {
pub from: ::std::string::String,
}
#[doc = "`SponsorshipEditedSponsorship`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"node_id\","]
-#[doc = " \"privacy_level\","]
-#[doc = " \"sponsor\","]
-#[doc = " \"sponsorable\","]
-#[doc = " \"tier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"privacy_level\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sponsor\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"sponsorable\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"tier\": {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship-tier\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SponsorshipEditedSponsorship {
@@ -79978,34 +34806,6 @@ pub struct SponsorshipEditedSponsorship {
pub tier: SponsorshipTier,
}
#[doc = "`SponsorshipEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship$cancelled\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship$created\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship$edited\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship$pending_cancellation\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship$pending_tier_change\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship$tier_changed\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum SponsorshipEvent {
@@ -80047,70 +34847,6 @@ impl ::std::convert::From for SponsorshipEvent {
}
}
#[doc = "`SponsorshipPendingCancellation`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"sponsorship pending_cancellation event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"sender\","]
-#[doc = " \"sponsorship\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"pending_cancellation\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"effective_date\": {"]
-#[doc = " \"description\": \"The `pending_cancellation` and `pending_tier_change` event types will include the date the cancellation or tier change will take effect.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"sponsorship\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"node_id\","]
-#[doc = " \"privacy_level\","]
-#[doc = " \"sponsor\","]
-#[doc = " \"sponsorable\","]
-#[doc = " \"tier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"privacy_level\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sponsor\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"sponsorable\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"tier\": {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship-tier\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SponsorshipPendingCancellation {
@@ -80122,18 +34858,6 @@ pub struct SponsorshipPendingCancellation {
pub sponsorship: SponsorshipPendingCancellationSponsorship,
}
#[doc = "`SponsorshipPendingCancellationAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"pending_cancellation\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -80181,44 +34905,6 @@ impl ::std::convert::TryFrom<::std::string::String> for SponsorshipPendingCancel
}
}
#[doc = "`SponsorshipPendingCancellationSponsorship`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"node_id\","]
-#[doc = " \"privacy_level\","]
-#[doc = " \"sponsor\","]
-#[doc = " \"sponsorable\","]
-#[doc = " \"tier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"privacy_level\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sponsor\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"sponsorable\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"tier\": {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship-tier\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SponsorshipPendingCancellationSponsorship {
@@ -80230,92 +34916,6 @@ pub struct SponsorshipPendingCancellationSponsorship {
pub tier: SponsorshipTier,
}
#[doc = "`SponsorshipPendingTierChange`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"sponsorship pending_tier_change event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"sender\","]
-#[doc = " \"sponsorship\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"pending_tier_change\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"tier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"tier\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship-tier\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"effective_date\": {"]
-#[doc = " \"description\": \"The `pending_cancellation` and `pending_tier_change` event types will include the date the cancellation or tier change will take effect.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"sponsorship\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"node_id\","]
-#[doc = " \"privacy_level\","]
-#[doc = " \"sponsor\","]
-#[doc = " \"sponsorable\","]
-#[doc = " \"tier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"privacy_level\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sponsor\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"sponsorable\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"tier\": {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship-tier\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SponsorshipPendingTierChange {
@@ -80328,18 +34928,6 @@ pub struct SponsorshipPendingTierChange {
pub sponsorship: SponsorshipPendingTierChangeSponsorship,
}
#[doc = "`SponsorshipPendingTierChangeAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"pending_tier_change\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -80387,101 +34975,18 @@ impl ::std::convert::TryFrom<::std::string::String> for SponsorshipPendingTierCh
}
}
#[doc = "`SponsorshipPendingTierChangeChanges`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"tier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"tier\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship-tier\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SponsorshipPendingTierChangeChanges {
pub tier: SponsorshipPendingTierChangeChangesTier,
}
#[doc = "`SponsorshipPendingTierChangeChangesTier`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship-tier\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SponsorshipPendingTierChangeChangesTier {
pub from: SponsorshipTier,
}
#[doc = "`SponsorshipPendingTierChangeSponsorship`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"node_id\","]
-#[doc = " \"privacy_level\","]
-#[doc = " \"sponsor\","]
-#[doc = " \"sponsorable\","]
-#[doc = " \"tier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"privacy_level\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sponsor\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"sponsorable\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"tier\": {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship-tier\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SponsorshipPendingTierChangeSponsorship {
@@ -80493,55 +34998,6 @@ pub struct SponsorshipPendingTierChangeSponsorship {
pub tier: SponsorshipTier,
}
#[doc = "The `tier_changed` and `pending_tier_change` will include the original tier before the change or pending change. For more information, see the pending tier change payload."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Sponsorship Tier\","]
-#[doc = " \"description\": \"The `tier_changed` and `pending_tier_change` will include the original tier before the change or pending change. For more information, see the pending tier change payload.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"is_custom_ammount\","]
-#[doc = " \"is_one_time\","]
-#[doc = " \"monthly_price_in_cents\","]
-#[doc = " \"monthly_price_in_dollars\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"is_custom_ammount\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"is_one_time\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"monthly_price_in_cents\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"monthly_price_in_dollars\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SponsorshipTier {
@@ -80555,88 +35011,6 @@ pub struct SponsorshipTier {
pub node_id: ::std::string::String,
}
#[doc = "`SponsorshipTierChanged`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"sponsorship tier_changed event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"sender\","]
-#[doc = " \"sponsorship\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"tier_changed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"tier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"tier\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship-tier\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"sponsorship\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"node_id\","]
-#[doc = " \"privacy_level\","]
-#[doc = " \"sponsor\","]
-#[doc = " \"sponsorable\","]
-#[doc = " \"tier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"privacy_level\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sponsor\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"sponsorable\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"tier\": {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship-tier\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SponsorshipTierChanged {
@@ -80646,18 +35020,6 @@ pub struct SponsorshipTierChanged {
pub sponsorship: SponsorshipTierChangedSponsorship,
}
#[doc = "`SponsorshipTierChangedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"tier_changed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -80705,101 +35067,18 @@ impl ::std::convert::TryFrom<::std::string::String> for SponsorshipTierChangedAc
}
}
#[doc = "`SponsorshipTierChangedChanges`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"tier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"tier\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship-tier\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SponsorshipTierChangedChanges {
pub tier: SponsorshipTierChangedChangesTier,
}
#[doc = "`SponsorshipTierChangedChangesTier`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship-tier\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SponsorshipTierChangedChangesTier {
pub from: SponsorshipTier,
}
#[doc = "`SponsorshipTierChangedSponsorship`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"created_at\","]
-#[doc = " \"node_id\","]
-#[doc = " \"privacy_level\","]
-#[doc = " \"sponsor\","]
-#[doc = " \"sponsorable\","]
-#[doc = " \"tier\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"privacy_level\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"sponsor\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"sponsorable\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"tier\": {"]
-#[doc = " \"$ref\": \"#/definitions/sponsorship-tier\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct SponsorshipTierChangedSponsorship {
@@ -80811,48 +35090,6 @@ pub struct SponsorshipTierChangedSponsorship {
pub tier: SponsorshipTier,
}
#[doc = "`StarCreated`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"star created event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\","]
-#[doc = " \"starred_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"starred_at\": {"]
-#[doc = " \"description\": \"The time the star was created. This is a timestamp in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`. Will be `null` for the `deleted` action.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct StarCreated {
@@ -80867,18 +35104,6 @@ pub struct StarCreated {
pub starred_at: ::std::string::String,
}
#[doc = "`StarCreatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -80926,48 +35151,6 @@ impl ::std::convert::TryFrom<::std::string::String> for StarCreatedAction {
}
}
#[doc = "`StarDeleted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"star deleted event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\","]
-#[doc = " \"starred_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"starred_at\": {"]
-#[doc = " \"description\": \"The time the star was created. This is a timestamp in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`. Will be `null` for the `deleted` action.\","]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct StarDeleted {
@@ -80982,18 +35165,6 @@ pub struct StarDeleted {
pub starred_at: (),
}
#[doc = "`StarDeletedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -81041,22 +35212,6 @@ impl ::std::convert::TryFrom<::std::string::String> for StarDeletedAction {
}
}
#[doc = "`StarEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/star$created\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/star$deleted\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum StarEvent {
@@ -81074,341 +35229,6 @@ impl ::std::convert::From for StarEvent {
}
}
#[doc = "`StatusEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"status event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"branches\","]
-#[doc = " \"commit\","]
-#[doc = " \"context\","]
-#[doc = " \"created_at\","]
-#[doc = " \"description\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\","]
-#[doc = " \"sha\","]
-#[doc = " \"state\","]
-#[doc = " \"target_url\","]
-#[doc = " \"updated_at\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"avatar_url\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"branches\": {"]
-#[doc = " \"description\": \"An array of branch objects containing the status' SHA. Each branch contains the given SHA, but the SHA may or may not be the head of the branch. The array includes a maximum of 10 branches.\","]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"commit\","]
-#[doc = " \"name\","]
-#[doc = " \"protected\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"commit\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"sha\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"protected\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"commit\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author\","]
-#[doc = " \"comments_url\","]
-#[doc = " \"commit\","]
-#[doc = " \"committer\","]
-#[doc = " \"html_url\","]
-#[doc = " \"node_id\","]
-#[doc = " \"parents\","]
-#[doc = " \"sha\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"comments_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"commit\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author\","]
-#[doc = " \"comment_count\","]
-#[doc = " \"committer\","]
-#[doc = " \"message\","]
-#[doc = " \"tree\","]
-#[doc = " \"url\","]
-#[doc = " \"verification\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/committer\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"date\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"comment_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"committer\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/committer\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"date\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"message\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"tree\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"sha\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"verification\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"payload\","]
-#[doc = " \"reason\","]
-#[doc = " \"signature\","]
-#[doc = " \"verified\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"payload\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"reason\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"expired_key\","]
-#[doc = " \"not_signing_key\","]
-#[doc = " \"gpgverify_error\","]
-#[doc = " \"gpgverify_unavailable\","]
-#[doc = " \"unsigned\","]
-#[doc = " \"unknown_signature_type\","]
-#[doc = " \"no_user\","]
-#[doc = " \"unverified_email\","]
-#[doc = " \"bad_email\","]
-#[doc = " \"unknown_key\","]
-#[doc = " \"malformed_signature\","]
-#[doc = " \"invalid\","]
-#[doc = " \"valid\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"signature\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"verified\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"committer\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"parents\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"html_url\","]
-#[doc = " \"sha\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"context\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"The optional human-readable description added to the status.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"The unique identifier of the status.\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"description\": \"The Commit SHA.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"description\": \"The new state. Can be `pending`, `success`, `failure`, or `error`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"pending\","]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"error\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"target_url\": {"]
-#[doc = " \"description\": \"The optional link added to the status.\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct StatusEvent {
@@ -81439,46 +35259,6 @@ pub struct StatusEvent {
pub updated_at: ::std::string::String,
}
#[doc = "`StatusEventBranchesItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"commit\","]
-#[doc = " \"name\","]
-#[doc = " \"protected\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"commit\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"sha\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"protected\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct StatusEventBranchesItem {
@@ -81487,29 +35267,6 @@ pub struct StatusEventBranchesItem {
pub protected: bool,
}
#[doc = "`StatusEventBranchesItemCommit`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"sha\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct StatusEventBranchesItemCommit {
@@ -81517,217 +35274,6 @@ pub struct StatusEventBranchesItemCommit {
pub url: ::std::string::String,
}
#[doc = "`StatusEventCommit`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author\","]
-#[doc = " \"comments_url\","]
-#[doc = " \"commit\","]
-#[doc = " \"committer\","]
-#[doc = " \"html_url\","]
-#[doc = " \"node_id\","]
-#[doc = " \"parents\","]
-#[doc = " \"sha\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"comments_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"commit\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author\","]
-#[doc = " \"comment_count\","]
-#[doc = " \"committer\","]
-#[doc = " \"message\","]
-#[doc = " \"tree\","]
-#[doc = " \"url\","]
-#[doc = " \"verification\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/committer\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"date\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"comment_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"committer\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/committer\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"date\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"message\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"tree\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"sha\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"verification\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"payload\","]
-#[doc = " \"reason\","]
-#[doc = " \"signature\","]
-#[doc = " \"verified\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"payload\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"reason\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"expired_key\","]
-#[doc = " \"not_signing_key\","]
-#[doc = " \"gpgverify_error\","]
-#[doc = " \"gpgverify_unavailable\","]
-#[doc = " \"unsigned\","]
-#[doc = " \"unknown_signature_type\","]
-#[doc = " \"no_user\","]
-#[doc = " \"unverified_email\","]
-#[doc = " \"bad_email\","]
-#[doc = " \"unknown_key\","]
-#[doc = " \"malformed_signature\","]
-#[doc = " \"invalid\","]
-#[doc = " \"valid\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"signature\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"verified\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"committer\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"parents\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"html_url\","]
-#[doc = " \"sha\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct StatusEventCommit {
@@ -81742,137 +35288,6 @@ pub struct StatusEventCommit {
pub url: ::std::string::String,
}
#[doc = "`StatusEventCommitCommit`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"author\","]
-#[doc = " \"comment_count\","]
-#[doc = " \"committer\","]
-#[doc = " \"message\","]
-#[doc = " \"tree\","]
-#[doc = " \"url\","]
-#[doc = " \"verification\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"author\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/committer\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"date\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"comment_count\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"committer\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/committer\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"date\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"message\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"tree\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"sha\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"verification\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"payload\","]
-#[doc = " \"reason\","]
-#[doc = " \"signature\","]
-#[doc = " \"verified\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"payload\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"reason\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"expired_key\","]
-#[doc = " \"not_signing_key\","]
-#[doc = " \"gpgverify_error\","]
-#[doc = " \"gpgverify_unavailable\","]
-#[doc = " \"unsigned\","]
-#[doc = " \"unknown_signature_type\","]
-#[doc = " \"no_user\","]
-#[doc = " \"unverified_email\","]
-#[doc = " \"bad_email\","]
-#[doc = " \"unknown_key\","]
-#[doc = " \"malformed_signature\","]
-#[doc = " \"invalid\","]
-#[doc = " \"valid\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"signature\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"verified\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct StatusEventCommitCommit {
@@ -81885,31 +35300,6 @@ pub struct StatusEventCommitCommit {
pub verification: StatusEventCommitCommitVerification,
}
#[doc = "`StatusEventCommitCommitAuthor`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/committer\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"date\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct StatusEventCommitCommitAuthor {
@@ -81922,31 +35312,6 @@ pub struct StatusEventCommitCommitAuthor {
pub username: ::std::option::Option<::std::string::String>,
}
#[doc = "`StatusEventCommitCommitCommitter`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/committer\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"date\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct StatusEventCommitCommitCommitter {
@@ -81959,29 +35324,6 @@ pub struct StatusEventCommitCommitCommitter {
pub username: ::std::option::Option<::std::string::String>,
}
#[doc = "`StatusEventCommitCommitTree`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"sha\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct StatusEventCommitCommitTree {
@@ -81989,57 +35331,6 @@ pub struct StatusEventCommitCommitTree {
pub url: ::std::string::String,
}
#[doc = "`StatusEventCommitCommitVerification`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"payload\","]
-#[doc = " \"reason\","]
-#[doc = " \"signature\","]
-#[doc = " \"verified\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"payload\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"reason\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"expired_key\","]
-#[doc = " \"not_signing_key\","]
-#[doc = " \"gpgverify_error\","]
-#[doc = " \"gpgverify_unavailable\","]
-#[doc = " \"unsigned\","]
-#[doc = " \"unknown_signature_type\","]
-#[doc = " \"no_user\","]
-#[doc = " \"unverified_email\","]
-#[doc = " \"bad_email\","]
-#[doc = " \"unknown_key\","]
-#[doc = " \"malformed_signature\","]
-#[doc = " \"invalid\","]
-#[doc = " \"valid\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"signature\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"verified\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct StatusEventCommitCommitVerification {
@@ -82049,30 +35340,6 @@ pub struct StatusEventCommitCommitVerification {
pub verified: bool,
}
#[doc = "`StatusEventCommitCommitVerificationReason`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"expired_key\","]
-#[doc = " \"not_signing_key\","]
-#[doc = " \"gpgverify_error\","]
-#[doc = " \"gpgverify_unavailable\","]
-#[doc = " \"unsigned\","]
-#[doc = " \"unknown_signature_type\","]
-#[doc = " \"no_user\","]
-#[doc = " \"unverified_email\","]
-#[doc = " \"bad_email\","]
-#[doc = " \"unknown_key\","]
-#[doc = " \"malformed_signature\","]
-#[doc = " \"invalid\","]
-#[doc = " \"valid\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -82168,34 +35435,6 @@ impl ::std::convert::TryFrom<::std::string::String> for StatusEventCommitCommitV
}
}
#[doc = "`StatusEventCommitParentsItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"html_url\","]
-#[doc = " \"sha\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct StatusEventCommitParentsItem {
@@ -82204,22 +35443,6 @@ pub struct StatusEventCommitParentsItem {
pub url: ::std::string::String,
}
#[doc = "The new state. Can be `pending`, `success`, `failure`, or `error`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The new state. Can be `pending`, `success`, `failure`, or `error`.\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"pending\","]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"error\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -82279,156 +35502,6 @@ impl ::std::convert::TryFrom<::std::string::String> for StatusEventState {
}
}
#[doc = "Groups of organization members that gives permissions on specified repositories."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Team\","]
-#[doc = " \"description\": \"Groups of organization members that gives permissions on specified repositories.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"description\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"members_url\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"permission\","]
-#[doc = " \"privacy\","]
-#[doc = " \"repositories_url\","]
-#[doc = " \"slug\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"Description of the team\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the team\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"members_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"Name of the team\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"parent\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"object\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"required\": ["]
-#[doc = " \"description\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"members_url\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"permission\","]
-#[doc = " \"privacy\","]
-#[doc = " \"repositories_url\","]
-#[doc = " \"slug\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"Description of the team\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the team\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"members_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"Name of the team\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"permission\": {"]
-#[doc = " \"description\": \"Permission that the team will have for its repositories\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"privacy\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\","]
-#[doc = " \"secret\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repositories_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"slug\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"description\": \"URL for the team\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"permission\": {"]
-#[doc = " \"description\": \"Permission that the team will have for its repositories\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"privacy\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\","]
-#[doc = " \"secret\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repositories_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"slug\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"description\": \"URL for the team\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct Team {
@@ -82452,41 +35525,6 @@ pub struct Team {
pub url: ::std::string::String,
}
#[doc = "`TeamAddEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"team_add event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"organization\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\","]
-#[doc = " \"team\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"team\": {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct TeamAddEvent {
@@ -82498,47 +35536,6 @@ pub struct TeamAddEvent {
pub team: Team,
}
#[doc = "`TeamAddedToRepository`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"team added_to_repository event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"organization\","]
-#[doc = " \"sender\","]
-#[doc = " \"team\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"added_to_repository\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"team\": {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct TeamAddedToRepository {
@@ -82552,18 +35549,6 @@ pub struct TeamAddedToRepository {
pub team: Team,
}
#[doc = "`TeamAddedToRepositoryAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"added_to_repository\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -82611,47 +35596,6 @@ impl ::std::convert::TryFrom<::std::string::String> for TeamAddedToRepositoryAct
}
}
#[doc = "`TeamCreated`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"team created event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"organization\","]
-#[doc = " \"sender\","]
-#[doc = " \"team\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"team\": {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct TeamCreated {
@@ -82665,18 +35609,6 @@ pub struct TeamCreated {
pub team: Team,
}
#[doc = "`TeamCreatedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"created\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -82724,47 +35656,6 @@ impl ::std::convert::TryFrom<::std::string::String> for TeamCreatedAction {
}
}
#[doc = "`TeamDeleted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"team deleted event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"organization\","]
-#[doc = " \"sender\","]
-#[doc = " \"team\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"team\": {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct TeamDeleted {
@@ -82778,18 +35669,6 @@ pub struct TeamDeleted {
pub team: Team,
}
#[doc = "`TeamDeletedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"deleted\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -82837,130 +35716,6 @@ impl ::std::convert::TryFrom<::std::string::String> for TeamDeletedAction {
}
}
#[doc = "`TeamEdited`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"team edited event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"changes\","]
-#[doc = " \"organization\","]
-#[doc = " \"sender\","]
-#[doc = " \"team\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"changes\": {"]
-#[doc = " \"description\": \"The changes to the team if the action was `edited`.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the description if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the name if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"privacy\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the team's privacy if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"permissions\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"permissions\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"admin\": {"]
-#[doc = " \"description\": \"The previous version of the team member's `admin` permission on a repository, if the action was `edited`.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"pull\": {"]
-#[doc = " \"description\": \"The previous version of the team member's `pull` permission on a repository, if the action was `edited`.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"push\": {"]
-#[doc = " \"description\": \"The previous version of the team member's `push` permission on a repository, if the action was `edited`.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"team\": {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct TeamEdited {
@@ -82975,18 +35730,6 @@ pub struct TeamEdited {
pub team: Team,
}
#[doc = "`TeamEditedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"edited\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -83034,94 +35777,6 @@ impl ::std::convert::TryFrom<::std::string::String> for TeamEditedAction {
}
}
#[doc = "The changes to the team if the action was `edited`."]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"description\": \"The changes to the team if the action was `edited`.\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the description if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the name if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"privacy\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the team's privacy if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"permissions\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"permissions\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"admin\": {"]
-#[doc = " \"description\": \"The previous version of the team member's `admin` permission on a repository, if the action was `edited`.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"pull\": {"]
-#[doc = " \"description\": \"The previous version of the team member's `pull` permission on a repository, if the action was `edited`.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"push\": {"]
-#[doc = " \"description\": \"The previous version of the team member's `push` permission on a repository, if the action was `edited`.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct TeamEditedChanges {
@@ -83135,25 +35790,6 @@ pub struct TeamEditedChanges {
pub repository: ::std::option::Option,
}
#[doc = "`TeamEditedChangesDescription`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the description if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct TeamEditedChangesDescription {
@@ -83161,25 +35797,6 @@ pub struct TeamEditedChangesDescription {
pub from: ::std::string::String,
}
#[doc = "`TeamEditedChangesName`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the name if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct TeamEditedChangesName {
@@ -83187,25 +35804,6 @@ pub struct TeamEditedChangesName {
pub from: ::std::string::String,
}
#[doc = "`TeamEditedChangesPrivacy`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"description\": \"The previous version of the team's privacy if the action was `edited`.\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct TeamEditedChangesPrivacy {
@@ -83213,117 +35811,18 @@ pub struct TeamEditedChangesPrivacy {
pub from: ::std::string::String,
}
#[doc = "`TeamEditedChangesRepository`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"permissions\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"permissions\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"admin\": {"]
-#[doc = " \"description\": \"The previous version of the team member's `admin` permission on a repository, if the action was `edited`.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"pull\": {"]
-#[doc = " \"description\": \"The previous version of the team member's `pull` permission on a repository, if the action was `edited`.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"push\": {"]
-#[doc = " \"description\": \"The previous version of the team member's `push` permission on a repository, if the action was `edited`.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct TeamEditedChangesRepository {
pub permissions: TeamEditedChangesRepositoryPermissions,
}
#[doc = "`TeamEditedChangesRepositoryPermissions`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"from\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"from\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"admin\": {"]
-#[doc = " \"description\": \"The previous version of the team member's `admin` permission on a repository, if the action was `edited`.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"pull\": {"]
-#[doc = " \"description\": \"The previous version of the team member's `pull` permission on a repository, if the action was `edited`.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"push\": {"]
-#[doc = " \"description\": \"The previous version of the team member's `push` permission on a repository, if the action was `edited`.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct TeamEditedChangesRepositoryPermissions {
pub from: TeamEditedChangesRepositoryPermissionsFrom,
}
#[doc = "`TeamEditedChangesRepositoryPermissionsFrom`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"admin\": {"]
-#[doc = " \"description\": \"The previous version of the team member's `admin` permission on a repository, if the action was `edited`.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"pull\": {"]
-#[doc = " \"description\": \"The previous version of the team member's `pull` permission on a repository, if the action was `edited`.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"push\": {"]
-#[doc = " \"description\": \"The previous version of the team member's `push` permission on a repository, if the action was `edited`.\","]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct TeamEditedChangesRepositoryPermissionsFrom {
@@ -83338,31 +35837,6 @@ pub struct TeamEditedChangesRepositoryPermissionsFrom {
pub push: ::std::option::Option,
}
#[doc = "`TeamEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team$added_to_repository\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team$created\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team$deleted\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team$edited\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/team$removed_from_repository\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum TeamEvent {
@@ -83398,81 +35872,6 @@ impl ::std::convert::From for TeamEvent {
}
}
#[doc = "`TeamParent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"description\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"members_url\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"permission\","]
-#[doc = " \"privacy\","]
-#[doc = " \"repositories_url\","]
-#[doc = " \"slug\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"description\": {"]
-#[doc = " \"description\": \"Description of the team\","]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"description\": \"Unique identifier of the team\","]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"members_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"description\": \"Name of the team\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"permission\": {"]
-#[doc = " \"description\": \"Permission that the team will have for its repositories\","]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"privacy\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\","]
-#[doc = " \"secret\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"repositories_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"slug\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"description\": \"URL for the team\","]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct TeamParent {
@@ -83494,20 +35893,6 @@ pub struct TeamParent {
pub url: ::std::string::String,
}
#[doc = "`TeamParentPrivacy`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\","]
-#[doc = " \"secret\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -83563,20 +35948,6 @@ impl ::std::convert::TryFrom<::std::string::String> for TeamParentPrivacy {
}
}
#[doc = "`TeamPrivacy`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"open\","]
-#[doc = " \"closed\","]
-#[doc = " \"secret\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -83632,47 +36003,6 @@ impl ::std::convert::TryFrom<::std::string::String> for TeamPrivacy {
}
}
#[doc = "`TeamRemovedFromRepository`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"team removed_from_repository event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"organization\","]
-#[doc = " \"sender\","]
-#[doc = " \"team\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"removed_from_repository\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"team\": {"]
-#[doc = " \"$ref\": \"#/definitions/team\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct TeamRemovedFromRepository {
@@ -83686,18 +36016,6 @@ pub struct TeamRemovedFromRepository {
pub team: Team,
}
#[doc = "`TeamRemovedFromRepositoryAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"removed_from_repository\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -83745,120 +36063,6 @@ impl ::std::convert::TryFrom<::std::string::String> for TeamRemovedFromRepositor
}
}
#[doc = "`User`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"User\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"avatar_url\","]
-#[doc = " \"events_url\","]
-#[doc = " \"followers_url\","]
-#[doc = " \"following_url\","]
-#[doc = " \"gists_url\","]
-#[doc = " \"gravatar_id\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"login\","]
-#[doc = " \"node_id\","]
-#[doc = " \"organizations_url\","]
-#[doc = " \"received_events_url\","]
-#[doc = " \"repos_url\","]
-#[doc = " \"site_admin\","]
-#[doc = " \"starred_url\","]
-#[doc = " \"subscriptions_url\","]
-#[doc = " \"type\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"avatar_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"email\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"followers_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"following_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gists_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"gravatar_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"login\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"organizations_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"received_events_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"repos_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"site_admin\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"starred_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri-template\""]
-#[doc = " },"]
-#[doc = " \"subscriptions_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"Bot\","]
-#[doc = " \"User\","]
-#[doc = " \"Organization\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct User {
@@ -83887,20 +36091,6 @@ pub struct User {
pub url: ::std::string::String,
}
#[doc = "`UserType`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"Bot\","]
-#[doc = " \"User\","]
-#[doc = " \"Organization\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -83953,19 +36143,6 @@ impl ::std::convert::TryFrom<::std::string::String> for UserType {
}
}
#[doc = "`WatchEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/watch$started\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(transparent)]
pub struct WatchEvent(pub WatchStarted);
@@ -83986,43 +36163,6 @@ impl ::std::convert::From for WatchEvent {
}
}
#[doc = "`WatchStarted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"watch started event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"started\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct WatchStarted {
@@ -84035,18 +36175,6 @@ pub struct WatchStarted {
pub sender: User,
}
#[doc = "`WatchStartedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"started\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -84094,82 +36222,6 @@ impl ::std::convert::TryFrom<::std::string::String> for WatchStartedAction {
}
}
#[doc = "`WebhookEvents`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Webhook Events\","]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"check_run\","]
-#[doc = " \"check_suite\","]
-#[doc = " \"code_scanning_alert\","]
-#[doc = " \"commit_comment\","]
-#[doc = " \"content_reference\","]
-#[doc = " \"create\","]
-#[doc = " \"delete\","]
-#[doc = " \"deployment\","]
-#[doc = " \"deployment_review\","]
-#[doc = " \"deployment_status\","]
-#[doc = " \"deploy_key\","]
-#[doc = " \"discussion\","]
-#[doc = " \"discussion_comment\","]
-#[doc = " \"fork\","]
-#[doc = " \"gollum\","]
-#[doc = " \"issues\","]
-#[doc = " \"issue_comment\","]
-#[doc = " \"label\","]
-#[doc = " \"member\","]
-#[doc = " \"membership\","]
-#[doc = " \"meta\","]
-#[doc = " \"milestone\","]
-#[doc = " \"organization\","]
-#[doc = " \"org_block\","]
-#[doc = " \"page_build\","]
-#[doc = " \"project\","]
-#[doc = " \"project_card\","]
-#[doc = " \"project_column\","]
-#[doc = " \"public\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"pull_request_review\","]
-#[doc = " \"pull_request_review_comment\","]
-#[doc = " \"push\","]
-#[doc = " \"registry_package\","]
-#[doc = " \"release\","]
-#[doc = " \"repository\","]
-#[doc = " \"repository_dispatch\","]
-#[doc = " \"repository_import\","]
-#[doc = " \"repository_vulnerability_alert\","]
-#[doc = " \"secret_scanning_alert\","]
-#[doc = " \"star\","]
-#[doc = " \"status\","]
-#[doc = " \"team\","]
-#[doc = " \"team_add\","]
-#[doc = " \"watch\","]
-#[doc = " \"workflow_dispatch\","]
-#[doc = " \"workflow_run\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"const\": \"*\""]
-#[doc = " },"]
-#[doc = " \"maxItems\": 1,"]
-#[doc = " \"minItems\": 1"]
-#[doc = " }"]
-#[doc = " ],"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum WebhookEvents {
@@ -84187,64 +36239,6 @@ impl ::std::convert::From<[::std::string::String; 1usize]> for WebhookEvents {
}
}
#[doc = "`WebhookEventsVariant0Item`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"check_run\","]
-#[doc = " \"check_suite\","]
-#[doc = " \"code_scanning_alert\","]
-#[doc = " \"commit_comment\","]
-#[doc = " \"content_reference\","]
-#[doc = " \"create\","]
-#[doc = " \"delete\","]
-#[doc = " \"deployment\","]
-#[doc = " \"deployment_review\","]
-#[doc = " \"deployment_status\","]
-#[doc = " \"deploy_key\","]
-#[doc = " \"discussion\","]
-#[doc = " \"discussion_comment\","]
-#[doc = " \"fork\","]
-#[doc = " \"gollum\","]
-#[doc = " \"issues\","]
-#[doc = " \"issue_comment\","]
-#[doc = " \"label\","]
-#[doc = " \"member\","]
-#[doc = " \"membership\","]
-#[doc = " \"meta\","]
-#[doc = " \"milestone\","]
-#[doc = " \"organization\","]
-#[doc = " \"org_block\","]
-#[doc = " \"page_build\","]
-#[doc = " \"project\","]
-#[doc = " \"project_card\","]
-#[doc = " \"project_column\","]
-#[doc = " \"public\","]
-#[doc = " \"pull_request\","]
-#[doc = " \"pull_request_review\","]
-#[doc = " \"pull_request_review_comment\","]
-#[doc = " \"push\","]
-#[doc = " \"registry_package\","]
-#[doc = " \"release\","]
-#[doc = " \"repository\","]
-#[doc = " \"repository_dispatch\","]
-#[doc = " \"repository_import\","]
-#[doc = " \"repository_vulnerability_alert\","]
-#[doc = " \"secret_scanning_alert\","]
-#[doc = " \"star\","]
-#[doc = " \"status\","]
-#[doc = " \"team\","]
-#[doc = " \"team_add\","]
-#[doc = " \"watch\","]
-#[doc = " \"workflow_dispatch\","]
-#[doc = " \"workflow_run\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -84476,65 +36470,6 @@ impl ::std::convert::TryFrom<::std::string::String> for WebhookEventsVariant0Ite
}
}
#[doc = "`Workflow`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Workflow\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"badge_url\","]
-#[doc = " \"created_at\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"path\","]
-#[doc = " \"state\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"badge_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"path\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"state\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct Workflow {
@@ -84550,56 +36485,6 @@ pub struct Workflow {
pub url: ::std::string::String,
}
#[doc = "`WorkflowDispatchEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"workflow_dispatch event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"inputs\","]
-#[doc = " \"ref\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\","]
-#[doc = " \"workflow\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"inputs\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"additionalProperties\": true"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"workflow\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct WorkflowDispatchEvent {
@@ -84616,109 +36501,6 @@ pub struct WorkflowDispatchEvent {
pub workflow: ::std::string::String,
}
#[doc = "`WorkflowJob`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Workflow Job\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"check_run_url\","]
-#[doc = " \"completed_at\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"labels\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"run_id\","]
-#[doc = " \"run_url\","]
-#[doc = " \"started_at\","]
-#[doc = " \"status\","]
-#[doc = " \"steps\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"check_run_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"completed_at\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"labels\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"run_id\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"run_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"started_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"queued\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"steps\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/workflow-step\""]
-#[doc = " },"]
-#[doc = " \"minItems\": 1"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct WorkflowJob {
@@ -84739,67 +36521,6 @@ pub struct WorkflowJob {
pub url: ::std::string::String,
}
#[doc = "`WorkflowJobCompleted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"workflow_job completed event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\","]
-#[doc = " \"workflow_job\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"workflow_job\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/workflow-job\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"conclusion\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct WorkflowJobCompleted {
@@ -84813,18 +36534,6 @@ pub struct WorkflowJobCompleted {
pub workflow_job: WorkflowJobCompletedWorkflowJob,
}
#[doc = "`WorkflowJobCompletedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -84872,35 +36581,6 @@ impl ::std::convert::TryFrom<::std::string::String> for WorkflowJobCompletedActi
}
}
#[doc = "`WorkflowJobCompletedWorkflowJob`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/workflow-job\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"conclusion\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct WorkflowJobCompletedWorkflowJob {
@@ -84921,19 +36601,6 @@ pub struct WorkflowJobCompletedWorkflowJob {
pub url: ::std::string::String,
}
#[doc = "`WorkflowJobCompletedWorkflowJobConclusion`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -84985,20 +36652,6 @@ impl ::std::convert::TryFrom<::std::string::String> for WorkflowJobCompletedWork
}
}
#[doc = "`WorkflowJobCompletedWorkflowJobStatus`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"queued\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -85054,19 +36707,6 @@ impl ::std::convert::TryFrom<::std::string::String> for WorkflowJobCompletedWork
}
}
#[doc = "`WorkflowJobConclusion`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -85118,25 +36758,6 @@ impl ::std::convert::TryFrom<::std::string::String> for WorkflowJobConclusion {
}
}
#[doc = "`WorkflowJobEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/workflow_job$completed\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/workflow_job$queued\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/workflow_job$started\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum WorkflowJobEvent {
@@ -85160,126 +36781,6 @@ impl ::std::convert::From for WorkflowJobEvent {
}
}
#[doc = "`WorkflowJobQueued`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"workflow_job queued event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\","]
-#[doc = " \"workflow_job\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"queued\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"workflow_job\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"check_run_url\","]
-#[doc = " \"completed_at\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"labels\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"run_id\","]
-#[doc = " \"run_url\","]
-#[doc = " \"started_at\","]
-#[doc = " \"status\","]
-#[doc = " \"steps\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"check_run_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"completed_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"labels\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"run_id\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"run_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"started_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"queued\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"steps\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/workflow-step\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct WorkflowJobQueued {
@@ -85293,18 +36794,6 @@ pub struct WorkflowJobQueued {
pub workflow_job: WorkflowJobQueuedWorkflowJob,
}
#[doc = "`WorkflowJobQueuedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"queued\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -85352,94 +36841,6 @@ impl ::std::convert::TryFrom<::std::string::String> for WorkflowJobQueuedAction
}
}
#[doc = "`WorkflowJobQueuedWorkflowJob`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"check_run_url\","]
-#[doc = " \"completed_at\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"labels\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"run_id\","]
-#[doc = " \"run_url\","]
-#[doc = " \"started_at\","]
-#[doc = " \"status\","]
-#[doc = " \"steps\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"check_run_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"completed_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"labels\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"run_id\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"run_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"started_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"queued\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"steps\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/workflow-step\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct WorkflowJobQueuedWorkflowJob {
@@ -85460,18 +36861,6 @@ pub struct WorkflowJobQueuedWorkflowJob {
pub url: ::std::string::String,
}
#[doc = "`WorkflowJobQueuedWorkflowJobStatus`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"queued\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -85519,76 +36908,6 @@ impl ::std::convert::TryFrom<::std::string::String> for WorkflowJobQueuedWorkflo
}
}
#[doc = "`WorkflowJobStarted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"workflow_job started event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\","]
-#[doc = " \"workflow_job\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"started\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"workflow_job\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/workflow-job\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"completed_at\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"steps\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"completed_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"steps\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/workflow-step-in_progress\""]
-#[doc = " },"]
-#[doc = " \"maxItems\": 1,"]
-#[doc = " \"minItems\": 1"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct WorkflowJobStarted {
@@ -85602,18 +36921,6 @@ pub struct WorkflowJobStarted {
pub workflow_job: WorkflowJobStartedWorkflowJob,
}
#[doc = "`WorkflowJobStartedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"started\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -85661,44 +36968,6 @@ impl ::std::convert::TryFrom<::std::string::String> for WorkflowJobStartedAction
}
}
#[doc = "`WorkflowJobStartedWorkflowJob`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/workflow-job\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"completed_at\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"steps\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"completed_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"steps\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"$ref\": \"#/definitions/workflow-step-in_progress\""]
-#[doc = " },"]
-#[doc = " \"maxItems\": 1,"]
-#[doc = " \"minItems\": 1"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct WorkflowJobStartedWorkflowJob {
@@ -85719,18 +36988,6 @@ pub struct WorkflowJobStartedWorkflowJob {
pub url: ::std::string::String,
}
#[doc = "`WorkflowJobStartedWorkflowJobConclusion`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"null\","]
-#[doc = " \"enum\": ["]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Serialize, Clone, Debug)]
#[serde(transparent)]
pub struct WorkflowJobStartedWorkflowJobConclusion(());
@@ -85765,20 +37022,6 @@ impl<'de> ::serde::Deserialize<'de> for WorkflowJobStartedWorkflowJobConclusion
}
}
#[doc = "`WorkflowJobStartedWorkflowJobStatus`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"queued\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -85834,20 +37077,6 @@ impl ::std::convert::TryFrom<::std::string::String> for WorkflowJobStartedWorkfl
}
}
#[doc = "`WorkflowJobStatus`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"queued\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -85903,223 +37132,6 @@ impl ::std::convert::TryFrom<::std::string::String> for WorkflowJobStatus {
}
}
#[doc = "`WorkflowRun`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Workflow Run\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"artifacts_url\","]
-#[doc = " \"cancel_url\","]
-#[doc = " \"check_suite_id\","]
-#[doc = " \"check_suite_node_id\","]
-#[doc = " \"check_suite_url\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"created_at\","]
-#[doc = " \"event\","]
-#[doc = " \"head_branch\","]
-#[doc = " \"head_commit\","]
-#[doc = " \"head_repository\","]
-#[doc = " \"head_sha\","]
-#[doc = " \"html_url\","]
-#[doc = " \"id\","]
-#[doc = " \"jobs_url\","]
-#[doc = " \"logs_url\","]
-#[doc = " \"name\","]
-#[doc = " \"node_id\","]
-#[doc = " \"pull_requests\","]
-#[doc = " \"repository\","]
-#[doc = " \"rerun_url\","]
-#[doc = " \"run_number\","]
-#[doc = " \"status\","]
-#[doc = " \"updated_at\","]
-#[doc = " \"url\","]
-#[doc = " \"workflow_id\","]
-#[doc = " \"workflow_url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"artifacts_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"cancel_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"check_suite_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"check_suite_node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"check_suite_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"type\": ["]
-#[doc = " \"string\","]
-#[doc = " \"null\""]
-#[doc = " ],"]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\","]
-#[doc = " null"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"created_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"event\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"head_branch\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"head_commit\": {"]
-#[doc = " \"$ref\": \"#/definitions/commit-simple\""]
-#[doc = " },"]
-#[doc = " \"head_repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository-lite\""]
-#[doc = " },"]
-#[doc = " \"head_sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"html_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"jobs_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"logs_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"node_id\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"pull_requests\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"base\","]
-#[doc = " \"head\","]
-#[doc = " \"id\","]
-#[doc = " \"number\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"base\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repo-ref\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"head\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repo-ref\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository-lite\""]
-#[doc = " },"]
-#[doc = " \"rerun_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"run_number\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"requested\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\","]
-#[doc = " \"queued\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"updated_at\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"date-time\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " },"]
-#[doc = " \"workflow_id\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"workflow_url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct WorkflowRun {
@@ -86152,76 +37164,6 @@ pub struct WorkflowRun {
pub workflow_url: ::std::string::String,
}
#[doc = "`WorkflowRunCompleted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"workflow_run completed event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\","]
-#[doc = " \"workflow\","]
-#[doc = " \"workflow_run\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"workflow\": {"]
-#[doc = " \"$ref\": \"#/definitions/workflow\""]
-#[doc = " },"]
-#[doc = " \"workflow_run\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/workflow-run\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"conclusion\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct WorkflowRunCompleted {
@@ -86236,18 +37178,6 @@ pub struct WorkflowRunCompleted {
pub workflow_run: WorkflowRunCompletedWorkflowRun,
}
#[doc = "`WorkflowRunCompletedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -86295,40 +37225,6 @@ impl ::std::convert::TryFrom<::std::string::String> for WorkflowRunCompletedActi
}
}
#[doc = "`WorkflowRunCompletedWorkflowRun`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/workflow-run\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"conclusion\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"tsAdditionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct WorkflowRunCompletedWorkflowRun {
@@ -86361,24 +37257,6 @@ pub struct WorkflowRunCompletedWorkflowRun {
pub workflow_url: ::std::string::String,
}
#[doc = "`WorkflowRunCompletedWorkflowRunConclusion`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -86450,75 +37328,6 @@ impl ::std::convert::TryFrom<::std::string::String> for WorkflowRunCompletedWork
}
}
#[doc = "`WorkflowRunCompletedWorkflowRunPullRequestsItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"base\","]
-#[doc = " \"head\","]
-#[doc = " \"id\","]
-#[doc = " \"number\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"base\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repo-ref\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"head\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repo-ref\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct WorkflowRunCompletedWorkflowRunPullRequestsItem {
@@ -86529,32 +37338,6 @@ pub struct WorkflowRunCompletedWorkflowRunPullRequestsItem {
pub url: ::std::string::String,
}
#[doc = "`WorkflowRunCompletedWorkflowRunPullRequestsItemBase`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repo-ref\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct WorkflowRunCompletedWorkflowRunPullRequestsItemBase {
@@ -86564,32 +37347,6 @@ pub struct WorkflowRunCompletedWorkflowRunPullRequestsItemBase {
pub sha: ::std::string::String,
}
#[doc = "`WorkflowRunCompletedWorkflowRunPullRequestsItemHead`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repo-ref\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct WorkflowRunCompletedWorkflowRunPullRequestsItemHead {
@@ -86599,21 +37356,6 @@ pub struct WorkflowRunCompletedWorkflowRunPullRequestsItemHead {
pub sha: ::std::string::String,
}
#[doc = "`WorkflowRunCompletedWorkflowRunStatus`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"requested\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\","]
-#[doc = " \"queued\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -86673,24 +37415,6 @@ impl ::std::convert::TryFrom<::std::string::String> for WorkflowRunCompletedWork
}
}
#[doc = "`WorkflowRunConclusion`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"success\","]
-#[doc = " \"failure\","]
-#[doc = " \"neutral\","]
-#[doc = " \"cancelled\","]
-#[doc = " \"timed_out\","]
-#[doc = " \"action_required\","]
-#[doc = " \"stale\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -86762,22 +37486,6 @@ impl ::std::convert::TryFrom<::std::string::String> for WorkflowRunConclusion {
}
}
#[doc = "`WorkflowRunEvent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/workflow_run$completed\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/workflow_run$requested\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum WorkflowRunEvent {
@@ -86795,75 +37503,6 @@ impl ::std::convert::From for WorkflowRunEvent {
}
}
#[doc = "`WorkflowRunPullRequestsItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"base\","]
-#[doc = " \"head\","]
-#[doc = " \"id\","]
-#[doc = " \"number\","]
-#[doc = " \"url\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"base\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repo-ref\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"head\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repo-ref\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"id\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"url\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"format\": \"uri\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct WorkflowRunPullRequestsItem {
@@ -86874,32 +37513,6 @@ pub struct WorkflowRunPullRequestsItem {
pub url: ::std::string::String,
}
#[doc = "`WorkflowRunPullRequestsItemBase`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repo-ref\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct WorkflowRunPullRequestsItemBase {
@@ -86909,32 +37522,6 @@ pub struct WorkflowRunPullRequestsItemBase {
pub sha: ::std::string::String,
}
#[doc = "`WorkflowRunPullRequestsItemHead`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"ref\","]
-#[doc = " \"repo\","]
-#[doc = " \"sha\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"ref\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"repo\": {"]
-#[doc = " \"$ref\": \"#/definitions/repo-ref\""]
-#[doc = " },"]
-#[doc = " \"sha\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct WorkflowRunPullRequestsItemHead {
@@ -86944,51 +37531,6 @@ pub struct WorkflowRunPullRequestsItemHead {
pub sha: ::std::string::String,
}
#[doc = "`WorkflowRunRequested`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"workflow_run requested event\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"action\","]
-#[doc = " \"repository\","]
-#[doc = " \"sender\","]
-#[doc = " \"workflow\","]
-#[doc = " \"workflow_run\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"action\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"requested\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"installation\": {"]
-#[doc = " \"$ref\": \"#/definitions/installation-lite\""]
-#[doc = " },"]
-#[doc = " \"organization\": {"]
-#[doc = " \"$ref\": \"#/definitions/organization\""]
-#[doc = " },"]
-#[doc = " \"repository\": {"]
-#[doc = " \"$ref\": \"#/definitions/repository\""]
-#[doc = " },"]
-#[doc = " \"sender\": {"]
-#[doc = " \"$ref\": \"#/definitions/user\""]
-#[doc = " },"]
-#[doc = " \"workflow\": {"]
-#[doc = " \"$ref\": \"#/definitions/workflow\""]
-#[doc = " },"]
-#[doc = " \"workflow_run\": {"]
-#[doc = " \"$ref\": \"#/definitions/workflow-run\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct WorkflowRunRequested {
@@ -87003,18 +37545,6 @@ pub struct WorkflowRunRequested {
pub workflow_run: WorkflowRun,
}
#[doc = "`WorkflowRunRequestedAction`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"requested\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -87062,21 +37592,6 @@ impl ::std::convert::TryFrom<::std::string::String> for WorkflowRunRequestedActi
}
}
#[doc = "`WorkflowRunStatus`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"requested\","]
-#[doc = " \"in_progress\","]
-#[doc = " \"completed\","]
-#[doc = " \"queued\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -87136,25 +37651,6 @@ impl ::std::convert::TryFrom<::std::string::String> for WorkflowRunStatus {
}
}
#[doc = "`WorkflowStep`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Workflow Step\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/workflow-step-in_progress\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/workflow-step-completed\""]
-#[doc = " }"]
-#[doc = " ],"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum WorkflowStep {
@@ -87172,54 +37668,6 @@ impl ::std::convert::From for WorkflowStep {
}
}
#[doc = "`WorkflowStepCompleted`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Workflow Step (Completed)\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"completed_at\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"name\","]
-#[doc = " \"number\","]
-#[doc = " \"started_at\","]
-#[doc = " \"status\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"completed_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"failure\","]
-#[doc = " \"skipped\","]
-#[doc = " \"success\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"started_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct WorkflowStepCompleted {
@@ -87231,20 +37679,6 @@ pub struct WorkflowStepCompleted {
pub status: WorkflowStepCompletedStatus,
}
#[doc = "`WorkflowStepCompletedConclusion`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"failure\","]
-#[doc = " \"skipped\","]
-#[doc = " \"success\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -87300,18 +37734,6 @@ impl ::std::convert::TryFrom<::std::string::String> for WorkflowStepCompletedCon
}
}
#[doc = "`WorkflowStepCompletedStatus`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"completed\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -87359,49 +37781,6 @@ impl ::std::convert::TryFrom<::std::string::String> for WorkflowStepCompletedSta
}
}
#[doc = "`WorkflowStepInProgress`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"title\": \"Workflow Step (In Progress)\","]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"completed_at\","]
-#[doc = " \"conclusion\","]
-#[doc = " \"name\","]
-#[doc = " \"number\","]
-#[doc = " \"started_at\","]
-#[doc = " \"status\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"completed_at\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"conclusion\": {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"number\": {"]
-#[doc = " \"type\": \"integer\""]
-#[doc = " },"]
-#[doc = " \"started_at\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"status\": {"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"in_progress\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false,"]
-#[doc = " \"$schema\": \"http://json-schema.org/draft-07/schema\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct WorkflowStepInProgress {
@@ -87413,18 +37792,6 @@ pub struct WorkflowStepInProgress {
pub status: WorkflowStepInProgressStatus,
}
#[doc = "`WorkflowStepInProgressStatus`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"string\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"in_progress\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
diff --git a/typify-impl/tests/vega.out b/typify-impl/tests/vega.out
index 0477cd71..65fc0e07 100644
--- a/typify-impl/tests/vega.out
+++ b/typify-impl/tests/vega.out
@@ -25,180 +25,6 @@ pub mod error {
}
}
#[doc = "`AggregateTransform`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"type\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"as\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"cross\": {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"drop\": {"]
-#[doc = " \"default\": true,"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"fields\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/scaleField\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/paramField\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/expr\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"groupby\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/scaleField\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/paramField\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/expr\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"key\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/scaleField\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/paramField\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/expr\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"ops\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"values\","]
-#[doc = " \"count\","]
-#[doc = " \"__count__\","]
-#[doc = " \"missing\","]
-#[doc = " \"valid\","]
-#[doc = " \"sum\","]
-#[doc = " \"product\","]
-#[doc = " \"mean\","]
-#[doc = " \"average\","]
-#[doc = " \"variance\","]
-#[doc = " \"variancep\","]
-#[doc = " \"stdev\","]
-#[doc = " \"stdevp\","]
-#[doc = " \"stderr\","]
-#[doc = " \"distinct\","]
-#[doc = " \"ci0\","]
-#[doc = " \"ci1\","]
-#[doc = " \"median\","]
-#[doc = " \"q1\","]
-#[doc = " \"q3\","]
-#[doc = " \"min\","]
-#[doc = " \"max\","]
-#[doc = " \"argmin\","]
-#[doc = " \"argmax\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"signal\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"aggregate\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct AggregateTransform {
@@ -226,35 +52,6 @@ pub struct AggregateTransform {
pub type_: AggregateTransformType,
}
#[doc = "`AggregateTransformAs`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AggregateTransformAs {
@@ -272,25 +69,6 @@ impl ::std::convert::From for AggregateTransformAs {
}
}
#[doc = "`AggregateTransformAsArrayItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AggregateTransformAsArrayItem {
@@ -304,22 +82,6 @@ impl ::std::convert::From for AggregateTransformAsArrayItem {
}
}
#[doc = "`AggregateTransformCross`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AggregateTransformCross {
@@ -337,23 +99,6 @@ impl ::std::convert::From for AggregateTransformCross {
}
}
#[doc = "`AggregateTransformDrop`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"default\": true,"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AggregateTransformDrop {
@@ -376,38 +121,6 @@ impl ::std::convert::From for AggregateTransformDrop {
}
}
#[doc = "`AggregateTransformFields`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/scaleField\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/paramField\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/expr\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AggregateTransformFields {
@@ -427,28 +140,6 @@ impl ::std::convert::From for AggregateTransformFields {
}
}
#[doc = "`AggregateTransformFieldsArrayItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/scaleField\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/paramField\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/expr\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AggregateTransformFieldsArrayItem {
@@ -473,35 +164,6 @@ impl ::std::convert::From for AggregateTransformFieldsArrayItem {
}
}
#[doc = "`AggregateTransformGroupby`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/scaleField\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/paramField\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/expr\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AggregateTransformGroupby {
@@ -521,25 +183,6 @@ impl ::std::convert::From for AggregateTransformGroupby {
}
}
#[doc = "`AggregateTransformGroupbyArrayItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/scaleField\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/paramField\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/expr\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AggregateTransformGroupbyArrayItem {
@@ -563,25 +206,6 @@ impl ::std::convert::From for AggregateTransformGroupbyArrayItem {
}
}
#[doc = "`AggregateTransformKey`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/scaleField\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/paramField\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/expr\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AggregateTransformKey {
@@ -605,57 +229,6 @@ impl ::std::convert::From for AggregateTransformKey {
}
}
#[doc = "`AggregateTransformOps`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"values\","]
-#[doc = " \"count\","]
-#[doc = " \"__count__\","]
-#[doc = " \"missing\","]
-#[doc = " \"valid\","]
-#[doc = " \"sum\","]
-#[doc = " \"product\","]
-#[doc = " \"mean\","]
-#[doc = " \"average\","]
-#[doc = " \"variance\","]
-#[doc = " \"variancep\","]
-#[doc = " \"stdev\","]
-#[doc = " \"stdevp\","]
-#[doc = " \"stderr\","]
-#[doc = " \"distinct\","]
-#[doc = " \"ci0\","]
-#[doc = " \"ci1\","]
-#[doc = " \"median\","]
-#[doc = " \"q1\","]
-#[doc = " \"q3\","]
-#[doc = " \"min\","]
-#[doc = " \"max\","]
-#[doc = " \"argmin\","]
-#[doc = " \"argmax\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AggregateTransformOps {
@@ -675,47 +248,6 @@ impl ::std::convert::From for AggregateTransformOps {
}
}
#[doc = "`AggregateTransformOpsArrayItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"values\","]
-#[doc = " \"count\","]
-#[doc = " \"__count__\","]
-#[doc = " \"missing\","]
-#[doc = " \"valid\","]
-#[doc = " \"sum\","]
-#[doc = " \"product\","]
-#[doc = " \"mean\","]
-#[doc = " \"average\","]
-#[doc = " \"variance\","]
-#[doc = " \"variancep\","]
-#[doc = " \"stdev\","]
-#[doc = " \"stdevp\","]
-#[doc = " \"stderr\","]
-#[doc = " \"distinct\","]
-#[doc = " \"ci0\","]
-#[doc = " \"ci1\","]
-#[doc = " \"median\","]
-#[doc = " \"q1\","]
-#[doc = " \"q3\","]
-#[doc = " \"min\","]
-#[doc = " \"max\","]
-#[doc = " \"argmin\","]
-#[doc = " \"argmax\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AggregateTransformOpsArrayItem {
@@ -735,40 +267,6 @@ impl ::std::convert::From for AggregateTransformOpsArrayItem {
}
}
#[doc = "`AggregateTransformOpsArrayItemVariant0`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"enum\": ["]
-#[doc = " \"values\","]
-#[doc = " \"count\","]
-#[doc = " \"__count__\","]
-#[doc = " \"missing\","]
-#[doc = " \"valid\","]
-#[doc = " \"sum\","]
-#[doc = " \"product\","]
-#[doc = " \"mean\","]
-#[doc = " \"average\","]
-#[doc = " \"variance\","]
-#[doc = " \"variancep\","]
-#[doc = " \"stdev\","]
-#[doc = " \"stdevp\","]
-#[doc = " \"stderr\","]
-#[doc = " \"distinct\","]
-#[doc = " \"ci0\","]
-#[doc = " \"ci1\","]
-#[doc = " \"median\","]
-#[doc = " \"q1\","]
-#[doc = " \"q3\","]
-#[doc = " \"min\","]
-#[doc = " \"max\","]
-#[doc = " \"argmin\","]
-#[doc = " \"argmax\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -908,17 +406,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AggregateTransformOpsArr
}
}
#[doc = "`AggregateTransformType`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"enum\": ["]
-#[doc = " \"aggregate\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -966,190 +453,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AggregateTransformType {
}
}
#[doc = "`AlignValue`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/rule\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"left\","]
-#[doc = " \"right\","]
-#[doc = " \"center\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"left\","]
-#[doc = " \"right\","]
-#[doc = " \"center\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AlignValue {
@@ -1167,101 +470,6 @@ impl ::std::convert::From for AlignValue {
}
}
#[doc = "`AlignValueVariant0Item`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/rule\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"left\","]
-#[doc = " \"right\","]
-#[doc = " \"center\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AlignValueVariant0Item {
@@ -1290,104 +498,6 @@ impl ::std::convert::From for AlignValueVariant0
}
}
#[doc = "`AlignValueVariant0ItemVariant0`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " },"]
-#[doc = " \"test\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"left\","]
-#[doc = " \"right\","]
-#[doc = " \"center\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AlignValueVariant0ItemVariant0 {
@@ -1421,19 +531,6 @@ pub enum AlignValueVariant0ItemVariant0 {
},
}
#[doc = "`AlignValueVariant0ItemVariant0Variant1Value`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"enum\": ["]
-#[doc = " \"left\","]
-#[doc = " \"right\","]
-#[doc = " \"center\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -1491,22 +588,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`AlignValueVariant0ItemVariant0Variant3Range`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AlignValueVariant0ItemVariant0Variant3Range {
@@ -1560,104 +641,6 @@ impl ::std::convert::From for AlignValueVariant0ItemVariant0Variant3Range
}
}
#[doc = "`AlignValueVariant0ItemVariant1`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " },"]
-#[doc = " \"test\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"left\","]
-#[doc = " \"right\","]
-#[doc = " \"center\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -1673,104 +656,6 @@ impl ::std::convert::From for AlignValueVariant0ItemVariant0Variant3Range
#[serde(deny_unknown_fields)]
pub enum AlignValueVariant0ItemVariant1 {}
#[doc = "`AlignValueVariant0ItemVariant2`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " },"]
-#[doc = " \"test\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"left\","]
-#[doc = " \"right\","]
-#[doc = " \"center\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -1786,94 +671,6 @@ pub enum AlignValueVariant0ItemVariant1 {}
#[serde(deny_unknown_fields)]
pub enum AlignValueVariant0ItemVariant2 {}
#[doc = "`AlignValueVariant1`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"left\","]
-#[doc = " \"right\","]
-#[doc = " \"center\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AlignValueVariant1 {
@@ -1898,101 +695,6 @@ impl ::std::convert::From for AlignValueVariant1 {
}
}
#[doc = "`AlignValueVariant1Variant0`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"left\","]
-#[doc = " \"right\","]
-#[doc = " \"center\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AlignValueVariant1Variant0 {
@@ -2018,19 +720,6 @@ pub enum AlignValueVariant1Variant0 {
},
}
#[doc = "`AlignValueVariant1Variant0Variant1Value`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"enum\": ["]
-#[doc = " \"left\","]
-#[doc = " \"right\","]
-#[doc = " \"center\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -2086,22 +775,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AlignValueVariant1Varian
}
}
#[doc = "`AlignValueVariant1Variant0Variant3Range`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AlignValueVariant1Variant0Variant3Range {
@@ -2153,101 +826,6 @@ impl ::std::convert::From for AlignValueVariant1Variant0Variant3Range {
}
}
#[doc = "`AlignValueVariant1Variant1`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"left\","]
-#[doc = " \"right\","]
-#[doc = " \"center\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -2263,101 +841,6 @@ impl ::std::convert::From for AlignValueVariant1Variant0Variant3Range {
#[serde(deny_unknown_fields)]
pub enum AlignValueVariant1Variant1 {}
#[doc = "`AlignValueVariant1Variant2`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"left\","]
-#[doc = " \"right\","]
-#[doc = " \"center\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -2373,190 +856,6 @@ pub enum AlignValueVariant1Variant1 {}
#[serde(deny_unknown_fields)]
pub enum AlignValueVariant1Variant2 {}
#[doc = "`AnchorValue`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/rule\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"start\","]
-#[doc = " \"middle\","]
-#[doc = " \"end\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"start\","]
-#[doc = " \"middle\","]
-#[doc = " \"end\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AnchorValue {
@@ -2574,101 +873,6 @@ impl ::std::convert::From for AnchorValue {
}
}
#[doc = "`AnchorValueVariant0Item`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/rule\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"start\","]
-#[doc = " \"middle\","]
-#[doc = " \"end\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AnchorValueVariant0Item {
@@ -2697,104 +901,6 @@ impl ::std::convert::From for AnchorValueVarian
}
}
#[doc = "`AnchorValueVariant0ItemVariant0`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " },"]
-#[doc = " \"test\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"start\","]
-#[doc = " \"middle\","]
-#[doc = " \"end\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AnchorValueVariant0ItemVariant0 {
@@ -2828,19 +934,6 @@ pub enum AnchorValueVariant0ItemVariant0 {
},
}
#[doc = "`AnchorValueVariant0ItemVariant0Variant1Value`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"enum\": ["]
-#[doc = " \"start\","]
-#[doc = " \"middle\","]
-#[doc = " \"end\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -2898,22 +991,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`AnchorValueVariant0ItemVariant0Variant3Range`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AnchorValueVariant0ItemVariant0Variant3Range {
@@ -2967,104 +1044,6 @@ impl ::std::convert::From for AnchorValueVariant0ItemVariant0Variant3Range
}
}
#[doc = "`AnchorValueVariant0ItemVariant1`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " },"]
-#[doc = " \"test\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"start\","]
-#[doc = " \"middle\","]
-#[doc = " \"end\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -3080,104 +1059,6 @@ impl ::std::convert::From for AnchorValueVariant0ItemVariant0Variant3Range
#[serde(deny_unknown_fields)]
pub enum AnchorValueVariant0ItemVariant1 {}
#[doc = "`AnchorValueVariant0ItemVariant2`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " },"]
-#[doc = " \"test\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"start\","]
-#[doc = " \"middle\","]
-#[doc = " \"end\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -3193,94 +1074,6 @@ pub enum AnchorValueVariant0ItemVariant1 {}
#[serde(deny_unknown_fields)]
pub enum AnchorValueVariant0ItemVariant2 {}
#[doc = "`AnchorValueVariant1`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"start\","]
-#[doc = " \"middle\","]
-#[doc = " \"end\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AnchorValueVariant1 {
@@ -3305,101 +1098,6 @@ impl ::std::convert::From for AnchorValueVariant1 {
}
}
#[doc = "`AnchorValueVariant1Variant0`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"start\","]
-#[doc = " \"middle\","]
-#[doc = " \"end\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AnchorValueVariant1Variant0 {
@@ -3425,19 +1123,6 @@ pub enum AnchorValueVariant1Variant0 {
},
}
#[doc = "`AnchorValueVariant1Variant0Variant1Value`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"enum\": ["]
-#[doc = " \"start\","]
-#[doc = " \"middle\","]
-#[doc = " \"end\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -3493,22 +1178,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AnchorValueVariant1Varia
}
}
#[doc = "`AnchorValueVariant1Variant0Variant3Range`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AnchorValueVariant1Variant0Variant3Range {
@@ -3560,101 +1229,6 @@ impl ::std::convert::From for AnchorValueVariant1Variant0Variant3Range {
}
}
#[doc = "`AnchorValueVariant1Variant1`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"start\","]
-#[doc = " \"middle\","]
-#[doc = " \"end\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -3670,101 +1244,6 @@ impl ::std::convert::From for AnchorValueVariant1Variant0Variant3Range {
#[serde(deny_unknown_fields)]
pub enum AnchorValueVariant1Variant1 {}
#[doc = "`AnchorValueVariant1Variant2`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"start\","]
-#[doc = " \"middle\","]
-#[doc = " \"end\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -3780,178 +1259,6 @@ pub enum AnchorValueVariant1Variant1 {}
#[serde(deny_unknown_fields)]
pub enum AnchorValueVariant1Variant2 {}
#[doc = "`AnyValue`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/rule\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {}"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {}"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AnyValue {
@@ -3969,95 +1276,6 @@ impl ::std::convert::From for AnyValue {
}
}
#[doc = "`AnyValueVariant0Item`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/rule\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {}"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AnyValueVariant0Item {
@@ -4086,98 +1304,6 @@ impl ::std::convert::From for AnyValueVariant0Item
}
}
#[doc = "`AnyValueVariant0ItemVariant0`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " },"]
-#[doc = " \"test\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {}"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AnyValueVariant0ItemVariant0 {
@@ -4211,22 +1337,6 @@ pub enum AnyValueVariant0ItemVariant0 {
},
}
#[doc = "`AnyValueVariant0ItemVariant0Variant3Range`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AnyValueVariant0ItemVariant0Variant3Range {
@@ -4278,98 +1388,6 @@ impl ::std::convert::From for AnyValueVariant0ItemVariant0Variant3Range {
}
}
#[doc = "`AnyValueVariant0ItemVariant1`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " },"]
-#[doc = " \"test\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {}"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -4385,98 +1403,6 @@ impl ::std::convert::From for AnyValueVariant0ItemVariant0Variant3Range {
#[serde(deny_unknown_fields)]
pub enum AnyValueVariant0ItemVariant1 {}
#[doc = "`AnyValueVariant0ItemVariant2`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " },"]
-#[doc = " \"test\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {}"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -4492,88 +1418,6 @@ pub enum AnyValueVariant0ItemVariant1 {}
#[serde(deny_unknown_fields)]
pub enum AnyValueVariant0ItemVariant2 {}
#[doc = "`AnyValueVariant1`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {}"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AnyValueVariant1 {
@@ -4598,95 +1442,6 @@ impl ::std::convert::From for AnyValueVariant1 {
}
}
#[doc = "`AnyValueVariant1Variant0`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {}"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AnyValueVariant1Variant0 {
@@ -4712,22 +1467,6 @@ pub enum AnyValueVariant1Variant0 {
},
}
#[doc = "`AnyValueVariant1Variant0Variant3Range`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AnyValueVariant1Variant0Variant3Range {
@@ -4779,95 +1518,6 @@ impl ::std::convert::From for AnyValueVariant1Variant0Variant3Range {
}
}
#[doc = "`AnyValueVariant1Variant1`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {}"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -4883,95 +1533,6 @@ impl ::std::convert::From for AnyValueVariant1Variant0Variant3Range {
#[serde(deny_unknown_fields)]
pub enum AnyValueVariant1Variant1 {}
#[doc = "`AnyValueVariant1Variant2`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {}"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -4987,22 +1548,6 @@ pub enum AnyValueVariant1Variant1 {}
#[serde(deny_unknown_fields)]
pub enum AnyValueVariant1Variant2 {}
#[doc = "`ArrayOrSignal`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum ArrayOrSignal {
@@ -5020,182 +1565,6 @@ impl ::std::convert::From for ArrayOrSignal {
}
}
#[doc = "`ArrayValue`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/rule\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"array\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"array\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum ArrayValue {
@@ -5213,97 +1582,6 @@ impl ::std::convert::From for ArrayValue {
}
}
#[doc = "`ArrayValueVariant0Item`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/rule\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"array\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum ArrayValueVariant0Item {
@@ -5332,100 +1610,6 @@ impl ::std::convert::From for ArrayValueVariant0
}
}
#[doc = "`ArrayValueVariant0ItemVariant0`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " },"]
-#[doc = " \"test\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"array\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum ArrayValueVariant0ItemVariant0 {
@@ -5459,22 +1643,6 @@ pub enum ArrayValueVariant0ItemVariant0 {
},
}
#[doc = "`ArrayValueVariant0ItemVariant0Variant3Range`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum ArrayValueVariant0ItemVariant0Variant3Range {
@@ -5528,100 +1696,6 @@ impl ::std::convert::From for ArrayValueVariant0ItemVariant0Variant3Range
}
}
#[doc = "`ArrayValueVariant0ItemVariant1`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " },"]
-#[doc = " \"test\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"array\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -5637,100 +1711,6 @@ impl ::std::convert::From for ArrayValueVariant0ItemVariant0Variant3Range
#[serde(deny_unknown_fields)]
pub enum ArrayValueVariant0ItemVariant1 {}
#[doc = "`ArrayValueVariant0ItemVariant2`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " },"]
-#[doc = " \"test\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"array\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -5746,90 +1726,6 @@ pub enum ArrayValueVariant0ItemVariant1 {}
#[serde(deny_unknown_fields)]
pub enum ArrayValueVariant0ItemVariant2 {}
#[doc = "`ArrayValueVariant1`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"array\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum ArrayValueVariant1 {
@@ -5854,97 +1750,6 @@ impl ::std::convert::From for ArrayValueVariant1 {
}
}
#[doc = "`ArrayValueVariant1Variant0`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"array\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum ArrayValueVariant1Variant0 {
@@ -5970,22 +1775,6 @@ pub enum ArrayValueVariant1Variant0 {
},
}
#[doc = "`ArrayValueVariant1Variant0Variant3Range`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum ArrayValueVariant1Variant0Variant3Range {
@@ -6037,97 +1826,6 @@ impl ::std::convert::From for ArrayValueVariant1Variant0Variant3Range {
}
}
#[doc = "`ArrayValueVariant1Variant1`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"array\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -6143,97 +1841,6 @@ impl ::std::convert::From for ArrayValueVariant1Variant0Variant3Range {
#[serde(deny_unknown_fields)]
pub enum ArrayValueVariant1Variant1 {}
#[doc = "`ArrayValueVariant1Variant2`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"array\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -6249,57 +1856,6 @@ pub enum ArrayValueVariant1Variant1 {}
#[serde(deny_unknown_fields)]
pub enum ArrayValueVariant1Variant2 {}
#[doc = "`Autosize`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"default\": \"pad\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"pad\","]
-#[doc = " \"fit\","]
-#[doc = " \"fit-x\","]
-#[doc = " \"fit-y\","]
-#[doc = " \"none\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"type\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"contains\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"content\","]
-#[doc = " \"padding\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"resize\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"default\": \"pad\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"pad\","]
-#[doc = " \"fit\","]
-#[doc = " \"fit-x\","]
-#[doc = " \"fit-y\","]
-#[doc = " \"none\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged, deny_unknown_fields)]
pub enum Autosize {
@@ -6325,22 +1881,6 @@ impl ::std::convert::From for Autosize {
}
}
#[doc = "`AutosizeVariant0`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"default\": \"pad\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"pad\","]
-#[doc = " \"fit\","]
-#[doc = " \"fit-x\","]
-#[doc = " \"fit-y\","]
-#[doc = " \"none\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -6404,18 +1944,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AutosizeVariant0 {
}
}
#[doc = "`AutosizeVariant1Contains`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"enum\": ["]
-#[doc = " \"content\","]
-#[doc = " \"padding\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -6467,22 +1995,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AutosizeVariant1Contains
}
}
#[doc = "`AutosizeVariant1Type`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"default\": \"pad\","]
-#[doc = " \"enum\": ["]
-#[doc = " \"pad\","]
-#[doc = " \"fit\","]
-#[doc = " \"fit-x\","]
-#[doc = " \"fit-y\","]
-#[doc = " \"none\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -6551,850 +2063,6 @@ impl ::std::default::Default for AutosizeVariant1Type {
}
}
#[doc = "`Axis`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"orient\","]
-#[doc = " \"scale\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"aria\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"bandPosition\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"description\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"domain\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"domainCap\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"domainColor\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/colorValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"domainDash\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/arrayValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"domainDashOffset\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"domainOpacity\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"domainWidth\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"encode\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"axis\": {"]
-#[doc = " \"$ref\": \"#/definitions/guideEncode\""]
-#[doc = " },"]
-#[doc = " \"domain\": {"]
-#[doc = " \"$ref\": \"#/definitions/guideEncode\""]
-#[doc = " },"]
-#[doc = " \"grid\": {"]
-#[doc = " \"$ref\": \"#/definitions/guideEncode\""]
-#[doc = " },"]
-#[doc = " \"labels\": {"]
-#[doc = " \"$ref\": \"#/definitions/guideEncode\""]
-#[doc = " },"]
-#[doc = " \"ticks\": {"]
-#[doc = " \"$ref\": \"#/definitions/guideEncode\""]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"$ref\": \"#/definitions/guideEncode\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " \"format\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"day\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"hours\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"milliseconds\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"minutes\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"month\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"quarter\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"seconds\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"week\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"year\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"formatType\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"number\","]
-#[doc = " \"time\","]
-#[doc = " \"utc\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"grid\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"gridCap\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"gridColor\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/colorValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"gridDash\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/arrayValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"gridDashOffset\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"gridOpacity\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"gridScale\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"gridWidth\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"labelAlign\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"left\","]
-#[doc = " \"right\","]
-#[doc = " \"center\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/alignValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"labelAngle\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"labelBaseline\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"top\","]
-#[doc = " \"middle\","]
-#[doc = " \"bottom\","]
-#[doc = " \"alphabetic\","]
-#[doc = " \"line-top\","]
-#[doc = " \"line-bottom\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/baselineValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"labelBound\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"labelColor\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/colorValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"labelFlush\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"labelFlushOffset\": {"]
-#[doc = " \"$ref\": \"#/definitions/numberOrSignal\""]
-#[doc = " },"]
-#[doc = " \"labelFont\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"labelFontSize\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"labelFontStyle\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"labelFontWeight\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"enum\": ["]
-#[doc = " null,"]
-#[doc = " \"normal\","]
-#[doc = " \"bold\","]
-#[doc = " \"lighter\","]
-#[doc = " \"bolder\","]
-#[doc = " \"100\","]
-#[doc = " \"200\","]
-#[doc = " \"300\","]
-#[doc = " \"400\","]
-#[doc = " \"500\","]
-#[doc = " \"600\","]
-#[doc = " \"700\","]
-#[doc = " \"800\","]
-#[doc = " \"900\","]
-#[doc = " 100,"]
-#[doc = " 200,"]
-#[doc = " 300,"]
-#[doc = " 400,"]
-#[doc = " 500,"]
-#[doc = " 600,"]
-#[doc = " 700,"]
-#[doc = " 800,"]
-#[doc = " 900"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/fontWeightValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"labelLimit\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"labelLineHeight\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"labelOffset\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"labelOpacity\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"labelOverlap\": {"]
-#[doc = " \"$ref\": \"#/definitions/labelOverlap\""]
-#[doc = " },"]
-#[doc = " \"labelPadding\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"labelSeparation\": {"]
-#[doc = " \"$ref\": \"#/definitions/numberOrSignal\""]
-#[doc = " },"]
-#[doc = " \"labels\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"maxExtent\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"minExtent\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"offset\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"orient\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"top\","]
-#[doc = " \"bottom\","]
-#[doc = " \"left\","]
-#[doc = " \"right\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"position\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"scale\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"tickBand\": {"]
-#[doc = " \"$ref\": \"#/definitions/tickBand\""]
-#[doc = " },"]
-#[doc = " \"tickCap\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tickColor\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/colorValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tickCount\": {"]
-#[doc = " \"$ref\": \"#/definitions/tickCount\""]
-#[doc = " },"]
-#[doc = " \"tickDash\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/arrayValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tickDashOffset\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tickExtra\": {"]
-#[doc = " \"$ref\": \"#/definitions/booleanOrSignal\""]
-#[doc = " },"]
-#[doc = " \"tickMinStep\": {"]
-#[doc = " \"$ref\": \"#/definitions/numberOrSignal\""]
-#[doc = " },"]
-#[doc = " \"tickOffset\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tickOpacity\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tickRound\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/booleanValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tickSize\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"tickWidth\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"ticks\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"$ref\": \"#/definitions/textOrSignal\""]
-#[doc = " },"]
-#[doc = " \"titleAlign\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"left\","]
-#[doc = " \"right\","]
-#[doc = " \"center\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/alignValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"titleAnchor\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"enum\": ["]
-#[doc = " null,"]
-#[doc = " \"start\","]
-#[doc = " \"middle\","]
-#[doc = " \"end\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/anchorValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"titleAngle\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"titleBaseline\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"top\","]
-#[doc = " \"middle\","]
-#[doc = " \"bottom\","]
-#[doc = " \"alphabetic\","]
-#[doc = " \"line-top\","]
-#[doc = " \"line-bottom\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/baselineValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"titleColor\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/colorValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"titleFont\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"titleFontSize\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"titleFontStyle\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"titleFontWeight\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"enum\": ["]
-#[doc = " null,"]
-#[doc = " \"normal\","]
-#[doc = " \"bold\","]
-#[doc = " \"lighter\","]
-#[doc = " \"bolder\","]
-#[doc = " \"100\","]
-#[doc = " \"200\","]
-#[doc = " \"300\","]
-#[doc = " \"400\","]
-#[doc = " \"500\","]
-#[doc = " \"600\","]
-#[doc = " \"700\","]
-#[doc = " \"800\","]
-#[doc = " \"900\","]
-#[doc = " 100,"]
-#[doc = " 200,"]
-#[doc = " 300,"]
-#[doc = " 400,"]
-#[doc = " 500,"]
-#[doc = " 600,"]
-#[doc = " 700,"]
-#[doc = " 800,"]
-#[doc = " 900"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/fontWeightValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"titleLimit\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"titleLineHeight\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"titleOpacity\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"titlePadding\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"titleX\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"titleY\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"translate\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"values\": {"]
-#[doc = " \"$ref\": \"#/definitions/arrayOrSignal\""]
-#[doc = " },"]
-#[doc = " \"zindex\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct Axis {
@@ -7808,22 +2476,6 @@ pub struct Axis {
pub zindex: ::std::option::Option,
}
#[doc = "`AxisBandPosition`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisBandPosition {
@@ -7841,22 +2493,6 @@ impl ::std::convert::From for AxisBandPosition {
}
}
#[doc = "`AxisDomainCap`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisDomainCap {
@@ -7869,25 +2505,6 @@ impl ::std::convert::From for AxisDomainCap {
}
}
#[doc = "`AxisDomainColor`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/colorValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisDomainColor {
@@ -7901,25 +2518,6 @@ impl ::std::convert::From for AxisDomainColor {
}
}
#[doc = "`AxisDomainDash`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/arrayValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisDomainDash {
@@ -7937,22 +2535,6 @@ impl ::std::convert::From for AxisDomainDash {
}
}
#[doc = "`AxisDomainDashOffset`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisDomainDashOffset {
@@ -7970,22 +2552,6 @@ impl ::std::convert::From for AxisDomainDashOffset {
}
}
#[doc = "`AxisDomainOpacity`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisDomainOpacity {
@@ -8003,22 +2569,6 @@ impl ::std::convert::From for AxisDomainOpacity {
}
}
#[doc = "`AxisDomainWidth`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisDomainWidth {
@@ -8036,36 +2586,6 @@ impl ::std::convert::From for AxisDomainWidth {
}
}
#[doc = "`AxisEncode`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"axis\": {"]
-#[doc = " \"$ref\": \"#/definitions/guideEncode\""]
-#[doc = " },"]
-#[doc = " \"domain\": {"]
-#[doc = " \"$ref\": \"#/definitions/guideEncode\""]
-#[doc = " },"]
-#[doc = " \"grid\": {"]
-#[doc = " \"$ref\": \"#/definitions/guideEncode\""]
-#[doc = " },"]
-#[doc = " \"labels\": {"]
-#[doc = " \"$ref\": \"#/definitions/guideEncode\""]
-#[doc = " },"]
-#[doc = " \"ticks\": {"]
-#[doc = " \"$ref\": \"#/definitions/guideEncode\""]
-#[doc = " },"]
-#[doc = " \"title\": {"]
-#[doc = " \"$ref\": \"#/definitions/guideEncode\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, Default)]
#[serde(deny_unknown_fields)]
pub struct AxisEncode {
@@ -8083,58 +2603,6 @@ pub struct AxisEncode {
pub title: ::std::option::Option,
}
#[doc = "`AxisFormat`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"date\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"day\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"hours\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"milliseconds\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"minutes\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"month\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"quarter\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"seconds\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"week\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"year\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged, deny_unknown_fields)]
pub enum AxisFormat {
@@ -8169,26 +2637,6 @@ impl ::std::convert::From for AxisFormat {
}
}
#[doc = "`AxisFormatType`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"number\","]
-#[doc = " \"time\","]
-#[doc = " \"utc\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisFormatType {
@@ -8206,19 +2654,6 @@ impl ::std::convert::From for AxisFormatType {
}
}
#[doc = "`AxisFormatTypeVariant0`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"enum\": ["]
-#[doc = " \"number\","]
-#[doc = " \"time\","]
-#[doc = " \"utc\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -8274,22 +2709,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AxisFormatTypeVariant0 {
}
}
#[doc = "`AxisGridCap`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisGridCap {
@@ -8302,25 +2721,6 @@ impl ::std::convert::From for AxisGridCap {
}
}
#[doc = "`AxisGridColor`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/colorValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisGridColor {
@@ -8334,25 +2734,6 @@ impl ::std::convert::From for AxisGridColor {
}
}
#[doc = "`AxisGridDash`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/arrayValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisGridDash {
@@ -8370,22 +2751,6 @@ impl ::std::convert::From for AxisGridDash {
}
}
#[doc = "`AxisGridDashOffset`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisGridDashOffset {
@@ -8403,22 +2768,6 @@ impl ::std::convert::From for AxisGridDashOffset {
}
}
#[doc = "`AxisGridOpacity`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisGridOpacity {
@@ -8436,22 +2785,6 @@ impl ::std::convert::From for AxisGridOpacity {
}
}
#[doc = "`AxisGridWidth`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisGridWidth {
@@ -8469,26 +2802,6 @@ impl ::std::convert::From for AxisGridWidth {
}
}
#[doc = "`AxisLabelAlign`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"left\","]
-#[doc = " \"right\","]
-#[doc = " \"center\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/alignValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisLabelAlign {
@@ -8506,19 +2819,6 @@ impl ::std::convert::From for AxisLabelAlign {
}
}
#[doc = "`AxisLabelAlignVariant0`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"enum\": ["]
-#[doc = " \"left\","]
-#[doc = " \"right\","]
-#[doc = " \"center\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -8574,22 +2874,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AxisLabelAlignVariant0 {
}
}
#[doc = "`AxisLabelAngle`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisLabelAngle {
@@ -8607,29 +2891,6 @@ impl ::std::convert::From for AxisLabelAngle {
}
}
#[doc = "`AxisLabelBaseline`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"top\","]
-#[doc = " \"middle\","]
-#[doc = " \"bottom\","]
-#[doc = " \"alphabetic\","]
-#[doc = " \"line-top\","]
-#[doc = " \"line-bottom\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/baselineValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisLabelBaseline {
@@ -8647,22 +2908,6 @@ impl ::std::convert::From for AxisLabelBaseline {
}
}
#[doc = "`AxisLabelBaselineVariant0`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"enum\": ["]
-#[doc = " \"top\","]
-#[doc = " \"middle\","]
-#[doc = " \"bottom\","]
-#[doc = " \"alphabetic\","]
-#[doc = " \"line-top\","]
-#[doc = " \"line-bottom\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -8730,25 +2975,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AxisLabelBaselineVariant
}
}
#[doc = "`AxisLabelBound`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisLabelBound {
@@ -8772,25 +2998,6 @@ impl ::std::convert::From for AxisLabelBound {
}
}
#[doc = "`AxisLabelColor`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/colorValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisLabelColor {
@@ -8804,25 +3011,6 @@ impl ::std::convert::From for AxisLabelColor {
}
}
#[doc = "`AxisLabelFlush`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisLabelFlush {
@@ -8846,22 +3034,6 @@ impl ::std::convert::From for AxisLabelFlush {
}
}
#[doc = "`AxisLabelFont`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisLabelFont {
@@ -8874,22 +3046,6 @@ impl ::std::convert::From for AxisLabelFont {
}
}
#[doc = "`AxisLabelFontSize`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisLabelFontSize {
@@ -8907,22 +3063,6 @@ impl ::std::convert::From for AxisLabelFontSize {
}
}
#[doc = "`AxisLabelFontStyle`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisLabelFontStyle {
@@ -8935,46 +3075,6 @@ impl ::std::convert::From for AxisLabelFontStyle {
}
}
#[doc = "`AxisLabelFontWeight`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"enum\": ["]
-#[doc = " null,"]
-#[doc = " \"normal\","]
-#[doc = " \"bold\","]
-#[doc = " \"lighter\","]
-#[doc = " \"bolder\","]
-#[doc = " \"100\","]
-#[doc = " \"200\","]
-#[doc = " \"300\","]
-#[doc = " \"400\","]
-#[doc = " \"500\","]
-#[doc = " \"600\","]
-#[doc = " \"700\","]
-#[doc = " \"800\","]
-#[doc = " \"900\","]
-#[doc = " 100,"]
-#[doc = " 200,"]
-#[doc = " 300,"]
-#[doc = " 400,"]
-#[doc = " 500,"]
-#[doc = " 600,"]
-#[doc = " 700,"]
-#[doc = " 800,"]
-#[doc = " 900"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/fontWeightValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisLabelFontWeight {
@@ -8992,22 +3092,6 @@ impl ::std::convert::From for AxisLabelFontWeight {
}
}
#[doc = "`AxisLabelLimit`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisLabelLimit {
@@ -9025,22 +3109,6 @@ impl ::std::convert::From for AxisLabelLimit {
}
}
#[doc = "`AxisLabelLineHeight`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisLabelLineHeight {
@@ -9058,22 +3126,6 @@ impl ::std::convert::From for AxisLabelLineHeight {
}
}
#[doc = "`AxisLabelOffset`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisLabelOffset {
@@ -9091,22 +3143,6 @@ impl ::std::convert::From for AxisLabelOffset {
}
}
#[doc = "`AxisLabelOpacity`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisLabelOpacity {
@@ -9124,22 +3160,6 @@ impl ::std::convert::From for AxisLabelOpacity {
}
}
#[doc = "`AxisLabelPadding`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisLabelPadding {
@@ -9157,22 +3177,6 @@ impl ::std::convert::From for AxisLabelPadding {
}
}
#[doc = "`AxisMaxExtent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisMaxExtent {
@@ -9190,22 +3194,6 @@ impl ::std::convert::From for AxisMaxExtent {
}
}
#[doc = "`AxisMinExtent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisMinExtent {
@@ -9223,22 +3211,6 @@ impl ::std::convert::From for AxisMinExtent {
}
}
#[doc = "`AxisOffset`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisOffset {
@@ -9256,27 +3228,6 @@ impl ::std::convert::From for AxisOffset {
}
}
#[doc = "`AxisOrient`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"top\","]
-#[doc = " \"bottom\","]
-#[doc = " \"left\","]
-#[doc = " \"right\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisOrient {
@@ -9294,20 +3245,6 @@ impl ::std::convert::From for AxisOrient {
}
}
#[doc = "`AxisOrientVariant0`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"enum\": ["]
-#[doc = " \"top\","]
-#[doc = " \"bottom\","]
-#[doc = " \"left\","]
-#[doc = " \"right\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -9367,22 +3304,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AxisOrientVariant0 {
}
}
#[doc = "`AxisPosition`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisPosition {
@@ -9400,22 +3321,6 @@ impl ::std::convert::From for AxisPosition {
}
}
#[doc = "`AxisTickCap`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTickCap {
@@ -9428,25 +3333,6 @@ impl ::std::convert::From for AxisTickCap {
}
}
#[doc = "`AxisTickColor`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/colorValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTickColor {
@@ -9460,25 +3346,6 @@ impl ::std::convert::From for AxisTickColor {
}
}
#[doc = "`AxisTickDash`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/arrayValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTickDash {
@@ -9496,22 +3363,6 @@ impl ::std::convert::From for AxisTickDash {
}
}
#[doc = "`AxisTickDashOffset`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTickDashOffset {
@@ -9529,22 +3380,6 @@ impl ::std::convert::From for AxisTickDashOffset {
}
}
#[doc = "`AxisTickOffset`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTickOffset {
@@ -9562,22 +3397,6 @@ impl ::std::convert::From for AxisTickOffset {
}
}
#[doc = "`AxisTickOpacity`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTickOpacity {
@@ -9595,22 +3414,6 @@ impl ::std::convert::From for AxisTickOpacity {
}
}
#[doc = "`AxisTickRound`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/booleanValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTickRound {
@@ -9628,22 +3431,6 @@ impl ::std::convert::From for AxisTickRound {
}
}
#[doc = "`AxisTickSize`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTickSize {
@@ -9661,22 +3448,6 @@ impl ::std::convert::From for AxisTickSize {
}
}
#[doc = "`AxisTickWidth`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTickWidth {
@@ -9694,26 +3465,6 @@ impl ::std::convert::From for AxisTickWidth {
}
}
#[doc = "`AxisTitleAlign`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"left\","]
-#[doc = " \"right\","]
-#[doc = " \"center\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/alignValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTitleAlign {
@@ -9731,19 +3482,6 @@ impl ::std::convert::From for AxisTitleAlign {
}
}
#[doc = "`AxisTitleAlignVariant0`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"enum\": ["]
-#[doc = " \"left\","]
-#[doc = " \"right\","]
-#[doc = " \"center\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -9799,27 +3537,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AxisTitleAlignVariant0 {
}
}
#[doc = "`AxisTitleAnchor`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"enum\": ["]
-#[doc = " null,"]
-#[doc = " \"start\","]
-#[doc = " \"middle\","]
-#[doc = " \"end\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/anchorValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTitleAnchor {
@@ -9837,20 +3554,6 @@ impl ::std::convert::From for AxisTitleAnchor {
}
}
#[doc = "`AxisTitleAnchorVariant0`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"enum\": ["]
-#[doc = " null,"]
-#[doc = " \"start\","]
-#[doc = " \"middle\","]
-#[doc = " \"end\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -9906,22 +3609,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AxisTitleAnchorVariant0
}
}
#[doc = "`AxisTitleAngle`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTitleAngle {
@@ -9939,29 +3626,6 @@ impl ::std::convert::From for AxisTitleAngle {
}
}
#[doc = "`AxisTitleBaseline`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"top\","]
-#[doc = " \"middle\","]
-#[doc = " \"bottom\","]
-#[doc = " \"alphabetic\","]
-#[doc = " \"line-top\","]
-#[doc = " \"line-bottom\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/baselineValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTitleBaseline {
@@ -9979,22 +3643,6 @@ impl ::std::convert::From for AxisTitleBaseline {
}
}
#[doc = "`AxisTitleBaselineVariant0`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"enum\": ["]
-#[doc = " \"top\","]
-#[doc = " \"middle\","]
-#[doc = " \"bottom\","]
-#[doc = " \"alphabetic\","]
-#[doc = " \"line-top\","]
-#[doc = " \"line-bottom\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -10062,25 +3710,6 @@ impl ::std::convert::TryFrom<::std::string::String> for AxisTitleBaselineVariant
}
}
#[doc = "`AxisTitleColor`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/colorValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTitleColor {
@@ -10094,22 +3723,6 @@ impl ::std::convert::From for AxisTitleColor {
}
}
#[doc = "`AxisTitleFont`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTitleFont {
@@ -10122,22 +3735,6 @@ impl ::std::convert::From for AxisTitleFont {
}
}
#[doc = "`AxisTitleFontSize`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTitleFontSize {
@@ -10155,22 +3752,6 @@ impl ::std::convert::From for AxisTitleFontSize {
}
}
#[doc = "`AxisTitleFontStyle`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTitleFontStyle {
@@ -10183,46 +3764,6 @@ impl ::std::convert::From for AxisTitleFontStyle {
}
}
#[doc = "`AxisTitleFontWeight`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"enum\": ["]
-#[doc = " null,"]
-#[doc = " \"normal\","]
-#[doc = " \"bold\","]
-#[doc = " \"lighter\","]
-#[doc = " \"bolder\","]
-#[doc = " \"100\","]
-#[doc = " \"200\","]
-#[doc = " \"300\","]
-#[doc = " \"400\","]
-#[doc = " \"500\","]
-#[doc = " \"600\","]
-#[doc = " \"700\","]
-#[doc = " \"800\","]
-#[doc = " \"900\","]
-#[doc = " 100,"]
-#[doc = " 200,"]
-#[doc = " 300,"]
-#[doc = " 400,"]
-#[doc = " 500,"]
-#[doc = " 600,"]
-#[doc = " 700,"]
-#[doc = " 800,"]
-#[doc = " 900"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/fontWeightValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTitleFontWeight {
@@ -10240,22 +3781,6 @@ impl ::std::convert::From for AxisTitleFontWeight {
}
}
#[doc = "`AxisTitleLimit`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTitleLimit {
@@ -10273,22 +3798,6 @@ impl ::std::convert::From for AxisTitleLimit {
}
}
#[doc = "`AxisTitleLineHeight`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTitleLineHeight {
@@ -10306,22 +3815,6 @@ impl ::std::convert::From for AxisTitleLineHeight {
}
}
#[doc = "`AxisTitleOpacity`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTitleOpacity {
@@ -10339,22 +3832,6 @@ impl ::std::convert::From for AxisTitleOpacity {
}
}
#[doc = "`AxisTitlePadding`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTitlePadding {
@@ -10372,22 +3849,6 @@ impl ::std::convert::From for AxisTitlePadding {
}
}
#[doc = "`AxisTitleX`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTitleX {
@@ -10405,22 +3866,6 @@ impl ::std::convert::From for AxisTitleX {
}
}
#[doc = "`AxisTitleY`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTitleY {
@@ -10438,22 +3883,6 @@ impl ::std::convert::From for AxisTitleY {
}
}
#[doc = "`AxisTranslate`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/numberValue\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum AxisTranslate {
@@ -10471,15 +3900,6 @@ impl ::std::convert::From for AxisTranslate {
}
}
#[doc = "`Background`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"$ref\": \"#/definitions/stringOrSignal\""]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(transparent)]
pub struct Background(pub StringOrSignal);
@@ -10500,181 +3920,6 @@ impl ::std::convert::From for Background {
}
}
#[doc = "`BaseColorValue`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"$ref\": \"#/definitions/linearGradient\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"$ref\": \"#/definitions/radialGradient\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"gradient\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"count\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"gradient\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " },"]
-#[doc = " \"start\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"maxItems\": 2,"]
-#[doc = " \"minItems\": 2"]
-#[doc = " },"]
-#[doc = " \"stop\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"maxItems\": 2,"]
-#[doc = " \"minItems\": 2"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"color\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"color\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/colorRGB\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/colorHSL\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/colorLAB\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/colorHCL\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged, deny_unknown_fields)]
pub enum BaseColorValue {
@@ -10704,97 +3949,6 @@ impl ::std::convert::From for BaseColorValue {
}
}
#[doc = "`BaseColorValueVariant0`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BaseColorValueVariant0 {
@@ -10819,104 +3973,6 @@ impl ::std::convert::From for BaseColorValueVari
}
}
#[doc = "`BaseColorValueVariant0Variant0`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BaseColorValueVariant0Variant0 {
@@ -10942,22 +3998,6 @@ pub enum BaseColorValueVariant0Variant0 {
},
}
#[doc = "`BaseColorValueVariant0Variant0Variant3Range`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BaseColorValueVariant0Variant0Variant3Range {
@@ -11011,104 +4051,6 @@ impl ::std::convert::From for BaseColorValueVariant0Variant0Variant3Range
}
}
#[doc = "`BaseColorValueVariant0Variant1`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -11124,104 +4066,6 @@ impl ::std::convert::From for BaseColorValueVariant0Variant0Variant3Range
#[serde(deny_unknown_fields)]
pub enum BaseColorValueVariant0Variant1 {}
#[doc = "`BaseColorValueVariant0Variant2`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"null\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -11237,28 +4081,6 @@ pub enum BaseColorValueVariant0Variant1 {}
#[serde(deny_unknown_fields)]
pub enum BaseColorValueVariant0Variant2 {}
#[doc = "`BaseColorValueVariant4Color`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/colorRGB\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/colorHSL\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/colorLAB\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/colorHCL\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BaseColorValueVariant4Color {
@@ -11288,192 +4110,6 @@ impl ::std::convert::From for BaseColorValueVariant4Color {
}
}
#[doc = "`BaselineValue`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/rule\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"top\","]
-#[doc = " \"middle\","]
-#[doc = " \"bottom\","]
-#[doc = " \"alphabetic\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"top\","]
-#[doc = " \"middle\","]
-#[doc = " \"bottom\","]
-#[doc = " \"alphabetic\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BaselineValue {
@@ -11491,102 +4127,6 @@ impl ::std::convert::From for BaselineValue {
}
}
#[doc = "`BaselineValueVariant0Item`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/rule\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"top\","]
-#[doc = " \"middle\","]
-#[doc = " \"bottom\","]
-#[doc = " \"alphabetic\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BaselineValueVariant0Item {
@@ -11615,105 +4155,6 @@ impl ::std::convert::From for BaselineValueVa
}
}
#[doc = "`BaselineValueVariant0ItemVariant0`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " },"]
-#[doc = " \"test\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"top\","]
-#[doc = " \"middle\","]
-#[doc = " \"bottom\","]
-#[doc = " \"alphabetic\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BaselineValueVariant0ItemVariant0 {
@@ -11747,20 +4188,6 @@ pub enum BaselineValueVariant0ItemVariant0 {
},
}
#[doc = "`BaselineValueVariant0ItemVariant0Variant1Value`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"enum\": ["]
-#[doc = " \"top\","]
-#[doc = " \"middle\","]
-#[doc = " \"bottom\","]
-#[doc = " \"alphabetic\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -11822,22 +4249,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`BaselineValueVariant0ItemVariant0Variant3Range`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BaselineValueVariant0ItemVariant0Variant3Range {
@@ -11891,105 +4302,6 @@ impl ::std::convert::From for BaselineValueVariant0ItemVariant0Variant3Ran
}
}
#[doc = "`BaselineValueVariant0ItemVariant1`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " },"]
-#[doc = " \"test\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"top\","]
-#[doc = " \"middle\","]
-#[doc = " \"bottom\","]
-#[doc = " \"alphabetic\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -12005,105 +4317,6 @@ impl ::std::convert::From for BaselineValueVariant0ItemVariant0Variant3Ran
#[serde(deny_unknown_fields)]
pub enum BaselineValueVariant0ItemVariant1 {}
#[doc = "`BaselineValueVariant0ItemVariant2`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " },"]
-#[doc = " \"test\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"top\","]
-#[doc = " \"middle\","]
-#[doc = " \"bottom\","]
-#[doc = " \"alphabetic\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -12119,95 +4332,6 @@ pub enum BaselineValueVariant0ItemVariant1 {}
#[serde(deny_unknown_fields)]
pub enum BaselineValueVariant0ItemVariant2 {}
#[doc = "`BaselineValueVariant1`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"top\","]
-#[doc = " \"middle\","]
-#[doc = " \"bottom\","]
-#[doc = " \"alphabetic\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BaselineValueVariant1 {
@@ -12232,102 +4356,6 @@ impl ::std::convert::From for BaselineValueVarian
}
}
#[doc = "`BaselineValueVariant1Variant0`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"top\","]
-#[doc = " \"middle\","]
-#[doc = " \"bottom\","]
-#[doc = " \"alphabetic\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BaselineValueVariant1Variant0 {
@@ -12353,20 +4381,6 @@ pub enum BaselineValueVariant1Variant0 {
},
}
#[doc = "`BaselineValueVariant1Variant0Variant1Value`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"enum\": ["]
-#[doc = " \"top\","]
-#[doc = " \"middle\","]
-#[doc = " \"bottom\","]
-#[doc = " \"alphabetic\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -12426,22 +4440,6 @@ impl ::std::convert::TryFrom<::std::string::String> for BaselineValueVariant1Var
}
}
#[doc = "`BaselineValueVariant1Variant0Variant3Range`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BaselineValueVariant1Variant0Variant3Range {
@@ -12493,102 +4491,6 @@ impl ::std::convert::From for BaselineValueVariant1Variant0Variant3Range {
}
}
#[doc = "`BaselineValueVariant1Variant1`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"top\","]
-#[doc = " \"middle\","]
-#[doc = " \"bottom\","]
-#[doc = " \"alphabetic\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -12604,102 +4506,6 @@ impl ::std::convert::From for BaselineValueVariant1Variant0Variant3Range {
#[serde(deny_unknown_fields)]
pub enum BaselineValueVariant1Variant1 {}
#[doc = "`BaselineValueVariant1Variant2`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"top\","]
-#[doc = " \"middle\","]
-#[doc = " \"bottom\","]
-#[doc = " \"alphabetic\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -12715,230 +4521,6 @@ pub enum BaselineValueVariant1Variant1 {}
#[serde(deny_unknown_fields)]
pub enum BaselineValueVariant1Variant2 {}
#[doc = "`BinTransform`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"extent\","]
-#[doc = " \"field\","]
-#[doc = " \"type\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"anchor\": {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"as\": {"]
-#[doc = " \"default\": ["]
-#[doc = " \"bin0\","]
-#[doc = " \"bin1\""]
-#[doc = " ],"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"maxItems\": 2,"]
-#[doc = " \"minItems\": 2"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"base\": {"]
-#[doc = " \"default\": 10,"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"divide\": {"]
-#[doc = " \"default\": ["]
-#[doc = " 5,"]
-#[doc = " 2"]
-#[doc = " ],"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"extent\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"maxItems\": 2,"]
-#[doc = " \"minItems\": 2"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"field\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/scaleField\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/paramField\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/expr\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"interval\": {"]
-#[doc = " \"default\": true,"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"maxbins\": {"]
-#[doc = " \"default\": 20,"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"minstep\": {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"nice\": {"]
-#[doc = " \"default\": true,"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"signal\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"span\": {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"step\": {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"steps\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"type\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"bin\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(deny_unknown_fields)]
pub struct BinTransform {
@@ -12974,22 +4556,6 @@ pub struct BinTransform {
pub type_: BinTransformType,
}
#[doc = "`BinTransformAnchor`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BinTransformAnchor {
@@ -13007,38 +4573,6 @@ impl ::std::convert::From for BinTransformAnchor {
}
}
#[doc = "`BinTransformAs`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"default\": ["]
-#[doc = " \"bin0\","]
-#[doc = " \"bin1\""]
-#[doc = " ],"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"maxItems\": 2,"]
-#[doc = " \"minItems\": 2"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BinTransformAs {
@@ -13064,22 +4598,6 @@ impl ::std::convert::From for BinTransformAs {
}
}
#[doc = "`BinTransformAsArrayItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BinTransformAsArrayItem {
@@ -13092,23 +4610,6 @@ impl ::std::convert::From for BinTransformAsArrayItem {
}
}
#[doc = "`BinTransformBase`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"default\": 10,"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BinTransformBase {
@@ -13131,36 +4632,6 @@ impl ::std::convert::From for BinTransformBase {
}
}
#[doc = "`BinTransformDivide`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"default\": ["]
-#[doc = " 5,"]
-#[doc = " 2"]
-#[doc = " ],"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BinTransformDivide {
@@ -13186,22 +4657,6 @@ impl ::std::convert::From for BinTransformDivide {
}
}
#[doc = "`BinTransformDivideArrayItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BinTransformDivideArrayItem {
@@ -13219,34 +4674,6 @@ impl ::std::convert::From for BinTransformDivideArrayItem {
}
}
#[doc = "`BinTransformExtent`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"maxItems\": 2,"]
-#[doc = " \"minItems\": 2"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BinTransformExtent {
@@ -13264,22 +4691,6 @@ impl ::std::convert::From for BinTransformExtent {
}
}
#[doc = "`BinTransformExtentArrayItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BinTransformExtentArrayItem {
@@ -13297,25 +4708,6 @@ impl ::std::convert::From for BinTransformExtentArrayItem {
}
}
#[doc = "`BinTransformField`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/scaleField\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/paramField\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/expr\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BinTransformField {
@@ -13339,23 +4731,6 @@ impl ::std::convert::From for BinTransformField {
}
}
#[doc = "`BinTransformInterval`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"default\": true,"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BinTransformInterval {
@@ -13378,23 +4753,6 @@ impl ::std::convert::From for BinTransformInterval {
}
}
#[doc = "`BinTransformMaxbins`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"default\": 20,"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BinTransformMaxbins {
@@ -13417,22 +4775,6 @@ impl ::std::convert::From for BinTransformMaxbins {
}
}
#[doc = "`BinTransformMinstep`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BinTransformMinstep {
@@ -13450,22 +4792,6 @@ impl ::std::convert::From for BinTransformMinstep {
}
}
#[doc = "`BinTransformName`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BinTransformName {
@@ -13478,23 +4804,6 @@ impl ::std::convert::From for BinTransformName {
}
}
#[doc = "`BinTransformNice`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"default\": true,"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BinTransformNice {
@@ -13517,22 +4826,6 @@ impl ::std::convert::From for BinTransformNice {
}
}
#[doc = "`BinTransformSpan`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BinTransformSpan {
@@ -13550,22 +4843,6 @@ impl ::std::convert::From for BinTransformSpan {
}
}
#[doc = "`BinTransformStep`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BinTransformStep {
@@ -13583,32 +4860,6 @@ impl ::std::convert::From for BinTransformStep {
}
}
#[doc = "`BinTransformSteps`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BinTransformSteps {
@@ -13626,22 +4877,6 @@ impl ::std::convert::From for BinTransformSteps {
}
}
#[doc = "`BinTransformStepsArrayItem`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BinTransformStepsArrayItem {
@@ -13659,17 +4894,6 @@ impl ::std::convert::From for BinTransformStepsArrayItem {
}
}
#[doc = "`BinTransformType`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"enum\": ["]
-#[doc = " \"bin\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -13717,151 +4941,6 @@ impl ::std::convert::TryFrom<::std::string::String> for BinTransformType {
}
}
#[doc = "`Bind`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"input\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"debounce\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"element\": {"]
-#[doc = " \"$ref\": \"#/definitions/element\""]
-#[doc = " },"]
-#[doc = " \"input\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"checkbox\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"input\","]
-#[doc = " \"options\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"debounce\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"element\": {"]
-#[doc = " \"$ref\": \"#/definitions/element\""]
-#[doc = " },"]
-#[doc = " \"input\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"radio\","]
-#[doc = " \"select\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"labels\": {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"options\": {"]
-#[doc = " \"type\": \"array\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"input\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"debounce\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"element\": {"]
-#[doc = " \"$ref\": \"#/definitions/element\""]
-#[doc = " },"]
-#[doc = " \"input\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"range\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " \"max\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"min\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " },"]
-#[doc = " \"step\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"input\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"debounce\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"element\": {"]
-#[doc = " \"$ref\": \"#/definitions/element\""]
-#[doc = " },"]
-#[doc = " \"input\": {"]
-#[doc = " \"not\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"checkbox\","]
-#[doc = " \"radio\","]
-#[doc = " \"range\","]
-#[doc = " \"select\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"name\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": true"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"element\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"debounce\": {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " \"element\": {"]
-#[doc = " \"$ref\": \"#/definitions/element\""]
-#[doc = " },"]
-#[doc = " \"event\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " \"additionalProperties\": false"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged, deny_unknown_fields)]
pub enum Bind {
@@ -13919,17 +4998,6 @@ pub enum Bind {
},
}
#[doc = "`BindVariant0Input`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"enum\": ["]
-#[doc = " \"checkbox\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -13977,18 +5045,6 @@ impl ::std::convert::TryFrom<::std::string::String> for BindVariant0Input {
}
}
#[doc = "`BindVariant1Input`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"enum\": ["]
-#[doc = " \"radio\","]
-#[doc = " \"select\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -14040,17 +5096,6 @@ impl ::std::convert::TryFrom<::std::string::String> for BindVariant1Input {
}
}
#[doc = "`BindVariant2Input`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"enum\": ["]
-#[doc = " \"range\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -14098,22 +5143,6 @@ impl ::std::convert::TryFrom<::std::string::String> for BindVariant2Input {
}
}
#[doc = "`BindVariant3Input`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"not\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " \"checkbox\","]
-#[doc = " \"radio\","]
-#[doc = " \"range\","]
-#[doc = " \"select\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Serialize, Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
#[serde(transparent)]
pub struct BindVariant3Input(::std::string::String);
@@ -14157,216 +5186,6 @@ impl<'de> ::serde::Deserialize<'de> for BindVariant3Input {
}
}
#[doc = "`BlendValue`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/rule\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " null,"]
-#[doc = " \"multiply\","]
-#[doc = " \"screen\","]
-#[doc = " \"overlay\","]
-#[doc = " \"darken\","]
-#[doc = " \"lighten\","]
-#[doc = " \"color-dodge\","]
-#[doc = " \"color-burn\","]
-#[doc = " \"hard-light\","]
-#[doc = " \"soft-light\","]
-#[doc = " \"difference\","]
-#[doc = " \"exclusion\","]
-#[doc = " \"hue\","]
-#[doc = " \"saturation\","]
-#[doc = " \"color\","]
-#[doc = " \"luminosity\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " null,"]
-#[doc = " \"multiply\","]
-#[doc = " \"screen\","]
-#[doc = " \"overlay\","]
-#[doc = " \"darken\","]
-#[doc = " \"lighten\","]
-#[doc = " \"color-dodge\","]
-#[doc = " \"color-burn\","]
-#[doc = " \"hard-light\","]
-#[doc = " \"soft-light\","]
-#[doc = " \"difference\","]
-#[doc = " \"exclusion\","]
-#[doc = " \"hue\","]
-#[doc = " \"saturation\","]
-#[doc = " \"color\","]
-#[doc = " \"luminosity\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BlendValue {
@@ -14384,114 +5203,6 @@ impl ::std::convert::From for BlendValue {
}
}
#[doc = "`BlendValueVariant0Item`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/rule\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " null,"]
-#[doc = " \"multiply\","]
-#[doc = " \"screen\","]
-#[doc = " \"overlay\","]
-#[doc = " \"darken\","]
-#[doc = " \"lighten\","]
-#[doc = " \"color-dodge\","]
-#[doc = " \"color-burn\","]
-#[doc = " \"hard-light\","]
-#[doc = " \"soft-light\","]
-#[doc = " \"difference\","]
-#[doc = " \"exclusion\","]
-#[doc = " \"hue\","]
-#[doc = " \"saturation\","]
-#[doc = " \"color\","]
-#[doc = " \"luminosity\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BlendValueVariant0Item {
@@ -14520,117 +5231,6 @@ impl ::std::convert::From for BlendValueVariant0
}
}
#[doc = "`BlendValueVariant0ItemVariant0`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " },"]
-#[doc = " \"test\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " null,"]
-#[doc = " \"multiply\","]
-#[doc = " \"screen\","]
-#[doc = " \"overlay\","]
-#[doc = " \"darken\","]
-#[doc = " \"lighten\","]
-#[doc = " \"color-dodge\","]
-#[doc = " \"color-burn\","]
-#[doc = " \"hard-light\","]
-#[doc = " \"soft-light\","]
-#[doc = " \"difference\","]
-#[doc = " \"exclusion\","]
-#[doc = " \"hue\","]
-#[doc = " \"saturation\","]
-#[doc = " \"color\","]
-#[doc = " \"luminosity\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BlendValueVariant0ItemVariant0 {
@@ -14664,32 +5264,6 @@ pub enum BlendValueVariant0ItemVariant0 {
},
}
#[doc = "`BlendValueVariant0ItemVariant0Variant1Value`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"enum\": ["]
-#[doc = " null,"]
-#[doc = " \"multiply\","]
-#[doc = " \"screen\","]
-#[doc = " \"overlay\","]
-#[doc = " \"darken\","]
-#[doc = " \"lighten\","]
-#[doc = " \"color-dodge\","]
-#[doc = " \"color-burn\","]
-#[doc = " \"hard-light\","]
-#[doc = " \"soft-light\","]
-#[doc = " \"difference\","]
-#[doc = " \"exclusion\","]
-#[doc = " \"hue\","]
-#[doc = " \"saturation\","]
-#[doc = " \"color\","]
-#[doc = " \"luminosity\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -14795,22 +5369,6 @@ impl ::std::convert::TryFrom<::std::string::String>
}
}
#[doc = "`BlendValueVariant0ItemVariant0Variant3Range`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BlendValueVariant0ItemVariant0Variant3Range {
@@ -14864,117 +5422,6 @@ impl ::std::convert::From for BlendValueVariant0ItemVariant0Variant3Range
}
}
#[doc = "`BlendValueVariant0ItemVariant1`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " },"]
-#[doc = " \"test\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " null,"]
-#[doc = " \"multiply\","]
-#[doc = " \"screen\","]
-#[doc = " \"overlay\","]
-#[doc = " \"darken\","]
-#[doc = " \"lighten\","]
-#[doc = " \"color-dodge\","]
-#[doc = " \"color-burn\","]
-#[doc = " \"hard-light\","]
-#[doc = " \"soft-light\","]
-#[doc = " \"difference\","]
-#[doc = " \"exclusion\","]
-#[doc = " \"hue\","]
-#[doc = " \"saturation\","]
-#[doc = " \"color\","]
-#[doc = " \"luminosity\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -14990,117 +5437,6 @@ impl ::std::convert::From for BlendValueVariant0ItemVariant0Variant3Range
#[serde(deny_unknown_fields)]
pub enum BlendValueVariant0ItemVariant1 {}
#[doc = "`BlendValueVariant0ItemVariant2`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " },"]
-#[doc = " \"test\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " null,"]
-#[doc = " \"multiply\","]
-#[doc = " \"screen\","]
-#[doc = " \"overlay\","]
-#[doc = " \"darken\","]
-#[doc = " \"lighten\","]
-#[doc = " \"color-dodge\","]
-#[doc = " \"color-burn\","]
-#[doc = " \"hard-light\","]
-#[doc = " \"soft-light\","]
-#[doc = " \"difference\","]
-#[doc = " \"exclusion\","]
-#[doc = " \"hue\","]
-#[doc = " \"saturation\","]
-#[doc = " \"color\","]
-#[doc = " \"luminosity\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -15116,107 +5452,6 @@ pub enum BlendValueVariant0ItemVariant1 {}
#[serde(deny_unknown_fields)]
pub enum BlendValueVariant0ItemVariant2 {}
#[doc = "`BlendValueVariant1`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " null,"]
-#[doc = " \"multiply\","]
-#[doc = " \"screen\","]
-#[doc = " \"overlay\","]
-#[doc = " \"darken\","]
-#[doc = " \"lighten\","]
-#[doc = " \"color-dodge\","]
-#[doc = " \"color-burn\","]
-#[doc = " \"hard-light\","]
-#[doc = " \"soft-light\","]
-#[doc = " \"difference\","]
-#[doc = " \"exclusion\","]
-#[doc = " \"hue\","]
-#[doc = " \"saturation\","]
-#[doc = " \"color\","]
-#[doc = " \"luminosity\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BlendValueVariant1 {
@@ -15241,114 +5476,6 @@ impl ::std::convert::From for BlendValueVariant1 {
}
}
#[doc = "`BlendValueVariant1Variant0`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " null,"]
-#[doc = " \"multiply\","]
-#[doc = " \"screen\","]
-#[doc = " \"overlay\","]
-#[doc = " \"darken\","]
-#[doc = " \"lighten\","]
-#[doc = " \"color-dodge\","]
-#[doc = " \"color-burn\","]
-#[doc = " \"hard-light\","]
-#[doc = " \"soft-light\","]
-#[doc = " \"difference\","]
-#[doc = " \"exclusion\","]
-#[doc = " \"hue\","]
-#[doc = " \"saturation\","]
-#[doc = " \"color\","]
-#[doc = " \"luminosity\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BlendValueVariant1Variant0 {
@@ -15374,32 +5501,6 @@ pub enum BlendValueVariant1Variant0 {
},
}
#[doc = "`BlendValueVariant1Variant0Variant1Value`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"enum\": ["]
-#[doc = " null,"]
-#[doc = " \"multiply\","]
-#[doc = " \"screen\","]
-#[doc = " \"overlay\","]
-#[doc = " \"darken\","]
-#[doc = " \"lighten\","]
-#[doc = " \"color-dodge\","]
-#[doc = " \"color-burn\","]
-#[doc = " \"hard-light\","]
-#[doc = " \"soft-light\","]
-#[doc = " \"difference\","]
-#[doc = " \"exclusion\","]
-#[doc = " \"hue\","]
-#[doc = " \"saturation\","]
-#[doc = " \"color\","]
-#[doc = " \"luminosity\""]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -15503,22 +5604,6 @@ impl ::std::convert::TryFrom<::std::string::String> for BlendValueVariant1Varian
}
}
#[doc = "`BlendValueVariant1Variant0Variant3Range`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BlendValueVariant1Variant0Variant3Range {
@@ -15570,114 +5655,6 @@ impl ::std::convert::From for BlendValueVariant1Variant0Variant3Range {
}
}
#[doc = "`BlendValueVariant1Variant1`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " null,"]
-#[doc = " \"multiply\","]
-#[doc = " \"screen\","]
-#[doc = " \"overlay\","]
-#[doc = " \"darken\","]
-#[doc = " \"lighten\","]
-#[doc = " \"color-dodge\","]
-#[doc = " \"color-burn\","]
-#[doc = " \"hard-light\","]
-#[doc = " \"soft-light\","]
-#[doc = " \"difference\","]
-#[doc = " \"exclusion\","]
-#[doc = " \"hue\","]
-#[doc = " \"saturation\","]
-#[doc = " \"color\","]
-#[doc = " \"luminosity\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -15693,114 +5670,6 @@ impl ::std::convert::From for BlendValueVariant1Variant0Variant3Range {
#[serde(deny_unknown_fields)]
pub enum BlendValueVariant1Variant1 {}
#[doc = "`BlendValueVariant1Variant2`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"enum\": ["]
-#[doc = " null,"]
-#[doc = " \"multiply\","]
-#[doc = " \"screen\","]
-#[doc = " \"overlay\","]
-#[doc = " \"darken\","]
-#[doc = " \"lighten\","]
-#[doc = " \"color-dodge\","]
-#[doc = " \"color-burn\","]
-#[doc = " \"hard-light\","]
-#[doc = " \"soft-light\","]
-#[doc = " \"difference\","]
-#[doc = " \"exclusion\","]
-#[doc = " \"hue\","]
-#[doc = " \"saturation\","]
-#[doc = " \"color\","]
-#[doc = " \"luminosity\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -15816,22 +5685,6 @@ pub enum BlendValueVariant1Variant1 {}
#[serde(deny_unknown_fields)]
pub enum BlendValueVariant1Variant2 {}
#[doc = "`BooleanOrSignal`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BooleanOrSignal {
@@ -15849,182 +5702,6 @@ impl ::std::convert::From for BooleanOrSignal {
}
}
#[doc = "`BooleanValue`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"array\","]
-#[doc = " \"items\": {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/rule\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BooleanValue {
@@ -16042,97 +5719,6 @@ impl ::std::convert::From for BooleanValue {
}
}
#[doc = "`BooleanValueVariant0Item`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/rule\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BooleanValueVariant0Item {
@@ -16161,100 +5747,6 @@ impl ::std::convert::From for BooleanValueVari
}
}
#[doc = "`BooleanValueVariant0ItemVariant0`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " },"]
-#[doc = " \"test\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BooleanValueVariant0ItemVariant0 {
@@ -16288,22 +5780,6 @@ pub enum BooleanValueVariant0ItemVariant0 {
},
}
#[doc = "`BooleanValueVariant0ItemVariant0Variant3Range`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BooleanValueVariant0ItemVariant0Variant3Range {
@@ -16357,100 +5833,6 @@ impl ::std::convert::From for BooleanValueVariant0ItemVariant0Variant3Rang
}
}
#[doc = "`BooleanValueVariant0ItemVariant1`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " },"]
-#[doc = " \"test\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -16466,100 +5848,6 @@ impl ::std::convert::From for BooleanValueVariant0ItemVariant0Variant3Rang
#[serde(deny_unknown_fields)]
pub enum BooleanValueVariant0ItemVariant1 {}
#[doc = "`BooleanValueVariant0ItemVariant2`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"properties\": {"]
-#[doc = " \"scale\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " },"]
-#[doc = " \"test\": {"]
-#[doc = " \"type\": \"string\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"not\": {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(
:: serde :: Deserialize,
:: serde :: Serialize,
@@ -16575,90 +5863,6 @@ pub enum BooleanValueVariant0ItemVariant1 {}
#[serde(deny_unknown_fields)]
pub enum BooleanValueVariant0ItemVariant2 {}
#[doc = "`BooleanValueVariant1`"]
-#[doc = r""]
-#[doc = r" JSON schema
"]
-#[doc = r""]
-#[doc = r" ```json"]
-#[doc = "{"]
-#[doc = " \"allOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/stringModifiers\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"anyOf\": ["]
-#[doc = " {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"$ref\": \"#/definitions/signalRef\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"value\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"value\": {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"field\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"field\": {"]
-#[doc = " \"$ref\": \"#/definitions/field\""]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"range\""]
-#[doc = " ],"]
-#[doc = " \"properties\": {"]
-#[doc = " \"range\": {"]
-#[doc = " \"oneOf\": ["]
-#[doc = " {"]
-#[doc = " \"type\": \"number\""]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"boolean\""]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"scale\","]
-#[doc = " \"value\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"band\","]
-#[doc = " \"scale\""]
-#[doc = " ]"]
-#[doc = " },"]
-#[doc = " {"]
-#[doc = " \"type\": \"object\","]
-#[doc = " \"required\": ["]
-#[doc = " \"offset\""]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = " }"]
-#[doc = " ]"]
-#[doc = "}"]
-#[doc = r" ```"]
-#[doc = r" "]
#[derive(:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug)]
#[serde(untagged)]
pub enum BooleanValueVariant1 {
@@ -16683,97 +5887,6 @@ impl ::std::convert::From for BooleanValueVariant1
}
}
#[doc = "`BooleanValueVariant1Variant0`"]
-#[doc = r""]
-#[doc = r"