Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for ExternalDocs (0.19 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1.CustomResourceDefinition.json

                  ]
                },
                "additionalItems": true,
                "definitions": {
                  "definitionsKey": {}
                },
                "externalDocs": {
                  "description": "descriptionValue",
                  "url": "urlValue"
                },
                "example": "exampleValue",
                "nullable": true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/jsonschemaprops.go

    	Definitions            *v1.JSONSchemaDefinitions                    `json:"definitions,omitempty"`
    	ExternalDocs           *ExternalDocumentationApplyConfiguration     `json:"externalDocs,omitempty"`
    	Example                *v1.JSON                                     `json:"example,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/convert_test.go

    		origSchema := &apiextensions.JSONSchemaProps{}
    		x := reflect.ValueOf(origSchema).Elem()
    		n := rand.Intn(x.NumField())
    		if name := x.Type().Field(n).Name; name == "Example" || name == "ExternalDocs" {
    			// we drop these intentionally
    			continue
    		}
    		f.Fuzz(x.Field(n).Addr().Interface())
    
    		// it roundtrips or NewStructural errors out. We should never drop anything
    		orig, err := NewStructural(origSchema)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 02:09:41 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/jsonschemaprops.go

    	Definitions            *v1beta1.JSONSchemaDefinitions               `json:"definitions,omitempty"`
    	ExternalDocs           *ExternalDocumentationApplyConfiguration     `json:"externalDocs,omitempty"`
    	Example                *v1beta1.JSON                                `json:"example,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  5. docs/em/docs/tutorial/metadata.md

    ⚫️ ✊ 📇 ⚗ 1️⃣ 📖 🔠 🔖.
    
    🔠 📖 💪 🔌:
    
    * `name` (**✔**): `str` ⏮️ 🎏 📛 👆 ⚙️ `tags` 🔢 👆 *➡ 🛠️* & `APIRouter`Ⓜ.
    * `description`: `str` ⏮️ 📏 📛 🔖. ⚫️ 💪 ✔️ ✍ & 🔜 🎦 🩺 🎚.
    * `externalDocs`: `dict` 🔬 🔢 🧾 ⏮️:
        * `description`: `str` ⏮️ 📏 📛 🔢 🩺.
        * `url` (**✔**): `str` ⏮️ 📛 🔢 🧾.
    
    ### ✍ 🗃 🔖
    
    ➡️ 🔄 👈 🖼 ⏮️ 🔖 `users` & `items`.
    
    ✍ 🗃 👆 🔖 & 🚶‍♀️ ⚫️ `openapi_tags` 🔢:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. samples/bookinfo/swagger.yaml

    - name: "product"
      description: "Information about a product (in this case a book)"
    - name: "review"
      description: "Review information for a product"
    - name: "rating"
      description: "Rating information for a product"
    externalDocs:
      description: "Learn more about the Istio BookInfo application"
      url: "https://istio.io/docs/samples/bookinfo.html"
    paths:
      /products:
        get:
          tags:
          - "product"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 17:00:23 UTC 2017
    - 6.2K bytes
    - Viewed (0)
  7. docs/ru/docs/tutorial/metadata.md

    * `description`: `str`-значение с кратким описанием для тега. Может содержать Markdown и будет отображаться в UI документации.
    * `externalDocs`:  `dict`-значение описывающее внешнюю документацию. Включает в себя:
        * `description`: `str`-значение с кратким описанием для внешней документации.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/metadata.md

    * `description`: a `str` with a short description for the tag. It can have Markdown and will be shown in the docs UI.
    * `externalDocs`: a `dict` describing external documentation with:
        * `description`: a `str` with a short description for the external docs.
        * `url` (**required**): a `str` with the URL for the external documentation.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/convert.go

    //   - id
    //   - schema
    //   - $ref
    //   - patternProperties
    //   - dependencies
    //   - additionalItems
    //   - definitions.
    //
    // The follow fields are not preserved:
    // - externalDocs
    // - example.
    func NewStructural(s *apiextensions.JSONSchemaProps) (*Structural, error) {
    	if s == nil {
    		return nil, nil
    	}
    
    	if err := validateUnsupportedFields(s); err != nil {
    		return nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/metadata.md

    * `description`: ein `str` mit einer kurzen Beschreibung für das Tag. Sie kann Markdown enthalten und wird in der Benutzeroberfläche der Dokumentation angezeigt.
    * `externalDocs`: ein `dict`, das externe Dokumentation beschreibt mit:
         * `description`: ein `str` mit einer kurzen Beschreibung für die externe Dokumentation.
         * `url` (**erforderlich**): ein `str` mit der URL für die externe Dokumentation.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:25:38 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top