If I have an array of objects which are various applications that look for example like this
Application Name 1
    _Id: 1
    category: design
    version: xx.xy
Application Name 2
    _Id: 2
    category: spreadsheet
    version: xx.xx
etc
How do I describe the first field?
so
I will have an array of $ref: "#/definitions/Application" and the other fields are easy
Application:
    type: object
    properties:
        _Id:
            type: integer
        category: 
            type: string
etc
But how do I handle the names? ie Application name 1, 2 etc?