Ampersand · Schema

AssociationLabels

UI labels for an association

Developer ToolsIntegrationPlatformSoftware-as-a-ServiceAuthenticationData SyncWebhook

Properties

Name Type Description
singular string Singular display label
plural string Plural display label
View JSON Schema on GitHub

JSON Schema

ampersand-api-association-labels-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ampersand/refs/heads/main/json-schema/ampersand-api-association-labels-schema.json",
  "title": "AssociationLabels",
  "description": "UI labels for an association",
  "type": "object",
  "properties": {
    "singular": {
      "type": "string",
      "description": "Singular display label"
    },
    "plural": {
      "type": "string",
      "description": "Plural display label"
    }
  }
}