{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-apache-flink/refs/heads/main/json-schema/amazon-managed-apache-flink-maven-reference-schema.json", "title": "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" ] }