OBJECT

ManagementEndpointPropertyMetadata

link GraphQL Schema definition

  • type ManagementEndpointPropertyMetadata {
  • # Default value for the property
  • defaultValue: Object
  • # Boolean flag to indicate whether the property is immutable
  • isImmutable: Boolean
  • # Boolean flag to indicate whether the property is internal or public
  • isInternal: Boolean
  • # Flag to indicate whether the property is mandatory
  • isRequired: Boolean!
  • # Boolean flag to indicate whether the property is a secret field. This is
  • # applicable only for credential properties.
  • isSecret: Boolean
  • # For numeric properties optionally specify a maximum value
  • maxValue: Object
  • # For numeric properties optionally specify a minimal value
  • minValue: Object
  • # Optionally specify an enumerated list of possible values (can be used for any
  • # type)
  • permittedValues: [Object!]
  • # Optionally specify the semantic of the property, permits validation
  • propertySemantic: ManagementEndpointPropertySemantic
  • }