All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yahoo.elide.swagger.models.media.Relationship Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2016, Yahoo Inc.
 * Licensed under the Apache License, Version 2.0
 * See LICENSE file in project root for terms.
 */
package com.yahoo.elide.swagger.models.media;

import io.swagger.v3.oas.models.media.ObjectSchema;
import io.swagger.v3.oas.models.media.StringSchema;

/**
 * Represents a JSON-API resource identifier.
 */
public class Relationship extends ObjectSchema {

    /**
     * Constructs a singular resource identifier.
     * @param relationshipType the type of resource.
     */
    public Relationship(String relationshipType) {
        super();
        addProperty("type", new StringSchema().addEnumItem(relationshipType));
        addProperty("id", new StringSchema());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy