Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for ExternalDocs (0.15 sec)

  1. docs_src/metadata/tutorial004.py

            "description": "Operations with users. The **login** logic is also here.",
        },
        {
            "name": "items",
            "description": "Manage items. So _fancy_ they have their own docs.",
            "externalDocs": {
                "description": "Items external docs",
                "url": "https://fastapi.tiangolo.com/",
            },
        },
    ]
    
    app = FastAPI(openapi_tags=tags_metadata)
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 13 11:58:06 UTC 2020
    - 693 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1beta1.CustomResourceDefinition.json

                "\u003cno json tag\u003e PropertyValue"
              ]
            },
            "additionalItems": true,
            "definitions": {
              "definitionsKey": {}
            },
            "externalDocs": {
              "description": "descriptionValue",
              "url": "urlValue"
            },
            "example": "exampleValue",
            "nullable": true,
            "x-kubernetes-preserve-unknown-fields": true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/deepcopy.go

    		in, out := &in.Definitions, &out.Definitions
    		*out = make(JSONSchemaDefinitions, len(*in))
    		for key, val := range *in {
    			(*out)[key] = *val.DeepCopy()
    		}
    	}
    
    	if in.ExternalDocs != nil {
    		in, out := &in.ExternalDocs, &out.ExternalDocs
    		if *in == nil {
    			*out = nil
    		} else {
    			*out = new(ExternalDocumentation)
    			(*in).DeepCopyInto(*out)
    		}
    	}
    
    	if in.XPreserveUnknownFields != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 17:55:23 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/deepcopy.go

    		in, out := &in.Definitions, &out.Definitions
    		*out = make(JSONSchemaDefinitions, len(*in))
    		for key, val := range *in {
    			(*out)[key] = *val.DeepCopy()
    		}
    	}
    
    	if in.ExternalDocs != nil {
    		in, out := &in.ExternalDocs, &out.ExternalDocs
    		if *in == nil {
    			*out = nil
    		} else {
    			*out = new(ExternalDocumentation)
    			(*in).DeepCopyInto(*out)
    		}
    	}
    
    	if in.XPreserveUnknownFields != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 17:55:23 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/validation.go

    				return err
    			}
    			(*out)[key] = *newVal
    		}
    	}
    
    	if in.ExternalDocs != nil {
    		out.ExternalDocs = &spec.ExternalDocumentation{}
    		out.ExternalDocs.Description = in.ExternalDocs.Description
    		out.ExternalDocs.URL = in.ExternalDocs.URL
    	}
    
    	if postProcess != nil {
    		if err := postProcess(out); err != nil {
    			return err
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 18:23:28 UTC 2023
    - 15K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/deepcopy.go

    		in, out := &in.Definitions, &out.Definitions
    		*out = make(JSONSchemaDefinitions, len(*in))
    		for key, val := range *in {
    			(*out)[key] = *val.DeepCopy()
    		}
    	}
    
    	if in.ExternalDocs != nil {
    		in, out := &in.ExternalDocs, &out.ExternalDocs
    		if *in == nil {
    			*out = nil
    		} else {
    			*out = new(ExternalDocumentation)
    			(*in).DeepCopyInto(*out)
    		}
    	}
    
    	if in.XPreserveUnknownFields != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 17:55:23 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1beta1.CustomResourceDefinition.yaml

            - <no json tag> PropertyValue
          description: descriptionValue
          enum:
          - enumValue
          example: exampleValue
          exclusiveMaximum: true
          exclusiveMinimum: true
          externalDocs:
            description: descriptionValue
            url: urlValue
          format: formatValue
          id: idValue
          items:
          - {}
          maxItems: 16
          maxLength: 13
          maxProperties: 21
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_metadata/test_tutorial004.py

                },
                {
                    "name": "items",
                    "description": "Manage items. So _fancy_ they have their own docs.",
                    "externalDocs": {
                        "description": "Items external docs",
                        "url": "https://fastapi.tiangolo.com/",
                    },
                },
            ],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. fastapi/openapi/models.py

        # Ref: OpenAPI 3.1.0: https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#schema-object
        # Schema Object
        discriminator: Optional[Discriminator] = None
        xml: Optional[XML] = None
        externalDocs: Optional[ExternalDocumentation] = None
        example: Annotated[
            Optional[Any],
            typing_deprecated(
                "Deprecated in OpenAPI 3.1.0 that now uses JSON Schema 2020-12, "
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 22:49:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1.CustomResourceDefinition.yaml

              - <no json tag> PropertyValue
            description: descriptionValue
            enum:
            - enumValue
            example: exampleValue
            exclusiveMaximum: true
            exclusiveMinimum: true
            externalDocs:
              description: descriptionValue
              url: urlValue
            format: formatValue
            id: idValue
            items:
            - {}
            maxItems: 16
            maxLength: 13
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top