{ "$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" ] }