Amazon Managed Apache Flink Maven Reference Structure

The information required to specify a Maven reference. You can use Maven references to specify dependency JAR files.

Type: object Properties: 3 Required: 3
Apache FlinkBig DataReal-Time ProcessingStreaming Analytics

MavenReference is a JSON Structure definition published by Amazon Managed Service for Apache Flink, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

GroupId ArtifactId Version

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/amazon-managed-apache-flink/refs/heads/main/json-structure/amazon-managed-apache-flink-maven-reference-structure.json",
  "name": "MavenReference",
  "description": "The information required to specify a Maven reference. You can use Maven references to specify dependency JAR files.",
  "type": "object",
  "properties": {
    "GroupId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MavenGroupId"
        },
        {
          "description": "The group ID of the Maven reference."
        }
      ]
    },
    "ArtifactId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MavenArtifactId"
        },
        {
          "description": "The artifact ID of the Maven reference."
        }
      ]
    },
    "Version": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MavenVersion"
        },
        {
          "description": "The version of the Maven reference."
        }
      ]
    }
  },
  "required": [
    "GroupId",
    "ArtifactId",
    "Version"
  ]
}