// Copyright 2025 Oxide Computer Company
/// Optional metadata that's part of a `ManagedApiConfig`.
#[derive(Clone, Debug, Default)]pubstructManagedApiMetadata{/// human-readable description of the API (goes into OpenAPI document)
pubdescription:Option<&'staticstr>,
/// the contact URL for the API (goes into OpenAPI document)
pubcontact_url:Option<&'staticstr>,
/// the contact email for the API (goes into OpenAPI document)
pubcontact_email:Option<&'staticstr>,
/// extra, dynamically-typed metadata for internal use
pubextra:serde_json::Value,
}