Acquia · JSON Structure

Acquia Cloud Team Structure

team schema from Acquia Cloud API

Type: object Properties: 6 Required: 6
ContentExperience

Team is a JSON Structure definition published by Acquia, describing 6 properties, of which 6 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

uuid name created_at updated_at organization _links

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/acquia/refs/heads/main/json-structure/acquia-cloud-team-structure.json",
  "description": "team schema from Acquia Cloud API",
  "type": "object",
  "properties": {
    "uuid": {
      "type": "uuid",
      "description": "The UUID of the team."
    },
    "name": {
      "type": "string",
      "description": "The name of the team."
    },
    "created_at": {
      "type": "datetime",
      "description": "The date the team was created."
    },
    "updated_at": {
      "type": "datetime",
      "description": "The date the team was last updated."
    },
    "organization": {
      "$ref": "#/components/schemas/Acquia_Cloud_API_Documentation_organization-stub"
    },
    "_links": {
      "$ref": "#/components/schemas/Acquia_Cloud_API_Documentation_links"
    }
  },
  "required": [
    "uuid",
    "name",
    "created_at",
    "updated_at",
    "organization",
    "_links"
  ],
  "name": "Team"
}